<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for AskApache searching on txt</title>
	<atom:link href="http://www.askapache.com/search/txt/feed/?withcomments=1" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com</link>
	<description>Advanced Web Development</description>
	<lastBuildDate>Thu, 16 May 2013 00:37:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Advanced Windows Batch File Scripting by Thomas Elliott</title>
		<link>http://www.askapache.com/windows/advanced-batch-scripting.html#comment-14807</link>
		<dc:creator>Thomas Elliott</dc:creator>
		<pubDate>Thu, 16 May 2013 00:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=4577#comment-14807</guid>
		<description><![CDATA[some pretty slick stuff here. thanks for sharing.]]></description>
		<content:encoded><![CDATA[<p>some pretty slick stuff here. thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP fsockopen for FAST DNS lookups over UDP by pantonini</title>
		<link>http://www.askapache.com/php/php-fsockopen-dns-udp.html#comment-14730</link>
		<dc:creator>pantonini</dc:creator>
		<pubDate>Mon, 13 May 2013 02:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=8835#comment-14730</guid>
		<description><![CDATA[My previous fix was wrong.

After the test &quot; if empty response or bad response, return original ip &quot;, you have to add a test to verify that the last character of the response is a 0 :

   // Verify the last character of response is 0
$responseLength = hexdec(bin2hex(substr( $response, $requestsize + 11, 1 ))); 
if ( bin2hex(substr( $response, $requestsize + $responseLength + 11, 1 )) != &#039;00&#039; ) {
   return $ip;
}]]></description>
		<content:encoded><![CDATA[<p>My previous fix was wrong.</p>
<p>After the test " if empty response or bad response, return original ip ", you have to add a test to verify that the last character of the response is a 0 :</p>
<p>   // Verify the last character of response is 0<br />
$responseLength = hexdec(bin2hex(substr( $response, $requestsize + 11, 1 )));<br />
if ( bin2hex(substr( $response, $requestsize + $responseLength + 11, 1 )) != '00' ) {<br />
   return $ip;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP fsockopen for FAST DNS lookups over UDP by pantonini</title>
		<link>http://www.askapache.com/php/php-fsockopen-dns-udp.html#comment-14729</link>
		<dc:creator>pantonini</dc:creator>
		<pubDate>Sun, 12 May 2013 17:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=8835#comment-14729</guid>
		<description><![CDATA[I fixed the problem by adding a test for an STX character at position requestsize +12 :

   if ( empty( $response ) &#124;&#124; bin2hex( substr( $response, $requestsize + 2, 2 ) ) != &#039;000c&#039; &#124;&#124; bin2hex( substr( $response, $requestsize + 12, 1 ) ) != &#039;02&#039; ) {

      return $ip;

   }]]></description>
		<content:encoded><![CDATA[<p>I fixed the problem by adding a test for an STX character at position requestsize +12 :</p>
<p>   if ( empty( $response ) || bin2hex( substr( $response, $requestsize + 2, 2 ) ) != '000c' || bin2hex( substr( $response, $requestsize + 12, 1 ) ) != '02' ) {</p>
<p>      return $ip;</p>
<p>   }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP fsockopen for FAST DNS lookups over UDP by pantonini</title>
		<link>http://www.askapache.com/php/php-fsockopen-dns-udp.html#comment-14728</link>
		<dc:creator>pantonini</dc:creator>
		<pubDate>Sat, 11 May 2013 23:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=8835#comment-14728</guid>
		<description><![CDATA[Nice improvement but it bugs with this address : 217.195.30.102]]></description>
		<content:encoded><![CDATA[<p>Nice improvement but it bugs with this address : 217.195.30.102</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mod_Rewrite Variables Cheatsheet by Seer</title>
		<link>http://www.askapache.com/htaccess/mod_rewrite-variables-cheatsheet.html#comment-14725</link>
		<dc:creator>Seer</dc:creator>
		<pubDate>Wed, 08 May 2013 19:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=1280#comment-14725</guid>
		<description><![CDATA[We were using the Next[N] flag for underscore substitution and apache server crashed because of infinite looping. Is there a way to use this flag and also prevent the server from crashing by adding the LimitInternalRecursion directive ?]]></description>
		<content:encoded><![CDATA[<p>We were using the Next[N] flag for underscore substitution and apache server crashed because of infinite looping. Is there a way to use this flag and also prevent the server from crashing by adding the LimitInternalRecursion directive ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mod_Security .htaccess tricks by AskApache</title>
		<link>http://www.askapache.com/htaccess/modsecurity-htaccess-tricks.html#comment-14393</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Sun, 05 May 2013 03:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/htaccess/mod_security-htaccess-tricks.html#comment-14393</guid>
		<description><![CDATA[The only way to do that would be to setup your syslog-ng, rsyslog, logwatch, logrotate, etc.. to parse the mod_security log files, then using that 3rd-party software you would trigger the logs.  Could also do this with a simplistic bash shell script that runs via a cron job.]]></description>
		<content:encoded><![CDATA[<p>The only way to do that would be to setup your syslog-ng, rsyslog, logwatch, logrotate, etc.. to parse the mod_security log files, then using that 3rd-party software you would trigger the logs.  Could also do this with a simplistic bash shell script that runs via a cron job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updated robots.txt for WordPress by AskApache</title>
		<link>http://www.askapache.com/seo/updated-robotstxt-wordpress.html#comment-14723</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Sun, 05 May 2013 01:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/seo/updated-robotstxt-for-wordpress.html#comment-14723</guid>
		<description><![CDATA[Updated.. thanks for the heads-up.  There are better robots.txt articles on the site, just do a search.]]></description>
		<content:encoded><![CDATA[<p>Updated.. thanks for the heads-up.  There are better robots.txt articles on the site, just do a search.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updated robots.txt for WordPress by Seriously Spain</title>
		<link>http://www.askapache.com/seo/updated-robotstxt-wordpress.html#comment-14722</link>
		<dc:creator>Seriously Spain</dc:creator>
		<pubDate>Fri, 03 May 2013 05:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/seo/updated-robotstxt-for-wordpress.html#comment-14722</guid>
		<description><![CDATA[I wouldn&#039;t recommend using this. I tried and it deactivated my website. Deleted it immediately. No problem. The file hasn&#039;t been updated in forever so, no, it&#039;s unfortunately not useful any longer.]]></description>
		<content:encoded><![CDATA[<p>I wouldn't recommend using this. I tried and it deactivated my website. Deleted it immediately. No problem. The file hasn't been updated in forever so, no, it's unfortunately not useful any longer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mod_Security .htaccess tricks by Juanda Saputra</title>
		<link>http://www.askapache.com/htaccess/modsecurity-htaccess-tricks.html#comment-14721</link>
		<dc:creator>Juanda Saputra</dc:creator>
		<pubDate>Thu, 02 May 2013 02:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/htaccess/mod_security-htaccess-tricks.html#comment-14721</guid>
		<description><![CDATA[can i get help from you?.. i just looking for how to create rules in mod_security email alert automatically
when I get interference from outside, then mod_security will automatically send alerts to my email, 
how do I make it? 
Can you explain step by step? 
im newbie at this, i need help from you
maybe you&#039;ll email me to juandasaputra2727@yahoo.com
thank you alot!]]></description>
		<content:encoded><![CDATA[<p>can i get help from you?.. i just looking for how to create rules in mod_security email alert automatically<br />
when I get interference from outside, then mod_security will automatically send alerts to my email,<br />
how do I make it?<br />
Can you explain step by step?<br />
im newbie at this, i need help from you<br />
maybe you'll email me to juandasaputra2727@yahoo.com<br />
thank you alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Raw HTTP Header Debugger by Getting Your Ex To Want You Back</title>
		<link>http://www.askapache.com/online-tools/http-headers-tool/#comment-14275</link>
		<dc:creator>Getting Your Ex To Want You Back</dc:creator>
		<pubDate>Sun, 28 Apr 2013 15:47:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/online-tools/http-headers-tool/#comment-14275</guid>
		<description><![CDATA[&lt;strong&gt;Getting Your Ex To Want You Back...&lt;/strong&gt;

Raw HTTP Header Debugger...]]></description>
		<content:encoded><![CDATA[<p><strong>Getting Your Ex To Want You Back...</strong></p>
<p>Raw HTTP Header Debugger...</p>
]]></content:encoded>
	</item>
</channel>
</rss>
