Skip to content

Instantly share code, notes, and snippets.

@mkdizajn
Created March 19, 2013 11:48
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
magento shell directory and file permissions
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