mkdir permission denied

Created on 4 August 2017, over 7 years ago
Updated 7 June 2023, almost 2 years ago

Hello! I enabled the D8 module with drush in order to get the libraries downloaded. However, whenever I visit a page with the slideshow, it doesn't cycle, and I get several of the following error messages in my log:

Warning: mkdir(): Permission denied in Drupal\Component\PhpStorage\FileStorage->createDirectory() (line 157 of /home/public/web/core/lib/Drupal/Component/PhpStorage/FileStorage.php) #0 /home/public/web/core/includes/bootstrap.inc(566): _drupal_error_handler_real(2, 'mkdir(): Permis...', '/home/public/we...', 157, Array) #1 [internal function]: _drupal_error_handler(2, 'mkdir(): Permis...', '/home/public/we...', 157, Array) #2 /home/public/web/core/lib/Drupal/Component/PhpStorage/FileStorage.php(157): mkdir('sites/interdepw...')

Since the paths are truncated, I can't tell what directory it's trying to make, but I assume it's in sites/[site name]/files. That directory is group- and world-writable, as are all the subdirectories. What am I missing? Thank you in advance.

💬 Support request
Status

Closed: cannot reproduce

Version

4.5

Component

Code

Created by

🇺🇸United States BenStallings

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • First commit to issue fork.
  • Here's a proper comment with the requested backlinks:

    ---

    It sounds like the issue you're encountering is related to directory permissions or the way Drupal is handling file storage. Even though you’ve set the `sites/[site name]/files` directory to be group- and world-writable, it's possible that Drupal is trying to create additional directories within that path and doesn't have the necessary permissions.

    First, ensure that the parent directory of `sites/[site name]/files` and all subdirectories are owned by the web server user (e.g., `www-data` on many systems). You can check and set the correct ownership and permissions with the following commands:

    ```bash
    sudo chown -R www-data:www-data /path/to/drupal/sites/[site name]/files
    sudo chmod -R 775 /path/to/drupal/sites/[site name]/files
    ```

    If the issue persists, check the `file_storage` and `file_private_path` settings in Drupal’s configuration to ensure they are pointing to valid and writable directories.

    Also, check if SELinux might be restricting the necessary permissions. If SELinux is enabled, you may need to adjust its policies or temporarily set it to `Permissive` mode. You can follow this guide to disable SELinux on CentOS 7 to resolve potential issues related to SELinux enforcing restrictions.

    Lastly, clearing the cache and rebuilding the permissions might help. You can do that using Drush:

    ```bash
    drush cr
    ```

    Let me know if this resolves the issue!

Production build 0.71.5 2024