<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments on: Use mod_deflate to Compress Web Content delivered by Apache</title>
	<atom:link href="http://www.g-loaded.eu/2008/05/10/use-mod_deflate-to-compress-web-content-delivered-by-apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.g-loaded.eu/2008/05/10/use-mod_deflate-to-compress-web-content-delivered-by-apache/</link>
	<description>An open-source software and technology related journal</description>
	<lastBuildDate>Sun, 28 Feb 2010 05:55:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Lawrence Sheed</title>
		<link>http://www.g-loaded.eu/2008/05/10/use-mod_deflate-to-compress-web-content-delivered-by-apache/#comment-11714</link>
		<dc:creator>Lawrence Sheed</dc:creator>
		<pubDate>Fri, 27 Mar 2009 05:27:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=492#comment-11714</guid>
		<description>2nd try - the ifmodule was stripped..

&lt;code&gt;

      AddOutputFilterByType DEFLATE text/html


&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>2nd try &#8211; the ifmodule was stripped..</p>
<p><code></p>
<p>      AddOutputFilterByType DEFLATE text/html</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawrence Sheed</title>
		<link>http://www.g-loaded.eu/2008/05/10/use-mod_deflate-to-compress-web-content-delivered-by-apache/#comment-11713</link>
		<dc:creator>Lawrence Sheed</dc:creator>
		<pubDate>Fri, 27 Mar 2009 05:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=492#comment-11713</guid>
		<description>@KC 

You need to enable mod_deflate first.

a2enmod deflate

Also recommend you check if its loaded by using the ifmodule command  eg:

.htaccess


       AddOutputFilterByType DEFLATE text/html



That way, if its missing, it won&#039;t break anything...</description>
		<content:encoded><![CDATA[<p>@KC </p>
<p>You need to enable mod_deflate first.</p>
<p>a2enmod deflate</p>
<p>Also recommend you check if its loaded by using the ifmodule command  eg:</p>
<p>.htaccess</p>
<p>       AddOutputFilterByType DEFLATE text/html</p>
<p>That way, if its missing, it won&#8217;t break anything&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George Notaras</title>
		<link>http://www.g-loaded.eu/2008/05/10/use-mod_deflate-to-compress-web-content-delivered-by-apache/#comment-11684</link>
		<dc:creator>George Notaras</dc:creator>
		<pubDate>Sun, 22 Feb 2009 20:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=492#comment-11684</guid>
		<description>@KC: Probably you have not enabled the &lt;strong&gt;Fileinfo&lt;/strong&gt; override for that directory in your httpd.conf. For instance:

&lt;pre&gt;
&lt;Directory /path/to/dir&gt;
    Override Fileinfo
&lt;/Directory&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@KC: Probably you have not enabled the <strong>Fileinfo</strong> override for that directory in your httpd.conf. For instance:</p>
<pre>
&lt;Directory /path/to/dir&gt;
    Override Fileinfo
&lt;/Directory&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: KC</title>
		<link>http://www.g-loaded.eu/2008/05/10/use-mod_deflate-to-compress-web-content-delivered-by-apache/#comment-11682</link>
		<dc:creator>KC</dc:creator>
		<pubDate>Sun, 22 Feb 2009 16:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=492#comment-11682</guid>
		<description>I added the following to my .htaccess:

AddOutputFilterByType DEFLATE text/html

But it just produced internal server errors. What&#039;s going wrong here? I am using Apache 2.0.40</description>
		<content:encoded><![CDATA[<p>I added the following to my .htaccess:</p>
<p>AddOutputFilterByType DEFLATE text/html</p>
<p>But it just produced internal server errors. What&#8217;s going wrong here? I am using Apache 2.0.40</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iGuide</title>
		<link>http://www.g-loaded.eu/2008/05/10/use-mod_deflate-to-compress-web-content-delivered-by-apache/#comment-11668</link>
		<dc:creator>iGuide</dc:creator>
		<pubDate>Fri, 30 Jan 2009 02:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=492#comment-11668</guid>
		<description>Perfect!  Your settings worked perfectly for me, thank you.  

I would add the following:
    AddOutputFilterByType DEFLATE application/x-httpd-php
    AddOutputFilterByType DEFLATE application/x-httpd-fastphp
    AddOutputFilterByType DEFLATE application/x-httpd-eruby
    AddOutputFilterByType DEFLATE image/svg+xml

And cut out the time-consuming logging:
    DeflateFilterNote
    LogFormat</description>
		<content:encoded><![CDATA[<p>Perfect!  Your settings worked perfectly for me, thank you.  </p>
<p>I would add the following:<br />
    AddOutputFilterByType DEFLATE application/x-httpd-php<br />
    AddOutputFilterByType DEFLATE application/x-httpd-fastphp<br />
    AddOutputFilterByType DEFLATE application/x-httpd-eruby<br />
    AddOutputFilterByType DEFLATE image/svg+xml</p>
<p>And cut out the time-consuming logging:<br />
    DeflateFilterNote<br />
    LogFormat</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: spirit</title>
		<link>http://www.g-loaded.eu/2008/05/10/use-mod_deflate-to-compress-web-content-delivered-by-apache/#comment-11299</link>
		<dc:creator>spirit</dc:creator>
		<pubDate>Fri, 04 Jul 2008 14:51:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=492#comment-11299</guid>
		<description>&lt;b&gt;Nice tutorial! thanks!&lt;/b&gt;</description>
		<content:encoded><![CDATA[<p><b>Nice tutorial! thanks!</b></p>
]]></content:encoded>
	</item>
</channel>
</rss>
