Skip to content
Snippets Groups Projects
Commit a80045ed authored by Charl Mert's avatar Charl Mert
Browse files

added check for code 2303 when domain does not exist closes issue #6

parent 26540044
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,10 @@ try {
continue;
}
}
} else if($coderes == '2303') {
# Domain does not exist
$status = "Domain $domain does not exist, setting state to cancelled!";
$statusres = 'cancelled';
} else {
echo "Domain check on $domain not successful: "._cozaepp_message($coderes)." (File a bug report here: http://devlabs.linuxassist.net/projects/whmcs-coza-epp/issues/new)";
continue;
......@@ -175,6 +179,15 @@ try {
));
echo "Domain $domain is EXPIRED (Registration: $createdate, Expiry: $nextduedate)\n";
} elseif ($statusres == "cancelled") {
mysql_query(sprintf($querytemplate,"Cancelled",
mysql_real_escape_string($createdate),
mysql_real_escape_string($nextduedate),
mysql_real_escape_string($nextduedate),
mysql_real_escape_string($domain)
));
echo "Domain $domain does not exist\n";
} else {
echo "Domain $domain has unknown status '$statusres' (File a bug report here: http://devlabs.linuxassist.net/projects/whmcs-coza-epp/issues/new)\n";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment