site_inaccessible The Jetpack server was unable to communicate with your site [H
-
NTRODUCTION
I am configuring WordPress in an Windows environment and when I tried to activate the Jetpack plugins, I get the following error:
site_inaccessible
The Jetpack server was unable to communicate with your site [HTTP 500]After troubleshooting I realise that xmlrpc.php file is not working properly. When I tried to access it via the browser it’s actually missing a function called apply_filters().
What it should say is:
XML-RPC server accepts POST requests only.
RESOLUTIONWhen I open XMLRPC.php file there is an include statement to this file ./wp-load.php.
In Windows we need to get rid of the “./” prefix. So change it to:
include(‘wp-load.php’);
And voila….Jetpack is now installing and activated successfully!
Hope this helps,
Tommy
- The topic ‘site_inaccessible The Jetpack server was unable to communicate with your site [H’ is closed to new replies.