Hello,
Please help me!
I have checkdomain.php file as the following:
<?php
$domain = isset($_GET['domain']) ? $_GET['domain']: '';
$kq = file_get_contents("https://tenten.vn/api/check/?domain=".$domain) ;
if ($kq=='1')
{
echo "false";
}
elseif($kq=='0')
{
echo file_get_contents( "https://tenten.vn/api/whois/?domain=".$domain);
}
With the previous version of WHMCS 7.0, I used it to check domain .VN. Domains's Vietnam haven't whois server for public which must check via other server of Registrar
But when update WHMCS 7.0, I can't check it. I've tried to do guide at http://docs.whmcs.com/WHOIS_Servers#Customising_WHOIS_Servers
Let's me know, how can i do?
Best Regards.