invalid response serendipity_event_xmlrpc v1.20
Posted: Sat Apr 01, 2006 2:22 pm
When using ecto to post to Serendipity using serendipity_event_xmlrpc v1.20 I got the following error message while logging on:
To solve it I commented out line 87 in serendipity_xmlrpc.inc.php v1.10:
This seems to have solved the problem for now...
This happens when ecto calls the method blogger.getUsersBlogsresponse contains struct value where array expected [response]
To solve it I commented out line 87 in serendipity_xmlrpc.inc.php v1.10:
Code: Select all
*snip*
86. $blogs = new XML_RPC_Value(array($blog1), 'array');
87. //$blogs = $blog1;
88. $r = new XML_RPC_Response($blogs);
89. return($r);
*snap*