• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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