Hi:
This is my first post in this forum :D
I need access to http://calaveradigital.com/xmlrpc.php, I use php to convert the data with json_encode(array), this is my script:
//This have a user, password
require_once 'config.php';
//IXR_CLIENT
require_once '../wp-includes/class-IXR.php';
//this is the call
$client= new IXR_Client('http://localhost/domain.com/xmlrpc.php');
$args=array('taxonomies'=>'category');
if (!$client->query('wp.getTaxonomies',$args,$user,$pass)){
echo('Un error ha ocurrido durante la consulta:--->>>.' . $client->getErrorCode().":".$client->getErrorMessage());
}
$cats = $client->getResponse();
echo json_encode($cats);
This response nothing :'(
If you have a documentation or manual or something i will very happy.
thanks and have a nice day