• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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