ptdesigner Posted April 17, 2019 Share Posted April 17, 2019 (edited) Cannot add domain .co.ao Someone know's the configuration for this tld? As far as i can get but returns always domain unavailable [ { "extensions": ".ao,.co.ao", "uri": "socket://dns.ao", "available": "NOT FOUND" } ] Edited July 18, 2019 by WHMCS ChrisD Added WHOIS Server into Code Block 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted April 17, 2019 Share Posted April 17, 2019 I don't think that there is a publicly available port 43 whois server for .ao domains.... if that's the case, then you'll need to find a website form that can perform .ao whois searches that doesn't include captcha or any verification process - although, i'm not aware of any site that can do this for .ao domains. 0 Quote Link to comment Share on other sites More sharing options...
redit Posted April 17, 2019 Share Posted April 17, 2019 As @brian! has said looks like there is no public WHOIS database available: https://www.iana.org/domains/root/db/ao.html 0 Quote Link to comment Share on other sites More sharing options...
ptdesigner Posted April 17, 2019 Author Share Posted April 17, 2019 (edited) Ok, understood. Will ask here https://www.reg.it.ao/ as i can search here without captcha or any verification process. Edited April 17, 2019 by ptdesigner 0 Quote Link to comment Share on other sites More sharing options...
cenourinha Posted June 1, 2019 Share Posted June 1, 2019 You can try this: { "extensions": ".co.ao,.ao", "uri": "https://yourdomainname.xyz/checkdomainao.php?domain=", "available": "Dominio disponivel" }, Code for "checkdomainao.php": <?php // Verifica domínios .co.ao error_reporting(0); if($_GET["domain"] == "") { die(); } $post_data['query'] = $_GET["domain"]; $post_data['search'] = "Pesquisar a WHOIS"; foreach ( $post_data as $key => $value) { $post_items[] = $key . '=' . $value; } $post_string = implode ('&', $post_items); $curl_connection = curl_init('https://www.reg.it.ao/whois'); curl_setopt($curl_connection, CURLOPT_CONNECTTIMEOUT, 30); curl_setopt($curl_connection, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"); curl_setopt($curl_connection, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl_connection, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl_connection, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl_connection, CURLOPT_POSTFIELDS, $post_string); $result = curl_exec($curl_connection); //curl_close($curl_connection); //var_dump($result); if (strpos($result, 'não está registado') AND !strpos($result, 'Este domínio não pode ser registado.')) { echo "Dominio disponivel"; } else { echo "Dominio indisponivel"; } ?> This may stop working if they change their website. 0 Quote Link to comment Share on other sites More sharing options...
tmr Posted July 17, 2019 Share Posted July 17, 2019 See this thread, solution for unusual .tld 0 Quote Link to comment Share on other sites More sharing options...
Soundless_Beef Posted July 17, 2023 Share Posted July 17, 2023 could you guys perhaps give me the steps to implement the .CO.AO WHOIS into my WHMCS? alternatelvily, do it for me at a fee? 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.