Solved WordPress Plugin cannot write to the Cache Directory Error

wordpress fix file permissions plugin, cache etc; In this tutorial, i am going to show you how to solve wordpress file permissions plugin, wp content cache is not writable , wp-content permission, etc.

Solved WordPress Plugin cannot write to the Cache Directory Error

There are two ways to modify the folder/directory permissions of your WordPress website:

  • Changing permissions with an FTP client
  • Changing permissions with Terminal or Command prompt

Changing permissions with an FTP client

Use the following steps to change your WordPress folder and sub-folder permissions to 755:

  • Open your filezilla and connect to your server
  • Visit your wordpress website directory
  • Change permission
    • /wp-content/cache 755
    • /wp-content/cache/all 755

Changing permissions with Terminal or Command prompt

Use the following steps to change your WordPress folder and sub-folder permissions to 755 with terminal:

  • Open your command prompt
  • Connect to your wordpress website server directory
  • Execute the this command
    • sudo chown -R www-data:www-data wp-content/

More Tutorials

Leave a Comment