I am trying to set up Remoting Framework so I can add users to a website remotely.
Do we still need to change the ISPConfig install script so it doesn't disable xml? If so, is there a way to do it retroactively as I've already installed ISPConfig 2.2.27.
I also installed remoting framework, added a user, checked all the little boxes under the user, and uncommented the function to add a reseller in the test.php file, and I when I browse to mydomain.com/test.php, I get
but it doesn't actually create a reseller.
Also, can you still use Remoting Framework to add users? I had this working a long time ago and used the following:
Code:
// Add User
$params = array ( 'sid' => $session_id,
'module' => 'web',
'function' => 'user_add',
'params' => array ( web_title => 'mydomain.com', // web_title or web_id
user_username => $new_username_field,
user_name => $first_name,
user_email => $new_username_field,
user_passwort => $new_password_field,
user_speicher => 0,
user_mailquota => 1000,
user_admin => 0
));
$user_id = $soap_client->call('service',$params);
if($err = $soap_client->getError()) die("Error: ".$err);
I tried it and again got "script end..." without it adding a user.
Recent comments
1 day 4 hours ago
1 day 9 hours ago
1 day 14 hours ago
1 day 16 hours ago
2 days 6 hours ago
2 days 6 hours ago
2 days 11 hours ago
2 days 18 hours ago
2 days 18 hours ago
2 days 20 hours ago