<?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: Adding GZIP Compression To Your Site Via .htaccess</title>
	<atom:link href="http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess</link>
	<description>Nottingham freelance UK PHP, Magento, Wordpress developer</description>
	<lastBuildDate>Wed, 10 Mar 2010 16:06:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jesse Donat</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-67166</link>
		<dc:creator>Jesse Donat</dc:creator>
		<pubDate>Tue, 09 Mar 2010 22:19:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-67166</guid>
		<description>&lt;cite&gt;Once you originally implement this, yes, you will notice changes in your processors activity. But after a day or two you’ll soon see the processor levels lower.&lt;/cite&gt;

This is wholly incorrect.  This method will compress your code, not cached in any way, every time a page is executed, output buffering the entire thing.

Lets go over the process so we understand.

- The output buffer begins storing output.
- Your sites code executes.
--- Anything your code would &quot;echo&quot; to the user is sent to the output buffer instead
- Your code completes
- the output buffer containing &lt;i&gt;the full content of your site&lt;/i&gt; is gziped
--- Gzip cannot execute on a partial document and must execute on the full completed html document
- the final gzip result is sent to the user, once all PHP has completed

Therefore the end user will not receive nor have displayed a single line of HTML until they receive the entire compressed document, at which point it can be uncompressed. 
This can actually create the impression that the page is loading &lt;strong&gt;slower&lt;/strong&gt; because the browser will normally begin to render content as PHP flushes pieces of HTML out to the user, whereas now the user will receive it all at once, after PHP is entirely done.

I have found in my testing on Oasisband.net that PHPs delay compressing my HTML is greater than the delay of the user downloading it uncompressed when on a relatively fast connection. 

Lastly ob_gz_handler to my understanding is more or less deprecated for &lt;a href=&quot;http://us2.php.net/manual/en/zlib.configuration.php#ini.zlib.output-compression&quot; rel=&quot;nofollow&quot;&gt;Zlib Output Compression&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p><cite>Once you originally implement this, yes, you will notice changes in your processors activity. But after a day or two you’ll soon see the processor levels lower.</cite></p>
<p>This is wholly incorrect.  This method will compress your code, not cached in any way, every time a page is executed, output buffering the entire thing.</p>
<p>Lets go over the process so we understand.</p>
<p>- The output buffer begins storing output.<br />
- Your sites code executes.<br />
&#8212; Anything your code would &#8220;echo&#8221; to the user is sent to the output buffer instead<br />
- Your code completes<br />
- the output buffer containing <i>the full content of your site</i> is gziped<br />
&#8212; Gzip cannot execute on a partial document and must execute on the full completed html document<br />
- the final gzip result is sent to the user, once all PHP has completed</p>
<p>Therefore the end user will not receive nor have displayed a single line of HTML until they receive the entire compressed document, at which point it can be uncompressed.<br />
This can actually create the impression that the page is loading <strong>slower</strong> because the browser will normally begin to render content as PHP flushes pieces of HTML out to the user, whereas now the user will receive it all at once, after PHP is entirely done.</p>
<p>I have found in my testing on Oasisband.net that PHPs delay compressing my HTML is greater than the delay of the user downloading it uncompressed when on a relatively fast connection. </p>
<p>Lastly ob_gz_handler to my understanding is more or less deprecated for <a href="http://us2.php.net/manual/en/zlib.configuration.php#ini.zlib.output-compression" rel="nofollow">Zlib Output Compression</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Huskisson</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-67145</link>
		<dc:creator>Jamie Huskisson</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:17:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-67145</guid>
		<description>Kiran - it sounds like your server doesn&#039;t have GZIP enabled. You&#039;ll need to contact your host in order to do this.</description>
		<content:encoded><![CDATA[<p>Kiran &#8211; it sounds like your server doesn&#8217;t have GZIP enabled. You&#8217;ll need to contact your host in order to do this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kiran</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-67144</link>
		<dc:creator>Kiran</dc:creator>
		<pubDate>Tue, 23 Feb 2010 06:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-67144</guid>
		<description>Hi,
i have added  &lt;b&gt;php_value output_handler ob_gzhandler&lt;/b&gt; to compress the files in .htaccess file but am getting the following error:
Error 500 - Internal server error

An internal server error has occured!
Please try again later.

Can anybody help me wats the right way to do this.

Thanks in Advance,
Kiran kumar</description>
		<content:encoded><![CDATA[<p>Hi,<br />
i have added  <b>php_value output_handler ob_gzhandler</b> to compress the files in .htaccess file but am getting the following error:<br />
Error 500 &#8211; Internal server error</p>
<p>An internal server error has occured!<br />
Please try again later.</p>
<p>Can anybody help me wats the right way to do this.</p>
<p>Thanks in Advance,<br />
Kiran kumar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-67140</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Sun, 21 Feb 2010 18:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-67140</guid>
		<description>oh that rules - thank you!!</description>
		<content:encoded><![CDATA[<p>oh that rules &#8211; thank you!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mi</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-67099</link>
		<dc:creator>Mi</dc:creator>
		<pubDate>Thu, 21 Jan 2010 14:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-67099</guid>
		<description>Thanks for the great tip! It worked on one of my ISPs. On the other ISP it didn&#039;t. I will need to ask the service hotline why it doesn&#039;t work there.
Anyway, great article!</description>
		<content:encoded><![CDATA[<p>Thanks for the great tip! It worked on one of my ISPs. On the other ISP it didn&#8217;t. I will need to ask the service hotline why it doesn&#8217;t work there.<br />
Anyway, great article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ashworth</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-67081</link>
		<dc:creator>Dave Ashworth</dc:creator>
		<pubDate>Wed, 13 Jan 2010 11:50:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-67081</guid>
		<description>This is great, though I have come across one issue with it.

I added to a client site and everything was fine and noticeably sped up, however, the application within a sub folder displayed ascii &quot;nonsense&quot; - like if you were to open say a SWF file in word or notepad!

Anyone know why this would be and how to overcome it?</description>
		<content:encoded><![CDATA[<p>This is great, though I have come across one issue with it.</p>
<p>I added to a client site and everything was fine and noticeably sped up, however, the application within a sub folder displayed ascii &#8220;nonsense&#8221; &#8211; like if you were to open say a SWF file in word or notepad!</p>
<p>Anyone know why this would be and how to overcome it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trecords</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-67054</link>
		<dc:creator>trecords</dc:creator>
		<pubDate>Thu, 10 Dec 2009 16:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-67054</guid>
		<description>Hello,
Very good idea, can i also compress CSS with adding this code:
&lt;code&gt;css_value output_handler ob_gzhandler&lt;/code&gt;

Also i use wpmu, do i need to add the header code to all templates?
Thank you very much</description>
		<content:encoded><![CDATA[<p>Hello,<br />
Very good idea, can i also compress CSS with adding this code:<br />
<code>css_value output_handler ob_gzhandler</code></p>
<p>Also i use wpmu, do i need to add the header code to all templates?<br />
Thank you very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-67052</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Wed, 09 Dec 2009 20:21:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-67052</guid>
		<description>I had great luck with this! For me, to implement it server wide, I put it in the httpd.conf file on my linux server. Then, rebooted apache and BAM! Every site I host has it. :)

Thanks!</description>
		<content:encoded><![CDATA[<p>I had great luck with this! For me, to implement it server wide, I put it in the httpd.conf file on my linux server. Then, rebooted apache and BAM! Every site I host has it. :)</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Is Gzip turned on? - x10Hosting Community</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-66980</link>
		<dc:creator>Is Gzip turned on? - x10Hosting Community</dc:creator>
		<pubDate>Wed, 14 Oct 2009 07:15:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-66980</guid>
		<description>[...] Is Gzip turned on?     As far as I know, yes.  http://www.jhuskisson.com/articles/a...e-via-htaccess    __________________ Regards, Sharky B.A. (Hons) AVATAR (JPG/PNG) &#124; IRC &#124; PM &#124; MY POSTS &#124; MY [...]</description>
		<content:encoded><![CDATA[<p>[...] Is Gzip turned on?     As far as I know, yes.  <a href="http://www.jhuskisson.com/articles/a...e-via-htaccess" rel="nofollow">http://www.jhuskisson.com/articles/a&#8230;e-via-htaccess</a>    __________________ Regards, Sharky B.A. (Hons) AVATAR (JPG/PNG) | IRC | PM | MY POSTS | MY [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-66691</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sun, 26 Jul 2009 03:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-66691</guid>
		<description>Vielen Dank für die Informationen =)</description>
		<content:encoded><![CDATA[<p>Vielen Dank für die Informationen =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DFL</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-51910</link>
		<dc:creator>DFL</dc:creator>
		<pubDate>Sat, 10 Jan 2009 03:19:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-51910</guid>
		<description>You can also do it in a php.ini file (assuming gzip is enabled) by adding only one line to php.ini:

output_handler = ob_gzhandler; 

That&#039;s it.

Also, compressing in a PHP file, the:

ob_end_flush();

line is not necessary for it to function properly.  PHP will flush it automatically.  To simplify, all you need is:

ob_start(&#039;ob_gzhandler&#039;);

At the top of a PHP file.  You could also prepend a php file to other php files using htaccess.  But if you could do that, you might as well use the htaccess example given in this post.</description>
		<content:encoded><![CDATA[<p>You can also do it in a php.ini file (assuming gzip is enabled) by adding only one line to php.ini:</p>
<p>output_handler = ob_gzhandler; </p>
<p>That&#8217;s it.</p>
<p>Also, compressing in a PHP file, the:</p>
<p>ob_end_flush();</p>
<p>line is not necessary for it to function properly.  PHP will flush it automatically.  To simplify, all you need is:</p>
<p>ob_start(&#8216;ob_gzhandler&#8217;);</p>
<p>At the top of a PHP file.  You could also prepend a php file to other php files using htaccess.  But if you could do that, you might as well use the htaccess example given in this post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jangla</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-48339</link>
		<dc:creator>Jangla</dc:creator>
		<pubDate>Tue, 02 Dec 2008 10:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-48339</guid>
		<description>When I stick this in my .htaccess file the site just outputs a bunch of garbled ascii characters - like when you try and open a compiled file in notepad or something.</description>
		<content:encoded><![CDATA[<p>When I stick this in my .htaccess file the site just outputs a bunch of garbled ascii characters &#8211; like when you try and open a compiled file in notepad or something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suresh P</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-47146</link>
		<dc:creator>Suresh P</dc:creator>
		<pubDate>Wed, 12 Nov 2008 15:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-47146</guid>
		<description>Hi,

will the above .htaccess code(php_value output_handler ob_gzhandler) also compress the Javascript / CSS files too?

thanks,
Suresh P</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>will the above .htaccess code(php_value output_handler ob_gzhandler) also compress the Javascript / CSS files too?</p>
<p>thanks,<br />
Suresh P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aikindo</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-37824</link>
		<dc:creator>Aikindo</dc:creator>
		<pubDate>Tue, 05 Aug 2008 05:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-37824</guid>
		<description>Thanks for the info.

Since I have access to .htaccess, can I also compress the .css files via .htaccess?

Thanks once again</description>
		<content:encoded><![CDATA[<p>Thanks for the info.</p>
<p>Since I have access to .htaccess, can I also compress the .css files via .htaccess?</p>
<p>Thanks once again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Cinel</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-33328</link>
		<dc:creator>Tim Cinel</dc:creator>
		<pubDate>Sat, 24 May 2008 15:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-33328</guid>
		<description>Heh, I&#039;m also using it to shift heavy JS like prototype. It&#039;s heavy but I still love it :) Oh it&#039;s good for big CSS files, too.

Thanks for the code :)</description>
		<content:encoded><![CDATA[<p>Heh, I&#8217;m also using it to shift heavy JS like prototype. It&#8217;s heavy but I still love it :) Oh it&#8217;s good for big CSS files, too.</p>
<p>Thanks for the code :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Av</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-10626</link>
		<dc:creator>Av</dc:creator>
		<pubDate>Thu, 22 Mar 2007 22:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-10626</guid>
		<description>wow, you&#039;re a life saver :o VERY useful to cut down big files like prototype JS</description>
		<content:encoded><![CDATA[<p>wow, you&#8217;re a life saver :o VERY useful to cut down big files like prototype JS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ORION</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-2561</link>
		<dc:creator>ORION</dc:creator>
		<pubDate>Wed, 14 Sep 2005 12:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-2561</guid>
		<description>thanks, works wonders :D</description>
		<content:encoded><![CDATA[<p>thanks, works wonders :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AlenÃƒÆ’Ã‚Â´nimo</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-2557</link>
		<dc:creator>AlenÃƒÆ’Ã‚Â´nimo</dc:creator>
		<pubDate>Thu, 28 Jul 2005 20:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-2557</guid>
		<description>Your hint is almost essencial! I&#039;ve implemented right now and I will analyse the bandwitch usage to compare...

My entire site is PHP based. Thanks... :D</description>
		<content:encoded><![CDATA[<p>Your hint is almost essencial! I&#8217;ve implemented right now and I will analyse the bandwitch usage to compare&#8230;</p>
<p>My entire site is PHP based. Thanks&#8230; :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eagle</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-2558</link>
		<dc:creator>Eagle</dc:creator>
		<pubDate>Wed, 20 Jul 2005 20:34:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-2558</guid>
		<description>above php code is intended for to use in the top of CSS files</description>
		<content:encoded><![CDATA[<p>above php code is intended for to use in the top of CSS files</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eagle</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-2560</link>
		<dc:creator>Eagle</dc:creator>
		<pubDate>Thu, 14 Jul 2005 20:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-2560</guid>
		<description>oops, in my previous post, php code didn&#039;t get displayed, i&#039;ll use &HtmlEntity; code to display the &quot;less than&quot; symbol and &quot;greater than&quot; symbol.

&lt;?php ob_start (&quot;ob_gzhandler&quot;);
header(&quot;Content-type: text/css; charset: UTF-8&quot;);
?&gt;

</description>
		<content:encoded><![CDATA[<p>oops, in my previous post, php code didn&#8217;t get displayed, i&#8217;ll use &#038;HtmlEntity; code to display the &#8220;less than&#8221; symbol and &#8220;greater than&#8221; symbol.</p>
<p>&lt;?php ob_start (&#8220;ob_gzhandler&#8221;);<br />
header(&#8220;Content-type: text/css; charset: UTF-8&#8243;);<br />
?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-2556</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 23 Apr 2005 00:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-2556</guid>
		<description>I figured it out. For some reason when I pasted it on my dad&#039;s computer (which I&#039;m on until about 6PM when I go back up to my computer) I pasted the 1: as well for some odd reason and also didn&#039;t notice it. God that&#039;s stupidity for you. :)</description>
		<content:encoded><![CDATA[<p>I figured it out. For some reason when I pasted it on my dad&#8217;s computer (which I&#8217;m on until about 6PM when I go back up to my computer) I pasted the 1: as well for some odd reason and also didn&#8217;t notice it. God that&#8217;s stupidity for you. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-2555</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Fri, 22 Apr 2005 23:59:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-2555</guid>
		<description>No, just adding this to your .htaccess file should work fine :)</description>
		<content:encoded><![CDATA[<p>No, just adding this to your .htaccess file should work fine :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-2554</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 22 Apr 2005 23:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-2554</guid>
		<description>Yeah.
Now this means I just have to enter ob_start(), right? Without the &quot;ob_gzhandler.&quot;

I&#039;ll play around with it when I go upstairs, where everything I have that has my website is. Right now I just used Notepad really quickly to create it and uploaded it through my host&#039;s file uploader.</description>
		<content:encoded><![CDATA[<p>Yeah.<br />
Now this means I just have to enter ob_start(), right? Without the &#8220;ob_gzhandler.&#8221;</p>
<p>I&#8217;ll play around with it when I go upstairs, where everything I have that has my website is. Right now I just used Notepad really quickly to create it and uploaded it through my host&#8217;s file uploader.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-2553</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Fri, 22 Apr 2005 23:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-2553</guid>
		<description>you did only copy the first box into your htaccess yes?</description>
		<content:encoded><![CDATA[<p>you did only copy the first box into your htaccess yes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.jhuskisson.com/articles/adding-gzip-compression-to-your-site-via-htaccess/comment-page-1#comment-2552</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 22 Apr 2005 23:46:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.twod.co.uk/2005/04/17/adding-gzip-compression-to-your-site-via-htaccess/#comment-2552</guid>
		<description>I submitted a support ticket and they said that a 500 server error means I have a problem in the syntax. Annoying. I copied right off of your site. Hmm...</description>
		<content:encoded><![CDATA[<p>I submitted a support ticket and they said that a 500 server error means I have a problem in the syntax. Annoying. I copied right off of your site. Hmm&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
