Created
January 20, 2015 19:34
-
-
Save gpassarelli/24e6d8a122b7e79e6e58 to your computer and use it in GitHub Desktop.
Fix Drupal Files Permitions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /path_to_drupal_installation | |
chown -R www-data:www-data . | |
find . -type d -exec chmod u=rwx,g=rx,o=rx {} \; | |
find . -type f -exec chmod u=rw,g=r,o=r {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment