<?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: Performing post-output script processing in PHP	</title>
	<atom:link href="https://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php/feed" rel="self" type="application/rss+xml" />
	<link>https://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php</link>
	<description>Web Programming, Linux System Administation, and Entrepreneurship in Athens Georgia</description>
	<lastBuildDate>Sun, 08 Feb 2009 14:51:41 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>
		By: Ash McConnell		</title>
		<link>https://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php/comment-page-1#comment-1160</link>

		<dc:creator><![CDATA[Ash McConnell]]></dc:creator>
		<pubDate>Sun, 08 Feb 2009 14:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php#comment-1160</guid>

					<description><![CDATA[This seems to work the first time I call it - or if i leave it for a while, but it takes a long time (the time of the sleep) if i call it a twice in a row.

Have I done something silly, or are you guys getting something similar?

Thanks for your help
All the best,
Ash

PS. I am using the Zend framework]]></description>
			<content:encoded><![CDATA[<p>This seems to work the first time I call it &#8211; or if i leave it for a while, but it takes a long time (the time of the sleep) if i call it a twice in a row.</p>
<p>Have I done something silly, or are you guys getting something similar?</p>
<p>Thanks for your help<br />
All the best,<br />
Ash</p>
<p>PS. I am using the Zend framework</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brandon		</title>
		<link>https://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php/comment-page-1#comment-934</link>

		<dc:creator><![CDATA[Brandon]]></dc:creator>
		<pubDate>Thu, 08 May 2008 13:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php#comment-934</guid>

					<description><![CDATA[Steven,

Thanks.  I wish that PHP had a better way of doing this, because I&#039;m not 100% confident that this method works for all browsers.   Another way that I&#039;ve done it is to exec() a second PHP script in the background

ie:
&lt;pre&gt;
exec(&quot;/usr/bin/php /path/to/second/script.php SANITIZED     
         ARGUMENTS &gt; /dev/null 2&gt;&amp;1 &amp;&quot;);&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>Steven,</p>
<p>Thanks.  I wish that PHP had a better way of doing this, because I&#8217;m not 100% confident that this method works for all browsers.   Another way that I&#8217;ve done it is to exec() a second PHP script in the background</p>
<p>ie:</p>
<pre>
exec("/usr/bin/php /path/to/second/script.php SANITIZED     
         ARGUMENTS > /dev/null 2>&#038;1 &#038;");</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Steven		</title>
		<link>https://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php/comment-page-1#comment-931</link>

		<dc:creator><![CDATA[Steven]]></dc:creator>
		<pubDate>Wed, 07 May 2008 13:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php#comment-931</guid>

					<description><![CDATA[I know why they always said you were a genius there at flying-j.  This will help me in many things that I am doing.]]></description>
			<content:encoded><![CDATA[<p>I know why they always said you were a genius there at flying-j.  This will help me in many things that I am doing.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brandon		</title>
		<link>https://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php/comment-page-1#comment-909</link>

		<dc:creator><![CDATA[Brandon]]></dc:creator>
		<pubDate>Thu, 27 Mar 2008 01:55:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php#comment-909</guid>

					<description><![CDATA[Also, I had reports of this rendering a blank page in at least one older browser (IE6 IIRC).   That may be due to the mod_gzip as mentioned by Gabe.]]></description>
			<content:encoded><![CDATA[<p>Also, I had reports of this rendering a blank page in at least one older browser (IE6 IIRC).   That may be due to the mod_gzip as mentioned by Gabe.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gabe Wachob		</title>
		<link>https://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php/comment-page-1#comment-908</link>

		<dc:creator><![CDATA[Gabe Wachob]]></dc:creator>
		<pubDate>Thu, 27 Mar 2008 01:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonchecketts.com/archives/performing-post-output-script-processing-in-php#comment-908</guid>

					<description><![CDATA[You may want to turn off gzip encoding if this is not working for some applications. 

With apache 2.0, I did this in my .htaccess file:
 
BrowserMatch .* no-gzip

See https://httpd.apache.org/docs/2.0/mod/mod_deflate.html for more info]]></description>
			<content:encoded><![CDATA[<p>You may want to turn off gzip encoding if this is not working for some applications. </p>
<p>With apache 2.0, I did this in my .htaccess file:</p>
<p>BrowserMatch .* no-gzip</p>
<p>See <a href="https://httpd.apache.org/docs/2.0/mod/mod_deflate.html" rel="nofollow ugc">https://httpd.apache.org/docs/2.0/mod/mod_deflate.html</a> for more info</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
