Pere Vineta
Verified User
- Joined
- Feb 18, 2007
- Messages
- 5
Hi all,
I'll appreciate your help. What's wrong in my code below?
What I get is...
Array ( [error] => 1 [text] => Could not execute your request [details] => You do not own that domain )
Any suggestion?
Thanks!
I'll appreciate your help. What's wrong in my code below?
PHP:
include 'httpsocket.php';
$sock = new HTTPSocket;
$sock->connect('nn.nnn.nnn.nnn','2222');
$sock->set_login('aaaaaaaaa','bbbbbbbbbbbbbb');
$arr = array('action'=>'view','domain'=>'mydomain.com','name'=>'[email protected]');
$sock->query('/CMD_API_EMAIL_LIST',$arr);
$result = $sock->fetch_parsed_body();
print_r($result);
What I get is...
Array ( [error] => 1 [text] => Could not execute your request [details] => You do not own that domain )
Any suggestion?
Thanks!