<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Soft64 - web scripts and software blog</title>
	<link>http://blog.soft64download.com</link>
	<description>Soft64 - web scripts and software blog</description>
	<pubDate>Fri, 12 Mar 2010 16:34:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>

	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by admin0</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-27</link>
		<author>admin0</author>
		<pubDate>Tue, 17 Mar 2009 05:23:18 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-27</guid>
		<description>Hi bito09,

Since Eurid has changed the availability result i will have to rewrite the checkDomain function for .eu domains.

I will post during this day a fix for this.

Also I'm working on a new script which is more complex and includes a shopping cart, i will post a preview later this week.</description>
		<content:encoded><![CDATA[<p>Hi bito09,</p>
<p>Since Eurid has changed the availability result i will have to rewrite the checkDomain function for .eu domains.</p>
<p>I will post during this day a fix for this.</p>
<p>Also I&#8217;m working on a new script which is more complex and includes a shopping cart, i will post a preview later this week.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by bito09</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-26</link>
		<author>bito09</author>
		<pubDate>Sun, 01 Mar 2009 18:27:24 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-26</guid>
		<description>Please help, all .eu domains are taken, but some are really free;  I would like very much use this scipt. Thanks</description>
		<content:encoded><![CDATA[<p>Please help, all .eu domains are taken, but some are really free;  I would like very much use this scipt. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by David N</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-19</link>
		<author>David N</author>
		<pubDate>Thu, 22 May 2008 22:59:49 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-19</guid>
		<description>Works great, thanks for all of your help.</description>
		<content:encoded><![CDATA[<p>Works great, thanks for all of your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by admin0</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-18</link>
		<author>admin0</author>
		<pubDate>Thu, 22 May 2008 15:05:21 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-18</guid>
		<description>Hi David,

Please replace CheckDomain function with this one :

&lt;code&gt;
function checkDomain($domain,$server,$findText){
    $con = fsockopen($server, 43);
    if (!$con) return false;
        
    fputs($con, $domain."\r\n");
    $response = ' :';
    while(!feof($con)) {
        $response .= fgets($con,128); 
    }
    fclose($con);
	$tld = substr($domain, -3, 3);
	//echo $tld;
	if ($tld == ".au") {
		if (strpos($response, $findText)){
				return false;
			}
			else {
				return true; 
			}
	} else {
			if (strpos($response, $findText)){
				return true;
			}
			else {
				return false;   
			}
	}
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>Please replace CheckDomain function with this one :</p>
<p><code><br />
function checkDomain($domain,$server,$findText){<br />
    $con = fsockopen($server, 43);<br />
    if (!$con) return false;</p>
<p>    fputs($con, $domain."\r\n");<br />
    $response = ' :';<br />
    while(!feof($con)) {<br />
        $response .= fgets($con,128);<br />
    }<br />
    fclose($con);<br />
	$tld = substr($domain, -3, 3);<br />
	//echo $tld;<br />
	if ($tld == ".au") {<br />
		if (strpos($response, $findText)){<br />
				return false;<br />
			}<br />
			else {<br />
				return true;<br />
			}<br />
	} else {<br />
			if (strpos($response, $findText)){<br />
				return true;<br />
			}<br />
			else {<br />
				return false;<br />
			}<br />
	}<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by David N</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-17</link>
		<author>David N</author>
		<pubDate>Thu, 22 May 2008 14:28:18 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-17</guid>
		<description>Thanks,
Almost there, just reversing the results.
Now returning an 'Available' response for domains that are registered and a 'Taken' response for domains that are available.
Is there a fix, but I also want to lookup .com etc addresses.</description>
		<content:encoded><![CDATA[<p>Thanks,<br />
Almost there, just reversing the results.<br />
Now returning an &#8216;Available&#8217; response for domains that are registered and a &#8216;Taken&#8217; response for domains that are available.<br />
Is there a fix, but I also want to lookup .com etc addresses.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by admin0</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-16</link>
		<author>admin0</author>
		<pubDate>Thu, 22 May 2008 14:08:30 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-16</guid>
		<description>Hi David,

Please use :

$this-&gt;serverList[13]['tld']      = 'com.au';
$this-&gt;serverList[13]['server']   = 'whois-check.ausregistry.net.au';
$this-&gt;serverList[13]['response'] = 'Not';

This will solve the availability issue , but you will not have the whois information because this whois server is not returning it.</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>Please use :</p>
<p>$this->serverList[13][&#8217;tld&#8217;]      = &#8216;com.au&#8217;;<br />
$this->serverList[13][&#8217;server&#8217;]   = &#8216;whois-check.ausregistry.net.au&#8217;;<br />
$this->serverList[13][&#8217;response&#8217;] = &#8216;Not&#8217;;</p>
<p>This will solve the availability issue , but you will not have the whois information because this whois server is not returning it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by David N</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-15</link>
		<author>David N</author>
		<pubDate>Thu, 22 May 2008 14:03:24 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-15</guid>
		<description>Do you know of any way around this or is the script just not suitable for the whois-check...au lookup?</description>
		<content:encoded><![CDATA[<p>Do you know of any way around this or is the script just not suitable for the whois-check&#8230;au lookup?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by admin0</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-14</link>
		<author>admin0</author>
		<pubDate>Thu, 22 May 2008 13:51:14 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-14</guid>
		<description>You can use only the word "Not", in this way the script will not find the "Available" word in both cases.</description>
		<content:encoded><![CDATA[<p>You can use only the word &#8220;Not&#8221;, in this way the script will not find the &#8220;Available&#8221; word in both cases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by David N</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-13</link>
		<author>David N</author>
		<pubDate>Thu, 22 May 2008 13:39:48 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-13</guid>
		<description>Hi

Still getting the "TAKEN" response with "No Data Found".

$this-&#62;serverList[5]['tld'] = com.au';
$this-&#62;serverList[5]['server'] = 'whois-check.ausregistry.net.au';
$this-&#62;serverList[5]['response'] = 'No Data Found';

I've also tried it on another server in case the IP was being blocked for some reason. All other domains are fine, only having problems with com.au.

The whois returns a correct result for domains that are registered so that part is ok.

I do have success if I query the &lt;strong&gt;whois&lt;/strong&gt;.ausregistry.net.au database with 'No Data Found' it works fine but this service is subject to black listing  at 20 requests per day therefore the &lt;strong&gt;whois-check&lt;/strong&gt;.ausregistry.net.au is their recommended server.

The whois-check server responds with 'Available' or 'Not Available'. I read in a post related to an old whois script that the response may not being processed properly because "Not Available' also contains "Available" and may not be being processed correctly by the script?

Thanks for your help so far, any suggestions?

Regards
David</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Still getting the &#8220;TAKEN&#8221; response with &#8220;No Data Found&#8221;.</p>
<p>$this-&gt;serverList[5][&#8217;tld&#8217;] = com.au&#8217;;<br />
$this-&gt;serverList[5][&#8217;server&#8217;] = &#8216;whois-check.ausregistry.net.au&#8217;;<br />
$this-&gt;serverList[5][&#8217;response&#8217;] = &#8216;No Data Found&#8217;;</p>
<p>I&#8217;ve also tried it on another server in case the IP was being blocked for some reason. All other domains are fine, only having problems with com.au.</p>
<p>The whois returns a correct result for domains that are registered so that part is ok.</p>
<p>I do have success if I query the <strong>whois</strong>.ausregistry.net.au database with &#8216;No Data Found&#8217; it works fine but this service is subject to black listing  at 20 requests per day therefore the <strong>whois-check</strong>.ausregistry.net.au is their recommended server.</p>
<p>The whois-check server responds with &#8216;Available&#8217; or &#8216;Not Available&#8217;. I read in a post related to an old whois script that the response may not being processed properly because &#8220;Not Available&#8217; also contains &#8220;Available&#8221; and may not be being processed correctly by the script?</p>
<p>Thanks for your help so far, any suggestions?</p>
<p>Regards<br />
David</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AjaxWhois - fast domain availability search and whois by admin0</title>
		<link>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-12</link>
		<author>admin0</author>
		<pubDate>Thu, 22 May 2008 05:21:14 +0000</pubDate>
		<guid>http://blog.soft64download.com/php-scripts/ajaxwhois-fast-domain-availability-search-and-whois/#comment-12</guid>
		<description>Hi David,

Please use "No Data Found"  instead of "Not Available" for com.au. domains.</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>Please use &#8220;No Data Found&#8221;  instead of &#8220;Not Available&#8221; for com.au. domains.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
