• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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