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

skipping domains that do not exist

parent a80045ed
No related branches found
No related tags found
No related merge requests found
......@@ -111,6 +111,12 @@ try {
# Domain does not exist
$status = "Domain $domain does not exist, setting state to cancelled!";
$statusres = 'cancelled';
# Checking that Domain sync option is enabled
if (!empty($row) && !$row['value'] == 'on') {
continue;
}
} 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;
......@@ -179,15 +185,6 @@ 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