Created
October 8, 2012 15:29
-
-
Save khalil-tabbal/3853120 to your computer and use it in GitHub Desktop.
PyroCMS Permission
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 | |
# this script let you automatically change permissions for a PyroCMS project | |
echo Start Setting PyroCMS Permissions | |
chmod -Rf 777 assets/ | |
echo changing permissions for assets/ | |
chmod -Rf 777 uploads/ | |
echo changing permissions for uploads/ | |
chmod -Rf 777 system/cms/cache/ | |
echo changing permissions for system/cms/cache/ | |
chmod -Rf 777 system/cms/logs/ | |
echo changing permissions for system/cms/logs | |
echo PyroCMS Permissions successfully set |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment