Bug reports – Several
-
Ok, here i go.
1) Im using phpxmlrpc to make the connection and one of the problems i have is in main.php function wpext_response()
Since i have to send as first parameter a “0” ot indicate what wordpress im using (somthing from WPMU i suspect), the $params are out of order.
$username = $params[0];
$password = $params[1];
$method = $params[2];
$args = $params[3];it should be:
$username = $params[1];
$password = $params[2];
$method = $params[3];
$args = $params[4];2) logError() its an amazing function, but its not attached to anything.
3) Inside main.php, in the function setup() when you get get_defined_functions() not all functions are stored. Just the first 994 functions are stored missing 992 functions from the total of 1986 user functiones in wordpress. Still not sure it this an error from the serialize function or the way its stored in the database.
I will try to fix a number of this bugs and upload it to my github
- The topic ‘Bug reports – Several’ is closed to new replies.