I did script which i am going to sell but before i am going to encode into Ioncube how do i make a callback tracker to tell my website who is using my script, What domain ip it is? if i found out that is not the exact license i can banned the script or ip?
i have this in mind but how can i make the script disabled when it track from my database its a pirated version?
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://mywebsite.com/validationwebsite/");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, true);
$data = array(
'dateofexpire' => '',
'ip' => $ipaddress,
'domainname' => $domainname,
'email' => $email,
'serialno' => $serialno
);
Anyone could help it would be appreciated =)
Please advise