Skip to content

Instantly share code, notes, and snippets.

@gpassarelli
Created January 20, 2015 19:34
Show Gist options
  • Save gpassarelli/24e6d8a122b7e79e6e58 to your computer and use it in GitHub Desktop.
Save gpassarelli/24e6d8a122b7e79e6e58 to your computer and use it in GitHub Desktop.
Fix Drupal Files Permitions
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