Created
November 27, 2015 13:01
-
-
Save rafaelstz/cc788922ed15b7946acc to your computer and use it in GitHub Desktop.
Permissões Magento
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
# With Sudo | |
sudo find . -type d -exec chmod 755 {} \; | |
sudo find . -type f -exec chmod 644 {} \; | |
sudo chmod 777 -R app/etc/; | |
sudo chmod 777 -R var/; | |
sudo chmod 777 -R media/; | |
# Without Sudo | |
find . -type d -exec chmod 755 {} \; | |
find . -type f -exec chmod 644 {} \; | |
chmod 777 -R app/etc/; | |
chmod 777 -R var/; | |
chmod 777 -R media/; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment