<?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: gzip/deflate &#8211; a (fairly) quick how-to for XAMPP</title>
	<atom:link href="http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/</link>
	<description>Spider-ball-vacuum</description>
	<lastBuildDate>Wed, 08 Feb 2012 16:06:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Phil</title>
		<link>http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/comment-page-1/#comment-778</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Wed, 13 Oct 2010 03:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://dev.tonic1394.com/?p=31#comment-778</guid>
		<description>@Alex

Make sure you are editing the correct httpd.conf file.  If you have multiple installations, or are using more than one windows apache server (WAMP and XAMPP for example) you may be in the wrong file.

I&#039;ve currently tested xampp up to version 1.7.2 and the file should be location in your xamppInstallDir/conf folder.

My config file for local development is found at C:\xampp\conf\httpd.conf

Open that file in a notepad program (I highly recommend &lt;a href=&quot;http://notepad-plus-plus.org/&quot; rel=&quot;nofollow&quot;&gt;Notepad++&lt;/a&gt;) and then do a find (ctrl-f) for &quot;deflate&quot;.  It should pull up a line between 89-100 with that line commented out.  Remove the commend (pound symbol) and then restart your apache server (using either the batch file or the XAMPP Control Panel).

If you still cannot find that line, then look for &quot;LoadModule&quot;. Once you have found that section just insert &quot;LoadModule deflate_module modules/mod_deflate.so&quot; and save your file. Then restart your apache server.

If you followed Jason&#039;s advice above when your server restarts you should be golden.  If you did not, you&#039;ll need to make those .htaccess files and place them where you want compression to work.</description>
		<content:encoded><![CDATA[<p>@Alex</p>
<p>Make sure you are editing the correct httpd.conf file.  If you have multiple installations, or are using more than one windows apache server (WAMP and XAMPP for example) you may be in the wrong file.</p>
<p>I&#8217;ve currently tested xampp up to version 1.7.2 and the file should be location in your xamppInstallDir/conf folder.</p>
<p>My config file for local development is found at C:\xampp\conf\httpd.conf</p>
<p>Open that file in a notepad program (I highly recommend <a href="http://notepad-plus-plus.org/" rel="nofollow">Notepad++</a>) and then do a find (ctrl-f) for &#8220;deflate&#8221;.  It should pull up a line between 89-100 with that line commented out.  Remove the commend (pound symbol) and then restart your apache server (using either the batch file or the XAMPP Control Panel).</p>
<p>If you still cannot find that line, then look for &#8220;LoadModule&#8221;. Once you have found that section just insert &#8220;LoadModule deflate_module modules/mod_deflate.so&#8221; and save your file. Then restart your apache server.</p>
<p>If you followed Jason&#8217;s advice above when your server restarts you should be golden.  If you did not, you&#8217;ll need to make those .htaccess files and place them where you want compression to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/comment-page-1/#comment-776</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 12 Oct 2010 21:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://dev.tonic1394.com/?p=31#comment-776</guid>
		<description>my httpd.conf (xampp)  donsen&#039;t have that line (&quot;LoadModule deflate_module modules/mod_deflate.so&quot;) and i think i dosen&#039;t have the file neither, what i can do?

thanks</description>
		<content:encoded><![CDATA[<p>my httpd.conf (xampp)  donsen&#8217;t have that line (&#8220;LoadModule deflate_module modules/mod_deflate.so&#8221;) and i think i dosen&#8217;t have the file neither, what i can do?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/comment-page-1/#comment-353</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Tue, 02 Feb 2010 22:31:07 +0000</pubDate>
		<guid isPermaLink="false">http://dev.tonic1394.com/?p=31#comment-353</guid>
		<description>&lt;a href=&quot;#comment-340&quot; rel=&quot;nofollow&quot;&gt;@thofik&lt;/a&gt;
Sorry for the delay in replying, to test if your gzip is working I recommend using the &quot;web developer&quot; addon for Firefox. You can find that&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/60&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;. There are other tools you can test with, both Chrome and Safari have developer tools that will show you what is being downloaded, the time it takes, and the file size. Another option you may want to look at is &lt;a href=&quot;http://code.google.com/speed/page-speed/&quot; rel=&quot;nofollow&quot;&gt;PageSpeed&lt;/a&gt; (by google), or &lt;a href=&quot;http://developer.yahoo.com/yslow/&quot; rel=&quot;nofollow&quot;&gt;Yahoo&#039;s YSlow&lt;/a&gt;.

Hope that helps.</description>
		<content:encoded><![CDATA[<p><a href="#comment-340" rel="nofollow">@thofik</a><br />
Sorry for the delay in replying, to test if your gzip is working I recommend using the &#8220;web developer&#8221; addon for Firefox. You can find that<a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">here</a>. There are other tools you can test with, both Chrome and Safari have developer tools that will show you what is being downloaded, the time it takes, and the file size. Another option you may want to look at is <a href="http://code.google.com/speed/page-speed/" rel="nofollow">PageSpeed</a> (by google), or <a href="http://developer.yahoo.com/yslow/" rel="nofollow">Yahoo&#8217;s YSlow</a>.</p>
<p>Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thofik</title>
		<link>http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/comment-page-1/#comment-340</link>
		<dc:creator>thofik</dc:creator>
		<pubDate>Tue, 12 Jan 2010 00:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://dev.tonic1394.com/?p=31#comment-340</guid>
		<description>what tools to test the gzip</description>
		<content:encoded><![CDATA[<p>what tools to test the gzip</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/comment-page-1/#comment-218</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Tue, 13 Oct 2009 14:04:14 +0000</pubDate>
		<guid isPermaLink="false">http://dev.tonic1394.com/?p=31#comment-218</guid>
		<description>&lt;a href=&quot;#comment-215&quot; rel=&quot;nofollow&quot;&gt;@Keith Davis&lt;/a&gt; 
You may need to change some settings, it&#039;s been a while since I&#039;ve used the built-in mail server of XAMPP (Mercury Mail). Problems with email are usually a beast to chase down (as I&#039;m sure you are fully aware), they can range from a php configuration error, to unrecognized MX records when you try to send.

First thing I would check is that I had my mail server installed and running. Mercury Mail comes bundled with XAMPP, but is not enabled by default.

&lt;a href=&quot;http://www.perspicuousasmud.com/2008/10/24/setting-up-a-localhost-mailserver&quot; rel=&quot;nofollow&quot;&gt;See here&lt;/a&gt; for a blog post about setting it up (and testing with Thunderbird).

&lt;a href=&quot;http://www.danieltmurphy.com/setting-up-mercury-smtp/&quot; rel=&quot;nofollow&quot;&gt;Check this post&lt;/a&gt; for another set up list (with some edits to your php.ini file, don&#039;t give up, xmapp has about four of them).

If you follow those and still run into issues, it may have to do with the cforms plugin, or another server bouncing your email as spam (lack of legit mx records).

Hope it helps,
Phil</description>
		<content:encoded><![CDATA[<p><a href="#comment-215" rel="nofollow">@Keith Davis</a><br />
You may need to change some settings, it&#8217;s been a while since I&#8217;ve used the built-in mail server of XAMPP (Mercury Mail). Problems with email are usually a beast to chase down (as I&#8217;m sure you are fully aware), they can range from a php configuration error, to unrecognized MX records when you try to send.</p>
<p>First thing I would check is that I had my mail server installed and running. Mercury Mail comes bundled with XAMPP, but is not enabled by default.</p>
<p><a href="http://www.perspicuousasmud.com/2008/10/24/setting-up-a-localhost-mailserver" rel="nofollow">See here</a> for a blog post about setting it up (and testing with Thunderbird).</p>
<p><a href="http://www.danieltmurphy.com/setting-up-mercury-smtp/" rel="nofollow">Check this post</a> for another set up list (with some edits to your php.ini file, don&#8217;t give up, xmapp has about four of them).</p>
<p>If you follow those and still run into issues, it may have to do with the cforms plugin, or another server bouncing your email as spam (lack of legit mx records).</p>
<p>Hope it helps,<br />
Phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith Davis</title>
		<link>http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/comment-page-1/#comment-215</link>
		<dc:creator>Keith Davis</dc:creator>
		<pubDate>Mon, 12 Oct 2009 20:34:24 +0000</pubDate>
		<guid isPermaLink="false">http://dev.tonic1394.com/?p=31#comment-215</guid>
		<description>Good to find a site with info on XAMPP local server setup.
I&#039;m using XAMPP to set up a Wordpress site before going live.
I&#039;m getting to know the cforms plugin but can&#039;t get it to send an email... do I have to change some of the XAMPP settings?
Hope you don&#039;t mind me asking a question not related to the post.</description>
		<content:encoded><![CDATA[<p>Good to find a site with info on XAMPP local server setup.<br />
I&#8217;m using XAMPP to set up a WordPress site before going live.<br />
I&#8217;m getting to know the cforms plugin but can&#8217;t get it to send an email&#8230; do I have to change some of the XAMPP settings?<br />
Hope you don&#8217;t mind me asking a question not related to the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/comment-page-1/#comment-99</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Tue, 14 Jul 2009 04:34:27 +0000</pubDate>
		<guid isPermaLink="false">http://dev.tonic1394.com/?p=31#comment-99</guid>
		<description>&lt;a href=&quot;#comment-98&quot; rel=&quot;nofollow&quot;&gt;@Jason&lt;/a&gt; Thanks for the tip, it&#039;s nice to have compression on auto so you don&#039;t have to pack around .htaccess files from project to project.</description>
		<content:encoded><![CDATA[<p><a href="#comment-98" rel="nofollow">@Jason</a> Thanks for the tip, it&#8217;s nice to have compression on auto so you don&#8217;t have to pack around .htaccess files from project to project.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://dev.tonic1394.com/2008/05/gzipdeflate-a-fairly-quick-how-to-for-xampp/comment-page-1/#comment-98</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 14 Jul 2009 02:20:40 +0000</pubDate>
		<guid isPermaLink="false">http://dev.tonic1394.com/?p=31#comment-98</guid>
		<description>I found that instead of putting &quot;SetOutputFilter DEFLATE&quot; in a .htaccess file you can instead put at the bottom of &quot;/xampp/apache/conf/httpd.conf&quot; file to auto-load during start-up.</description>
		<content:encoded><![CDATA[<p>I found that instead of putting &#8220;SetOutputFilter DEFLATE&#8221; in a .htaccess file you can instead put at the bottom of &#8220;/xampp/apache/conf/httpd.conf&#8221; file to auto-load during start-up.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.423 seconds -->

