Last active
August 29, 2015 14:18
-
-
Save jrodriguez-ifuelinteractive/0da1aaac9fb918f9e3b4 to your computer and use it in GitHub Desktop.
Magento 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
| #!/bin/bash | |
| find . -type d -exec chmod 755 {} \; | |
| find . -type f -exec chmod 644 {} \; | |
| chmod 744 cron.sh | |
| chmod 744 mage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment