Last active
November 29, 2016 21:31
-
-
Save rteijeiro/c441c9c5cdbf9345e6f5e8a805ab9ec6 to your computer and use it in GitHub Desktop.
Set the correct files and folders permissions for Drupal
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
| find . -type d -exec chmod 750 '{}' \; | |
| find . -type f -exec chmod 640 '{}' \; | |
| find . -type d -name files -exec chmod 770 '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment