Created
December 12, 2013 21:15
-
-
Save anunay/7935588 to your computer and use it in GitHub Desktop.
Magento shell directory and file permissions
This file contains 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 775 {} \; | |
find . -type f -exec chmod 664 {} \; | |
chmod 775 -R var/ app/etc/ media/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment