Cmd_account_user

kalipiev

New member
Joined
Mar 13, 2008
Messages
1
Hello,

I am using your API and trying with "CMD_ACCOUNT_USER" request. Unfortunately I get this error: "Package not found". Is it possible to help me solve this? Also, would you please tell me if there is guide where I can find all error messages?

Thanks.
 
you probably not specify a package in your command OR the package you want to use don't exist on the server...

$sock->query('/CMD_API_ACCOUNT_USER',
array(
'action' => 'create',
'add' => 'Submit',
'username' => $login,
'email' => $email,
'passwd' => $passwd,
'passwd2' => $passwd,
'domain' => $website,
'package' => $package,
'ip' => $ip,
'notify' => 'yes'
));
 
Back
Top