Joomla Ajax Domain Whois Search

.comUSD $12.99 .netUSD $12.99 .orgUSD $12.99
7035 Members
683483 Domains Served
Welcome, Guest
Please Login or Register.    Lost Password?

.nl max. uses issue
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: .nl max. uses issue
#106
.nl max. uses issue 4 Years, 3 Months ago Karma: 0
Hi,

Great start for a soon to be great component.

I found a little bug:

With .nl dutch domainnames you have to deal with the maximum of domain checks per day.

You have to use the "Is" parameter.

Something I use for MrWhois:

Code:

function nlwhois($dom,$domt,&$regdet)
{
  if ($regdet=="*"«»)
  {
  $regdet="";
  $connection=@fsockopen("whois.domain-registry.nl",43,$errorno,$errordesc);
  if ($connection)
  {
    fputs($connection,"Is ".$dom.$domt."\r\n"«»);
    while(!feof($connection))
    {
      $regdet[]=fgets($connection,255);
    }
    fclose($connection);
    if (count($regdet)<1)
      return(5);
      $registered=1;
    for($index=0;$index<count($regdet);$index++)
    {
      $lne=strtolower($regdet[$index]);
      $pos=strpos($lne,"is free"«»);
      if (is_integer($pos))
        {
        $registered=0;
          break;
        }
    }
      return($registered);
  }
  else
    return(5);
  }

cor_lw
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Gender: Male
The administrator has disabled public write access.
 
#110
Re:.nl max. uses issue 4 Years, 3 Months ago Karma: 2
Thanks friend,

This feature I shall include in the next release that is almost complete and shall be released within a day, so check back soon.

Admin
admin
Moderator
Posts: 324
graph
User Offline Click here to see the profile of this user
Gender: Male softuff.org
The administrator has disabled public write access.
 
Go to topPage: 1