An Unexpected HTTP Error occurred during the API request

Use the following function to debug the HTTP API request, you will get to know the actual reason why the HTTP API request is failing. Paste the following code in your theme’s function.php. function dump_http_response( $response, $type, $transport, $args, $url ) { if ( is_admin() && $type == “response” ) { echo ‘<span style=”color: #f00;”>’; … Read more

Recommend a guide to catching plugin errors, please?

A white screen of death is typically a fatal PHP error, most of the time due to a syntax error. This often sends no errors to the browser. Some things you can do: Turn on PHP error_log in your php.ini file and set the error_reporting levels. http://php.net/manual/en/errorfunc.configuration.php Error info: http://www.php.net/manual/en/errorfunc.constants.php Alternatively or in combination you … Read more