Skip to content

Instantly share code, notes, and snippets.

@thoreg
Created August 16, 2018 19:44
Show Gist options
  • Save thoreg/4be57859230fd42c045112745b3c3e2e to your computer and use it in GitHub Desktop.
Save thoreg/4be57859230fd42c045112745b3c3e2e to your computer and use it in GitHub Desktop.
Fix wordpress file permissions
find . -type f -print -exec chmod 644 {} \;
find . -type d -print -exec chmod 755 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment