Skip to content

Instantly share code, notes, and snippets.

@bhowe
Created November 14, 2017 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhowe/326c2dcf8cf6338f2966d9294a677b4b to your computer and use it in GitHub Desktop.
Save bhowe/326c2dcf8cf6338f2966d9294a677b4b to your computer and use it in GitHub Desktop.
File permissions fix for wp
From the root of your wp site
find . -type f | xargs chmod 444
find . -type d | xargs chmod 555
For normal permissions
From the root of your wp site
find . -type f | xargs chmod 644
find . -type d | xargs chmod 755
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment