Yes, you may use the remoting framework also with the stable branch when you enable XML. http://www.howtoforge.com/forums/showpost.php?p=61231&postcount=6
I have removed this parameters on the compile files --disable-libxml --disable-xml ${WITH_ZLIB_DIR} --disable-xmlreader --disabl e-xmlwriter --disable-simplexml I have installed. But that not function Thanks
Have you also installed a new ioncube loader as described at the end of the thread? http://www.howtoforge.com/forums/showpost.php?p=60633&postcount=5
Hi, I have no erreur juste display "Script end ..." For started, i want just listed the reseller My test script and soap.lib.php in a folder remote (http://mysite/remote/test.php) This is my file test.php <?php /** * ISPConfig Soap Connector * Version 1.3 * (c) Projektfarm GmbH 2005 * * This script requires PHP with CURL extension * */ include("soap.lib.php"); // Insert here your 42go Server $server_url = "https://myipserver:81"; // creating object for SoapClient $soapclient = new soapclient($server_url.'/remote/index.php'); // Username and Password of the remoting user (not identical // with the user to log into the web interface!) $parameters = array('user' => 'myuser', 'pass' => 'mypassword'); // Login into 42go Server $session_id = $soapclient->call('login',$parameters); // Error Check if($err = $soapclient->getError()) die("Error: ".$err); // Get Reseller List $params = array ( 'sid' => $session_id, 'module' => 'reseller', 'function' => 'reseller_list', 'params' => ''); $reseller_list = $soapclient->call('service',$params); // Error Check if($err = $soapclient->getError()) die("Error: ".$err); print_r($reseller_list); // 42go Server logout $soapclient->call('logout',array('sid' => $session_id)); // Error Check if($err = $soapclient->getError()) die("Error: ".$err); echo "<br>Script end ..."; ?> Thanks
I have find the problem. I have again installed "Remoting Framework " and recreate the user. Thanks for your help