Skip to content

Instantly share code, notes, and snippets.

@rteijeiro
Last active November 29, 2016 21:31
Show Gist options
  • Select an option

  • Save rteijeiro/c441c9c5cdbf9345e6f5e8a805ab9ec6 to your computer and use it in GitHub Desktop.

Select an option

Save rteijeiro/c441c9c5cdbf9345e6f5e8a805ab9ec6 to your computer and use it in GitHub Desktop.
Set the correct files and folders permissions for Drupal
find . -type d -exec chmod 750 '{}' \;
find . -type f -exec chmod 640 '{}' \;
find . -type d -name files -exec chmod 770 '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment