WordPress for iOS / Android It's O application Very useful for bloggers who want to write personal sites on the web when they are not around a laptop or PC.
The WordPress application can be used for both blogs Hostate on WordPress.com, as well as for blogs self-hosted which use as WordPress platform.
content
Simple, intuitive and very stable application, but sometimes they appear Connecting problems When adding a SELF-HOSTED web site in the application. In our case, we could not add to the WordPress application for iOS, a Self-Hosted web site.
Sorry, we can’t log you in. Unable to read the WordPress site at that URL.

How to fix :Sorry, we can’t log you in. Unable to read the WordPress site at that URL
Before we start to we uninstalled or SA We disable pluginLet's see if there is no conflict with the application, we must understand how it works and what are the vital elements for the proper functioning.
When we want to We connect an application to a website created with WordPress, we must consider DRAGE DATA TRANSPORT PROTOCOL, from WordPress to the rective application (in our case, the WordPress application for iOS). The transport protocol is done through XML-RPC.
When we meet an error of the form of the one presented by us, we must consider two essential things:
1. Let's make sure that on the server hosting the website, the file xmlrpc.php are Permissions (chmod) reading for “user“, “group“, “world” and belongs to the group (Chown) of law. We can check this by accessing in the browser domain.tld/xmlrpc.php. “XML-RPC server accepts POST requests only.”, is the message to be displayed in the browser.
2. In our case, the problem was a little more complicated. I could not add a website in the WordPress iOS application, because there is no XML module for PHP on the server.
Like a script PHP to be able to run a line XML, it is necessary that on the server be Installed the XML module for PHP. Otherwise the WordPress application will give the error “Sorry, we can’t log you in” Every time we try to add a website.
Here's what the error in the server looks like, every time I try to add a Self-Hosted website to the WordPress application on an iPad:
2016/11/08 07:59:17 [error] 13701#0: *1666433 FastCGI sent in stderr: “PHP message: PHP Fatal error: Call to undefined function xml_parser_create() in /srv/www/website/public/wp-includes/class-IXR.php on line 264” while reading response header from upstream, client: my_ip, server: ihowto.tips, request: “POST /xmlrpc.php HTTP/1.1”, upstream: “fastcgi://127.0.0.1:9001”, host: “ihowto.tips”
How to view PHP modules installed on a web server (Centos, Ubuntu, etc.)
We execute the command line in the terminal: PHP -M
If in the list of modules do not appear: xml,xmlreader andxmlwriter, then be sure that this is the cause from which you cannot add a site to the application WordPress for iOS or Android.
How we install the XML module for PHP on a web server
Centos command line:
yum install php-xml
After installing the PHP-XML module, restart the services: PHP / PHP-FPM, httpd / nginx.
Add the website again to the application, and everything will go smoothly.
Ps. The installation of the PHP-XML mode can only be done by the server administrator. If you are not the server administrator, contact and ask the web hosting supplier to install or activate this module.