| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | #101 (permalink) |
| Senior Member Join Date: Aug 2005 Location: East Yorkshire, England
Posts: 2,689
![]() ![]() ![]() ![]() ![]() ![]() ![]() | To try and get more queries per TLD, you could implement my whois server class, which selects a random server for the requested TLD. |
| | |
| | #102 (permalink) | ||||
| NamePros Member Join Date: Sep 2005
Posts: 159
![]() |
Last edited by touchring; 01-22-2008 at 12:26 PM.
| ||||
| | |
| | THREAD STARTER #103 (permalink) | ||||
| Senior Member Join Date: Dec 2006 Location: England
Posts: 1,568
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
I will update it as promised when I find time ![]() ????: NamePros.com http://www.namepros.com/code/280961-php-bulk-domain-availability-check.html Mikor, thanks for that, I hadn't seen your post before. If I had know about that data before I would have used it - it's a new discovery to me and will no doubt come in handy! | ||||
| | |
| | #104 (permalink) | ||||
| NamePros Member Join Date: Sep 2005
Posts: 159
![]() |
????: NamePros.com http://www.namepros.com/showthread.php?t=280961 Thanks, i found out that even though it got stuck at the "Preparing results, please wait..." stage, the files have been created under \save folder. | ||||
| | |
| | #105 (permalink) |
| NamePros Member Join Date: Dec 2007
Posts: 31
![]() | wow. Exactly what I was looking for. Thanks!
__________________ DomainHolics.com - Currently Selling: AmericanBums.com Hottest Girls|Web Hosting Reviews|short term unsecured loan |
| | |
| | #107 (permalink) |
| NamePros Regular Join Date: Jul 2006
Posts: 339
![]() ![]() ![]() | this is one good freeware!. thanks for sharing!. +rep for you!
__________________ domain name forum |
| | |
| | #109 (permalink) |
| NamePros Member Join Date: Sep 2005
Posts: 159
![]() | It doesn't seem to work properly for dot org. I'm being blocked by whois.publicinterestregistry.net if i check more than a few domains. Is there a way around it? I mean, can i add some pause interval? Thanks again for the great script. |
| | |
| | #110 (permalink) |
| NamePros Regular Join Date: Jan 2008
Posts: 353
![]() ![]() ![]() ![]() ![]() | heavy whois lookups? Can I just make comment? - don't mean to hijack your thread - you should not be using whois lookups to bulk check domain availability - unless you really need all that WHOIS info. there are better , faster , more network friendly ways 1. for example run your domains through a simple dns check first - if there are dns servers showing , the domain must be registered (reverse not always true). for those with mac osx / linux : [pbg42:~/Documents] paul% host -t ns nonexistantdomains.com Host nonexistantdomains.com.lan not found: 3(NXDOMAIN) [pbg42:~/Documents] paul% host -t ns takendomains.com takendomains.com name server ns1.hozt.com. takendomains.com name server ns2.hozt.com. You can batch this easily with: foreach var (`cat mylistofdomains.txt`) ????: NamePros.com http://www.namepros.com/showthread.php?t=280961 host -t ns $var >> dnscheckresults.txt sleep 1 end the sleep is there to stop the script from going into meltdown there are no limits with DNS lookups AFAIK 2. Or for lists with up to 500 keywords at a time of course just use a common bulk availablility check like the one at www.cheapnames.com (under bulk reg) You can cut/paste and check thousands in a few minutes as cheapnames/godaddy/wwd (and other registrars) maintain their own lists of availability which give near instant results. dax
Last edited by dax44; 02-28-2008 at 04:37 PM.
|
| | |
| | #111 (permalink) |
| Senior Member Join Date: Sep 2005 Location: Herts, UK
Posts: 3,796
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Heres my current (modded) copy. It has extra domain options such as LL-L and more, and several new domain extensions. I'm also making a modification to allow you to exclude certain letters...will release that bit at a later date. PHP Code:
__________________ RickM Web Design Forums - Over 22,000 Web Designers & Programmers just like you! WSDReg - Affordable Domain Registration. Serving NP members since 2006!
Last edited by RickM; 03-19-2008 at 01:00 PM.
|
| | |
| | #113 (permalink) | ||||
| NamePros Regular Join Date: Jan 2008
Posts: 353
![]() ![]() ![]() ![]() ![]() |
$chars = array("a","b","c","d","e","f","g","h","i","j","k", "l","m","n","o","p","q","r","s","t","u","v","w","x ","y","z", "0","1","2","3","4","5","6","7","8","9"); ????: NamePros.com http://www.namepros.com/showthread.php?t=280961 to whatever letters you want , for now.
Last edited by ~ Cyberian ~; 08-17-2008 at 12:42 PM.
| ||||
| | |
| | #114 (permalink) |
| Senior Member Join Date: Jun 2003 Location: San Diego
Posts: 2,889
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | So if you remove the letters it will skip those in the list?
__________________ Dudster.com | Domain Names For Sale |
| | |
| | #115 (permalink) |
| Senior Member Join Date: Sep 2005 Location: Herts, UK
Posts: 3,796
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | You may have to adjust the "rand" part too, as it scans each part of the array based on its location (I.E 1 = "a", 2 = "b", 27 = "0" etc) The one I'm doing will have some sort of checkbox list that lets you de-select the ones to display....quite easy to make. I'll probably release it over the weekend.
__________________ RickM Web Design Forums - Over 22,000 Web Designers & Programmers just like you! WSDReg - Affordable Domain Registration. Serving NP members since 2006! |
| | |
| | #116 (permalink) |
| Danltn.com Join Date: May 2007 Location: Danltn.com / Nottingham, UK
Posts: 1,201
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | PHP Code: PHP Code:
__________________
Last edited by Daniel; 03-19-2008 at 02:44 PM.
|
| | |
| | #117 (permalink) |
| Senior Member Join Date: Jun 2003 Location: San Diego
Posts: 2,889
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | ok, I pretty much have no clue with either one of you are saying so I will grab the new one once you finish it, lol. Thanks.
__________________ Dudster.com | Domain Names For Sale |
| | |
| | #120 (permalink) |
| Senior Member Join Date: Feb 2005 Location: Ohio, USA
Posts: 1,533
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | This script used to check thousands of names without a problem. Lately I've been receiving the error below after only a few hundred. Have I been blocked and does anyone have another reliable whois server for .com lookups? Warning: fsockopen() [function.fsockopen]: unable to connect to whois.crsnic.net:43 in /home/index.php on line 79 Error Connecting To Server:whois.crsnic.net -Bill |
| | |
| | #121 (permalink) |
| New Member Join Date: Aug 2008
Posts: 3
![]() | This script isn't working for me. I download it, unzip it, upload it to my server, then change the permissions to 777, then go to my site to check it out and it gives me this error message: Warning: fsockopen(): unable to connect to whois.crsnic.net:43 in /home/content/R/i/c/joe483726/html/listcombo/download/index.php on line 79 Error Connecting To Server:whois.crsnic.net What am I doing wrong? I must be doing something wrong because it works perfectly fine on your demo site still, but not when I attempt to do it. |
| | |
| | #122 (permalink) |
| New Member Join Date: Aug 2008
Posts: 3
![]() | Well, since nobody could answer why the script wasn't working for me, I did some research and here's why the script won't work for me. It's because I am using Godaddy which doesn't allow outgoing connections to whois unless I get a dedicated server which I'm not about to do simply for this script to run. So, there it is. This sucks. |
| | |
| | #123 (permalink) |
| Senior Member Join Date: Jul 2005 Location: NJ
Posts: 1,219
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | dude, its all good. download some localhost php server (like WAMP or XAMPP) and run it there... you don't have to be worry about any stupid settings and even if you do get banned by the whois servers for mass queries, the only downside will be you won't be able to run the script from your own computer. but what are proxies for?
__________________ Hacksar.com - Your source for random computer tips and tricks! MySiteMemberships.com - Keep track of your site registration information! Like my post? Rep is appreciated! |
| | |
| | #124 (permalink) | ||||
| New Member Join Date: Aug 2008
Posts: 3
![]() | Would like to know more about Wamp or xampp
| ||||
| | |
| | #125 (permalink) | ||||
| Senior Member Join Date: Aug 2006 Location: Australia
Posts: 1,357
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
__________________ Dolphins OMFG! BeZazz [US/UK] Low Cost Friendly Hosting 33% Discount Coupon 33-NPS | ||||
| | |
![]() |
LinkBacks (?)
LinkBack to this Thread: http://www.namepros.com/code/280961-php-bulk-domain-availability-check.html | ||||
| Posted By | For | Type | Date | |
| Domain Checker Script - PC Troubleshooting | This thread | Refback | 11-19-2011 05:52 PM | |
| Bulk Domain Availability Checker - Dynamic Drive Forums | This thread | Refback | 11-16-2011 11:00 AM | |
| Domæne navn » Support » Forum | newz.dk | This thread | Refback | 11-01-2011 09:34 PM | |
| Domain Name Availability Search Script - Web Hosting Talk | This thread | Refback | 10-29-2011 10:17 PM | |
| Bulk Domain Availability Check Script | Domain Acquisition | This thread | Refback | 10-26-2011 02:40 PM | |
| Domain Checker Script - PC Troubleshooting | This thread | Refback | 10-07-2011 08:25 AM | |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |