• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question i m try to create user account using shell_exec but its no working

tariqthaqeeq

New Pleskian
hi team Plesk I m create a web application to create one-click user account create but the problem is that code is not running on Plesk and i m not seeing any error also

$a = shell_exec('curl -k -u username:password-X POST -d @pleskaddclient.json "https://172.105.70.47:8443/api/v2/clients" ');


if(file_exists('pleskaddclient.json'))
{
$current_data = file_get_contents('pleskaddclient.json');
$array_data = json_decode($current_data, true);
$extra = array(
'name' => strtolower($arrUsrfirst),
'login' => strtolower($arrUsrfirst).strtolower($arrUsrsurname),
'password' => "password",
'email' => $arrEmail,
'type' => "customer",
'company' => "TechVento",
);
$array_data = $extra;
$final_data = json_encode($array_data);
if(file_put_contents('pleskaddclient.json', $final_data))
{

$a = shell_exec('curl -k -u username:password -X POST -d @pleskaddclient.json "https://172.105.70.47:8443/api/v2/clients" ');
}
}
else
{
$error = 'JSON File not exits';
}


please check and let me know why it not working

i m using linod vps
 
Last edited:
hi team Plesk I m create a web application to create one-click user account create but the problem is that code is not running on Plesk and i m not seeing any error also

$a = shell_exec('curl -k -u root:WDAhq6kp2@@ -X POST -d @pleskaddclient.json "https://172.105.70.47:8443/api/v2/clients" ');


if(file_exists('pleskaddclient.json'))
{
$current_data = file_get_contents('pleskaddclient.json');
$array_data = json_decode($current_data, true);
$extra = array(
'name' => strtolower($arrUsrfirst),
'login' => strtolower($arrUsrfirst).strtolower($arrUsrsurname),
'password' => "WDAhq6kp2@@",
'email' => $arrEmail,
'type' => "customer",
'company' => "TechVento",
);
$array_data = $extra;
$final_data = json_encode($array_data);
if(file_put_contents('pleskaddclient.json', $final_data))
{

$a = shell_exec('curl -k -u root:WDAhq6kp2@@ -X POST -d @pleskaddclient.json "https://172.105.70.47:8443/api/v2/clients" ');
}
}
else
{
$error = 'JSON File not exits';
}


please check and let me know why it not working

i m using linod vps

PLEASE DELETE YOUR USER/PASSWORD!!!!
 
Back
Top