<?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 on: Asynchronous Processing With PHP</title>
	<atom:link href="http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/</link>
	<description>Robert Accettura&#039;s Personal Blog on Web Development and Tech</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:07:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ölbaum</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-1303658</link>
		<dc:creator>Ölbaum</dc:creator>
		<pubDate>Tue, 07 Jun 2011 10:00:22 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-1303658</guid>
		<description>That Wordpress moron replaced all apostrophes with curly quotes in your code!!!</description>
		<content:encoded><![CDATA[<p>That WordPress moron replaced all apostrophes with curly quotes in your code!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Background Process in PHP &#124; Ritvick Paliwal&#039;s Official Website</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-1206199</link>
		<dc:creator>Background Process in PHP &#124; Ritvick Paliwal&#039;s Official Website</dc:creator>
		<pubDate>Fri, 18 Mar 2011 05:43:02 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-1206199</guid>
		<description>[...] a background process in an OS-independent fashion you’d can use the function below (snatched from this post) [...]</description>
		<content:encoded><![CDATA[<p>[...] a background process in an OS-independent fashion you’d can use the function below (snatched from this post) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: to</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-1182360</link>
		<dc:creator>to</dc:creator>
		<pubDate>Sat, 26 Feb 2011 12:38:35 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-1182360</guid>
		<description>thanx. Save my day</description>
		<content:encoded><![CDATA[<p>thanx. Save my day</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hidden</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-1086721</link>
		<dc:creator>hidden</dc:creator>
		<pubDate>Tue, 07 Dec 2010 10:30:37 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-1086721</guid>
		<description>I don&#039;t see any asynchronous  code.
fgets ist waiting for input line.
All you do is flushing php buffer (ob_flush(); flush()). There is no sense doing this in a pipe.
Do something else instead of a traceroute(6) without response line by line and your code will wait unlimited.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t see any asynchronous  code.<br />
fgets ist waiting for input line.<br />
All you do is flushing php buffer (ob_flush(); flush()). There is no sense doing this in a pipe.<br />
Do something else instead of a traceroute(6) without response line by line and your code will wait unlimited.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-951349</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Sat, 19 Jun 2010 10:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-951349</guid>
		<description>I think the thing that was confusing ppl is the use of quotations in the following line:

pclose(popen(‘start /b ‘.$call.”,  ‘r’));

This should actually be:

pclose(popen(‘start /b ‘.$call,  ‘r’));

This also saved my day.  Thanks man!</description>
		<content:encoded><![CDATA[<p>I think the thing that was confusing ppl is the use of quotations in the following line:</p>
<p>pclose(popen(‘start /b ‘.$call.”,  ‘r’));</p>
<p>This should actually be:</p>
<p>pclose(popen(‘start /b ‘.$call,  ‘r’));</p>
<p>This also saved my day.  Thanks man!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pham Loc</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-944911</link>
		<dc:creator>Pham Loc</dc:creator>
		<pubDate>Wed, 09 Jun 2010 06:28:12 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-944911</guid>
		<description>Thanks man you saved my day</description>
		<content:encoded><![CDATA[<p>Thanks man you saved my day</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-402188</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Fri, 01 Aug 2008 02:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-402188</guid>
		<description>@diiar: It&#039;s possible your host prohibits the use of &lt;code&gt;popen()&lt;/code&gt; for security reasons.  You should check with your admin.</description>
		<content:encoded><![CDATA[<p>@diiar: It&#8217;s possible your host prohibits the use of <code>popen()</code> for security reasons.  You should check with your admin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: diiar</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-357335</link>
		<dc:creator>diiar</dc:creator>
		<pubDate>Tue, 24 Jun 2008 12:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-357335</guid>
		<description>This doesn&#039;t work with me. I don&#039;t know what&#039;s wrong, but lauchBackgroundProcess() doesn&#039;t do anything. However, if I add fgets() as in the second script, it works. But, it&#039;s not an asynchronous call!!</description>
		<content:encoded><![CDATA[<p>This doesn&#8217;t work with me. I don&#8217;t know what&#8217;s wrong, but lauchBackgroundProcess() doesn&#8217;t do anything. However, if I add fgets() as in the second script, it works. But, it&#8217;s not an asynchronous call!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johny why</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-233948</link>
		<dc:creator>johny why</dc:creator>
		<pubDate>Sun, 09 Dec 2007 04:22:03 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-233948</guid>
		<description>the code:

pclose(popen(&#039;PHP http://picnictoimpeach.us/remote.php5&#039;, &#039;r&#039;));</description>
		<content:encoded><![CDATA[<p>the code:</p>
<p>pclose(popen(&#8216;PHP <a href="http://picnictoimpeach.us/remote.php5&#039;" rel="nofollow">http://picnictoimpeach.us/remote.php5&#039;</a>, &#8216;r&#8217;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johny why</title>
		<link>http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/comment-page-1/#comment-233947</link>
		<dc:creator>johny why</dc:creator>
		<pubDate>Sun, 09 Dec 2007 04:20:59 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2006/09/14/asynchronous-processing-with-php/#comment-233947</guid>
		<description>this ain&#039;t workin. any ideas? running on a linux host:



if this is shelling out to the system, then i don&#039;t have shell access. is there way way to do an asynchronous call to a php script WITHOUT calling the shell?

thanks</description>
		<content:encoded><![CDATA[<p>this ain&#8217;t workin. any ideas? running on a linux host:</p>
<p>if this is shelling out to the system, then i don&#8217;t have shell access. is there way way to do an asynchronous call to a php script WITHOUT calling the shell?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

