Hello @vmarko
I have executed the following commands on my server:
sudo find app -type d -exec chmod 755 {} \;
sudo find app -type f -exec chmod 644 {} \;
I still get the same error on my plugins page.
Can you confirm that above commands are correct?
Or, how would you have done it?
I have found this:
To change all the directories to 755 (drwxr-xr-x):
find /opt/lampp/htdocs -type d -exec chmod 755 {} \;
To change all the files to 644 (-rw-r–r–):
find /opt/lampp/htdocs -type f -exec chmod 644 {} \;
Could this cause problems with other plugins/things?
Would it work too if I only set the permissions for the W3 folder?
Hello @vmarko
Do I have to set the permissions for ALL folders and files or only for the w3-cache folder in the plugins directory?