Yes that's what I want.
Thank you, Please send me some quick example as my all the online systems based on this script and now clients are mad on this.
Can't I change the version of API. It's not my fault, it's automated update.
If I cannot change the version, can you give me code samples. this documentation does not have a sample. It seems complex.
Line 31 is
if (!$this->check_params()) {
throw new ApiRequestException("Error: Incorrect request parameters submitted");
}
I commented the line as
//throw new ApiRequestException("Error: Incorrect request parameters submitted");
Now
This error comes.
mod_fcgid: stderr: PHP...
I had working script written in PHP to create email account in plesk. I got that from
pmill/php-plesk
Script is below.
<?php
require_once("config.php");
//echo $_GET['r']."<br>";
$emilid=$_GET['email'];
$password=$_GET['password'];
$params = array(
'email'=>$emilid...