<?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: Compressing Webpages for Fun and Profit</title>
	<atom:link href="http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/</link>
	<description></description>
	<lastBuildDate>Tue, 10 Jan 2012 01:21:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ajay DSouza</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-2/#comment-16223</link>
		<dc:creator>Ajay DSouza</dc:creator>
		<pubDate>Sun, 27 Feb 2005 12:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-16223</guid>
		<description>I used the zlib compression method you posted above. It worked fine for my php files, however the html files don&#039;t get compressed :(</description>
		<content:encoded><![CDATA[<p>I used the zlib compression method you posted above. It worked fine for my php files, however the html files don&#039;t get compressed <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fitzy</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-2/#comment-15560</link>
		<dc:creator>Fitzy</dc:creator>
		<pubDate>Thu, 17 Feb 2005 04:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-15560</guid>
		<description>Wow.... I needed to compress a JS array of 290KB on a form of mine, and I found this page, and your one line of code, and bam, compressed to 45K :)

I didn&#039;t put it at the top of the page either, just at the beginning of the bit I needed compressing from. (OO style site).

So thankyou for saving me a lot of time :)</description>
		<content:encoded><![CDATA[<p>Wow&#8230;. I needed to compress a JS array of 290KB on a form of mine, and I found this page, and your one line of code, and bam, compressed to 45K <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I didn&#039;t put it at the top of the page either, just at the beginning of the bit I needed compressing from. (OO style site).</p>
<p>So thankyou for saving me a lot of time <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: evariste</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-2/#comment-14897</link>
		<dc:creator>evariste</dc:creator>
		<pubDate>Tue, 08 Feb 2005 08:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-14897</guid>
		<description>This is probably too late to help either of you but maybe it&#039;ll help a future person who runs across this. Greg, you probably have a virtual() call in your php. David, use include() instead of virtual(). It does the same thing, except that virtual() starts php inside an Apache module and include() invokes The Real PHP. For some reason this is better when you&#039;re using gzip output buffering. Caution: the preceding explanation is probably completely wrong technically, because I don&#039;t actually understand how this works, but it&#039;s what I&#039;ve deduced.</description>
		<content:encoded><![CDATA[<p>This is probably too late to help either of you but maybe it&#039;ll help a future person who runs across this. Greg, you probably have a virtual() call in your php. David, use include() instead of virtual(). It does the same thing, except that virtual() starts php inside an Apache module and include() invokes The Real PHP. For some reason this is better when you&#039;re using gzip output buffering. Caution: the preceding explanation is probably completely wrong technically, because I don&#039;t actually understand how this works, but it&#039;s what I&#039;ve deduced.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-2/#comment-13438</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 26 Nov 2004 09:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-13438</guid>
		<description>I used the &quot;Alternative&quot; method and it worked fine until I realised it prevents one of my pages from displaying. The reason for this is the page uses a virtual() command to insert the output of a CGI script. So whilst the page itself has a .php extension, and thus passes through the FilesMatch filter, it falls over at the line containing the virtual() command when it is compressed.

Can anyone recommend a way to prevent this particular file from not being compressed, whilst allowing everything else to be compressed? [Its location is www.domain.com/search/index.php if that helps.]</description>
		<content:encoded><![CDATA[<p>I used the &#034;Alternative&#034; method and it worked fine until I realised it prevents one of my pages from displaying. The reason for this is the page uses a virtual() command to insert the output of a CGI script. So whilst the page itself has a .php extension, and thus passes through the FilesMatch filter, it falls over at the line containing the virtual() command when it is compressed.</p>
<p>Can anyone recommend a way to prevent this particular file from not being compressed, whilst allowing everything else to be compressed? [Its location is <a href="http://www.domain.com/search/index.php" rel="nofollow">http://www.domain.com/search/index.php</a> if that helps.]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: /bin/true</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-1/#comment-9609</link>
		<dc:creator>/bin/true</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-9609</guid>
		<description>&lt;trackback /&gt;&lt;strong&gt;Compressing web pages&lt;/strong&gt;
Scriptygoddess.com is an amazing resource for bloggers and people working with the web. Lots of little scripts and hacks to get your job done. A while back, I tried installing mod_gzip to compress my web pages and aid the children...
</description>
		<content:encoded><![CDATA[<trackback /><strong>Compressing web pages</strong><br />
Scriptygoddess.com is an amazing resource for bloggers and people working with the web. Lots of little scripts and hacks to get your job done. A while back, I tried installing mod_gzip to compress my web pages and aid the children&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike's QuickLinks</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-1/#comment-9608</link>
		<dc:creator>Mike's QuickLinks</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-9608</guid>
		<description>&lt;trackback /&gt;&lt;strong&gt;Compress Your Web Pages&lt;/strong&gt;
I just used this very simple method of compressing PHP pages to get my other blog&#039;s front page down to 18K from 80K.  Your dial-up readers will love you for doing this, and you&#039;ll cut down on your bandwidth usage.  Thanks to Charles (http://charles.gag...</description>
		<content:encoded><![CDATA[<trackback /><strong>Compress Your Web Pages</strong><br />
I just used this very simple method of compressing PHP pages to get my other blog&#039;s front page down to 18K from 80K.  Your dial-up readers will love you for doing this, and you&#039;ll cut down on your bandwidth usage.  Thanks to Charles (<a href="http://charles.gag.." rel="nofollow">http://charles.gag..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Silent Running</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-1/#comment-9607</link>
		<dc:creator>Silent Running</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-9607</guid>
		<description>&lt;trackback /&gt;&lt;strong&gt;Serving as a lesson to others&lt;/strong&gt;
Andrea and Tim&#039;s bandwidth scare drew my attention to the concerns of page obesity. Apparently, SR kicks out at around 200k per serving. Supersize it, baby. At this rate, its only a matter of time before the sharks circling the...</description>
		<content:encoded><![CDATA[<trackback /><strong>Serving as a lesson to others</strong><br />
Andrea and Tim&#039;s bandwidth scare drew my attention to the concerns of page obesity. Apparently, SR kicks out at around 200k per serving. Supersize it, baby. At this rate, its only a matter of time before the sharks circling the&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: beautiful-friend.net</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-1/#comment-9605</link>
		<dc:creator>beautiful-friend.net</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-9605</guid>
		<description>&lt;trackback /&gt;&lt;strong&gt;gzipped&lt;/strong&gt;
I gzipped my front page. It should make things load more quickly. Can anyone say that it has?...</description>
		<content:encoded><![CDATA[<trackback /><strong>gzipped</strong><br />
I gzipped my front page. It should make things load more quickly. Can anyone say that it has?&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: My friggin' blog!</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-1/#comment-9606</link>
		<dc:creator>My friggin' blog!</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-9606</guid>
		<description>&lt;trackback /&gt;&lt;strong&gt;mod_gzip&lt;/strong&gt;
&lt;a href=&quot;http://www.scriptygoddess.com/archives/003627.php&quot;&gt;scriptygoddess&lt;/a&gt;  What a helpful read, thanks!  Just got mod_gzip setup on my site, and it cut the page sizes by about 70% according to the logs.  WOW!  I really wish ...</description>
		<content:encoded><![CDATA[<trackback /><strong>mod_gzip</strong><br />
<a href="http://www.scriptygoddess.com/archives/003627.php">scriptygoddess</a>  What a helpful read, thanks!  Just got mod_gzip setup on my site, and it cut the page sizes by about 70% according to the logs.  WOW!  I really wish &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thoughtprints</title>
		<link>http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/comment-page-1/#comment-9603</link>
		<dc:creator>Thoughtprints</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/#comment-9603</guid>
		<description>&lt;trackback /&gt;&lt;strong&gt;In the Quest for Speed&lt;/strong&gt;
Following M.&#039;s (anything but ordinary) lead, I have gzipped my front page in the hopes of making it load faster. If you notice a difference in load-time, could you let...</description>
		<content:encoded><![CDATA[<trackback /><strong>In the Quest for Speed</strong><br />
Following M.&#039;s (anything but ordinary) lead, I have gzipped my front page in the hopes of making it load faster. If you notice a difference in load-time, could you let&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

