PHP 5.2.2 XML-RPC Bug

XML-RPC (Remote Procedure Call) has a bug in a popular version of PHP 5.2.2. You will probably see a call to an undefined function call to xmlrpc_encode_request()

Here is a link to the bug at php.net

Wordpress uses xmlrpc and there is a hack to correct the bug. The fix is to add the following line at the top of thte xmlrpc.php file.

$HTTP_RAW_POST_DATA = file_get_contents("php://input");

I’m looking for a fix to the revver video api. If you find something let me know.
I’ll update this post when I find the fix too.

Update:  Rever corrected the issue.  You can see it here

Leave a Reply

You must be logged in to post a comment.