Created
December 4, 2015 17:03
-
-
Save phsacramento/efb7b0044ca2a4375471 to your computer and use it in GitHub Desktop.
Magento folder Permissions
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
# set 777 to all folders | |
``` | |
find . -type d -exec chmod 777 {} \; | |
``` | |
# reset permissions | |
``` | |
find . -type d -exec chmod 777 {} \; | |
find . -type d -exec chmod 755 {} \; | |
chmod 777 var var/.htaccess app/etc | |
find var -type d -exec chmod 777 {} \; | |
chmod -R 777 media | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment