Template Club Package Silver Pacakage Gold Pacakage Developer Pacakage Accepted Payments Member Login
Welcome, Guest
Please Login or Register.    Lost Password?
Keyword is not Case Sensitive bug - SOLVED (1 viewing) (1) Guest
Go to bottomPost New TopicPost Reply Favoured: 0
TOPIC: Keyword is not Case Sensitive bug - SOLVED
#32733
Keyword is not Case Sensitive bug - SOLVED 1 Year, 2 Months ago  
Hi all, I needed this script because it plugs into nbill. But I had a terrible time with .ca domains, turns out that the keyword returned from CIRA was AVAIL and in the text that it returned was the word available. Therefore any domain it looked up, it would parse the text and find avail and think the domain was available.

The solution is in engine.php the code comes looking like this:

// determine if available
if (eregi(.....

Change it to:

// determine if available
if (ereg(

Ah there, now it parses case sensitive, finally, took a couple hours to figure it out, hope this helps someone.
Enter code here   
Please note, although no boardcode and smiley buttons are shown, they are still useable
Travis (Visitor)

Logged Logged  
 
Reply Quote  
#32734
Re:Keyword is not Case Sensitive bug - SOLVED 1 Year, 2 Months ago Karma: 142  
Travis wrote:
Hi all, I needed this script because it plugs into nbill. But I had a terrible time with .ca domains, turns out that the keyword returned from CIRA was AVAIL and in the text that it returned was the word available. Therefore any domain it looked up, it would parse the text and find avail and think the domain was available.

The solution is in engine.php the code comes looking like this:

// determine if available
if (eregi(.....

Change it to:

// determine if available
if (ereg(

Ah there, now it parses case sensitive, finally, took a couple hours to figure it out, hope this helps someone.


Great Info,
thanks
Enter code here   
Please note, although no boardcode and smiley buttons are shown, they are still useable
ronysyz (User)
Terus Berjuang.....
Support Team
Posts: 7690
graph
User Offline Click here to see the profile of this user
Gender: Male GlobalTor.com Location: Indonesia
Logged Logged  
 
 
Reply Quote  
Go to topPost New TopicPost Reply