Screenshot WOW SAVE 20% on the All Access Bundle. Use "OAUTH20OFF" at checkout.
GET DEAL
3rd Party Integration

Fixing WordPress Permission Issues

Published: June 29, 2021 | Updated: June 29th, 2021
  1. Home
  2. Docs
  3. General
  4. Fixing WordPress Permission Issues

Sometimes WordPress runs into permission issues. Almost all the time, this is an issue that can only be handled at the server level. You can either contact your hosting provider to fix the issues or you can do it yourself. We recommend, if you do it yourself, you use SSH to do so. You will need SSH access to your server.

Navigate to your WordPress root and run the following commands. This will restore WordPress Folder and File permissions back to normal.

find . -type d -exec chmod 775 {} \;
find . -type f -exec chmod 664 {} \;
Icon