Solution for XML-RPC method missing in WordPress app

Today I tried to log in to my WordPress site using the WordPress app but can’t able to log in. It keeps showing the XML-RPC method are missing on the server.

It looks there have some XML components are missing on server especially on Linux OS based. Then after I did research on the internet and found the simple solution to resolve the issue.

The root cause is the extensions php-xml and php-xmlrpc are not installed. So you need to execute the following command according to Linux OS versions.

1. for (CentOS, RHEL)

$ apt-get install php-xml php-xmlrpc

2. for (Ubuntu)

$ apt-get install php-xml php-xmlrpc 

That’s it. I hope this will help. πŸ™‚
Photo: Internet

Leave a Reply

Your email address will not be published. Required fields are marked *