I have a WordPress installation and I use a plugin called Backup WordPress, which – backs up WordPress!
So – the other day I received an error that said:
WARNING: File “path-to/xmlrpc.php” is not readable
any ideas what this is and how to fix it? I guess I can go into the relevant directory and FTP and change the file permissions – but is that wise for this file?
thanks
xmlrpc.php needs to be readable by the web server processes. Ensure that it has appropriate file ownership and permissions. For a debian-based server, a command like
sudo chown www-data:www-data xmlrpc && sudo chmod 644 xmlrpc.php
will probably resolve this.Simple 644 file permissions fixed this.
Not sure why the file permissions was re-set to 000