Skip to content

Instantly share code, notes, and snippets.

@khalil-tabbal
Created October 8, 2012 15:29
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 khalil-tabbal/3853120 to your computer and use it in GitHub Desktop.
Save khalil-tabbal/3853120 to your computer and use it in GitHub Desktop.
PyroCMS Permission
#!/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