Skip to content

Instantly share code, notes, and snippets.

@mkdizajn
Created March 19, 2013 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mkdizajn/5195468 to your computer and use it in GitHub Desktop.
Save mkdizajn/5195468 to your computer and use it in GitHub Desktop.
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