![]() |
![]() |
![]() |
||||
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() ![]() |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
![]() |
#1 |
Confirmed User
Industry Role:
Join Date: Jul 2001
Location: Utopia
Posts: 6,478
|
Expired domains, own script or 3rd party service?
I'd like to use my own (bought) script and edit it to send results (cron) and be able to grab some domains we need.
I'm not expecting to get milliondollar domains this way, but just get a notice once names we might be able to use expire/get deleted. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#2 |
Confirmed Fetishist
Industry Role:
Join Date: Mar 2005
Location: Fetishland
Posts: 11,521
|
domaintools, snapnames, namejet...
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#3 |
Confirmed User
Industry Role:
Join Date: Jul 2001
Location: Utopia
Posts: 6,478
|
Yeah i know most of them. I'm just in between creating one of those myself to be able to get extra features *I* want;-) or keep using those (which i will forget to do after a day or 6;-)).
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#4 |
58008 53773
Industry Role:
Join Date: Jul 2005
Location: Australia
Posts: 9,864
|
am interested in this too - where are the names listed if anywhere?
__________________
TripleXPrint on Megan Fox "I would STILL suck her pussy until her face caved in. And then blow her up and do it again!" |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#5 |
Too lazy to set a custom title
Industry Role:
Join Date: May 2003
Location: icq: 71462500 Skype: Jupzchris
Posts: 27,880
|
are you guys wanting one that just alerts you if it is ready to be regged or one that auto regs?
here is one that you can set to cron on your server daily and it will email you if it is ready Code:
<?php $domain_to_check = "DomainHere.com"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'http://whois.domaintools.com/'.$domain_to_check); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $buffer = curl_exec($ch); if(strstr($buffer, "This domain name is not registered")) { echo "The domain is available"; mail("your email here", "Your domain: ".$domain_to_check." is available" "); } else { } ?>
__________________
[email protected] |
![]() |
![]() ![]() ![]() ![]() ![]() |