Skip to content

Instantly share code, notes, and snippets.

@anunay
Created December 12, 2013 21:15
Show Gist options
  • Save anunay/7935588 to your computer and use it in GitHub Desktop.
Save anunay/7935588 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