forumnz Posted February 3, 2011 Share Posted February 3, 2011 Hello all, it's been a while! Good to be back. I am having trouble with a script I'm trying to modify to seach for domains with specific extensions. Now, I have never done any domain checking before and I'm a little bewildered. The script uses an array and checks the input against each extension using the array. Each line looks similar to: '.com' => array('whois.crsnic.net','No match for'), What does the whois.crsnic.net mean? I assume it's a register/database of domains? Link to comment https://forums.phpfreaks.com/topic/226602-checking-for-available-domains/ Share on other sites More sharing options...
BlueSkyIS Posted February 3, 2011 Share Posted February 3, 2011 it's a whois server. if you go to command line (mac/unix, at least) and do whois domain.com, the system contacts a whois server to retrieve and display registration information for that domain. Link to comment https://forums.phpfreaks.com/topic/226602-checking-for-available-domains/#findComment-1169564 Share on other sites More sharing options...
forumnz Posted February 3, 2011 Author Share Posted February 3, 2011 Thanks for that. I'm trying to search .nz domain names and have found that there is whois server located at whois.domainz.net.nz so I have done: '.co.nz' => array('whois.domainz.net.nz','No match for'), Problem is, it says that every domain I search is taken. I know for a fact that some that I searched are available. What could be causing this? Link to comment https://forums.phpfreaks.com/topic/226602-checking-for-available-domains/#findComment-1169573 Share on other sites More sharing options...
BlueSkyIS Posted February 3, 2011 Share Posted February 3, 2011 it says that every domain I search is taken what says every domain is taken? what code are you using? fyi: most whois servers have a limit on requests and they will block or ignore you if you go over that limit. Link to comment https://forums.phpfreaks.com/topic/226602-checking-for-available-domains/#findComment-1169575 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.