WARNING: File “/xmlrpc.php” is not readable – any ideas what to do here?

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:

Read More

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

Related posts

Leave a Reply

2 comments

  1. 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.