|
The S5 Domain Chcecker module is a free module that you can add to any Joomla site. This module provides your customers a quick and easy way to see if a domain is available to be purchased or if someone else already owns the domain.
Set as favorite
Bookmark
Email this
Hits: 46302 Comments (17)says:
This Domain Checker is a joke: I entered www.shape5 and the result:" www.shape5.com Available". I am searching for another domain checker.
says:
Solution for .at domains
I double the functions and change one of the domain I don't need. function checkDomainFinger($domain,$server,$findText){ // Open a socket connection to the whois server $con = fsockopen($server, 79); if (!$con) return false; // Send the requested doman name fputs($con, $domain." "); // Read and store the server response $response = ' :'; while(!feof($con)) { $response .= fgets($con,12 ; } // Close the connection fclose($con); // Check the response stream whether the domain is available // echo $response; if (strpos($response, $findText)){ return true; } else { return false; } } function showDomainResultFinger($domain,$server,$findText){ if (checkDomainFinger($domain,$server,$findText)){ echo "$domain Verfügbar"; } else echo "$domain Vergeben"; } if ($s5_domain15 == "yes") { if (($d_at != '') || ($d_all != '') ) showDomainResultFinger($domainbase.".at",'finger.nic.at','NO domain data found'); } Write commentYou must be logged in to post a comment. Please register if you do not have an account yet.
|