Skip to content

Instantly share code, notes, and snippets.

@gelanivishal
Created December 26, 2016 16:21
Show Gist options
  • Save gelanivishal/eddf9a06daf218582fddac21d1ebbaa4 to your computer and use it in GitHub Desktop.
Save gelanivishal/eddf9a06daf218582fddac21d1ebbaa4 to your computer and use it in GitHub Desktop.
find . -type f -exec chmod 644 {} \; // 644 permission for files
find . -type d -exec chmod 755 {} \; // 755 permission for directory
find ./var -type d -exec chmod 777 {} \; // 777 permission for var folder
find ./pub/media -type d -exec chmod 777 {} \;
find ./pub/static -type d -exec chmod 777 {} \;
chmod 777 ./app/etc
chmod 644 ./app/etc/*.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment