View Single Post
Join Date: Oct 2006
Posts: 198
Reputation: MaxMumford is an unknown quantity at this point 
Solved Threads: 1
MaxMumford's Avatar
MaxMumford MaxMumford is offline Offline
Junior Poster

Re: whois script not working in IE

 
0
  #5
Jul 15th, 2008
Ah thanks for the new script. Im testing it all out but I do have one problem which is that I cant integrate a .co.uk domain suffix into it.

this is an example of the code used to check the .com suffix:

  1. $this->serverList[0]['top'] = 'com';
  2. $this->serverList[0]['server'] = 'whois.crsnic.net';
  3. $this->serverList[0]['response'] = 'No match for';
  4. $this->serverList[0]['check'] = true;

and this is what i wrote (at the end of the suffix list) to try and get .co.uk working

  1. $this->serverList[9]['top'] = 'co.uk';
  2. $this->serverList[9]['server'] = 'whois.nic.uk';
  3. $this->serverList[9]['response'] = 'No match for';
  4. $this->serverList[9]['check'] = false;

iv tried quite a few different servers and none of them work however i think the problem its the .uk section of it (presumerably the ".") because when I put .uk it works normally but obviously dosnt find a proper result. do you have any idea how to fix it? I think it might be more complicated than just adding my .co.uk section but i cant find any support from any of the websites holding the script or any other forums.

Thanks
(youv been helping me with web designing for AAAAGES now!! its MUCH appreciated )

Max

Ill solve somebody's thread someday! xD
Reply With Quote