• Hi everybody, this is so strange:

    Jetpack worked perfectly til 1 hour ago, for testing purposes I just deactivated it and then when I try to connect Jetpack with my WordPress account it says
    Your Jetpack has a glitch. Something went wrong that’s never supposed to happen. Guess you’re just lucky: xml_rpc-32700
    Try connecting again. Error Details: The Jetpack server could not communicate with your site’s XML-RPC URL. Please check to make sure http://92.223.204.80/xmlrpc.php is working properly. It should show ‘XML‑RPC server accepts POST requests only.’ on a line by itself when viewed in a browser and should not have any blank links or extra output anywhere.

    I checked and it seems that I don’t have a single blank line in .php files.

    help me pls

    https://wordpress.org/plugins/jetpack/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic 🚀

    Please check to make sure http://92.223.204.80/xmlrpc.php is working properly. It should show ‘XML‑RPC server accepts POST requests only.’ on a line by itself when viewed in a browser and should not have any blank links or extra output anywhere.

    Although there is no blank line when looking at the file in the browser, doing a test query to that file returns some empty spaces before the response, thus chunking the last few characters of the response:

    curl -A "Jetpack by WordPress.com" -is -H 'Content-Type: text/xml' --data '<?xml version="1.0"?><methodCall><methodName>demo.sayHello</methodName><params></params></methodCall>' 'http://92.223.204.80/xmlrpc.php' && echo
    HTTP/1.1 200 OK
    Content-Length: 181
    Content-Type: text/xml; charset=UTF-8
    Server: Microsoft-IIS/7.5
    X-Powered-By: PHP/5.4.16
    X-Powered-By: ASP.NET
    Date: Wed, 18 Nov 2015 15:44:35 GMT
    Connection: close
    
    <?xml version="1.0" encoding="UTF-8"?>
    <methodResponse>
      <params>
        <param>
          <value>
          <string>Hello!</string>
          </value>
        </param>
      </params>
    </methodResp

    Could you check for any spaces you may have added to your site’s wp-config.php, or to your theme’s template files, before the opening <?php tag?

    Thread Starter Versari

    (@versari)

    I already checked for blank spaces in every .php file in my theme’s directory and in wp-config.php. Plus I didn’t modify nothing. I just deactivated-activated Jetpack and now is fucked up.

    Thread Starter Versari

    (@versari)

    This problem is theme’s related, I tried to upload a new theme and Jetpack connection works. This is strange btw because I didn’t touch a single .php theme file….

    Thread Starter Versari

    (@versari)

    I temporary fixed the problem by: Changing theme -> Connecting Jetpack -> Changing theme again

    But now my question is: Is Jetpack working?

    Waiting for some help

    Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic 🚀

    This problem is theme’s related, I tried to upload a new theme and Jetpack connection works. This is strange btw because I didn’t touch a single .php theme file….

    Since the problem is related to your theme, try checking every file for spaces before an opening PHP tag. It might be worth starting with the functions.php, as it can sometimes include code pasted from other sources.

    Thread Starter Versari

    (@versari)

    I checked EVERY SINGLE file. For the 3rd time.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Jetpack xml_rpc-32700 ERROR’ is closed to new replies.