<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Aaron Pearson &#187; Wordpress</title>
	<atom:link href="http://www.aaronwpearson.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aaronwpearson.com</link>
	<description>Making Technology Work for You</description>
	<lastBuildDate>Sun, 31 Jan 2010 18:02:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WP Super Cache IE7 Cannot Display Webpage</title>
		<link>http://www.aaronwpearson.com/wp-super-cache-ie7-cannot-display-webpage/</link>
		<comments>http://www.aaronwpearson.com/wp-super-cache-ie7-cannot-display-webpage/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 02:09:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.aaronwpearson.com/?p=277</guid>
		<description><![CDATA[
WP Super Cache is an amazing Wordpress plugin for webmasters with large sites or with sites that use a ton of SQL queries to generate the content. When I first installed, everything appeared to be working fine. When I tested the site in Internet Explorer 7 I received the dreaded &#8220;Explorer cannot display the webpage&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-281" title="wp-super-cache" src="http://www.aaronwpearson.com/wordpress/wp-content/uploads/2009/09/wp-super-cache.jpg" alt="wp-super-cache" width="599" height="122" /></p>
<p>WP Super Cache is an amazing Wordpress plugin for webmasters with large sites or with sites that use a ton of SQL queries to generate the content. When I first installed, everything appeared to be working fine. When I tested the site in Internet Explorer 7 I received the dreaded &#8220;Explorer cannot display the webpage&#8221; error. There where a couple of things that I needed to change in order to make it work. The first thing was that I had to modify the &#8220;/wp-content/cache/.htaccess&#8221; file.</p>
<p>Add the following code at the beginning of the htaccess file directly below the &#8220;# BEGIN WPSuperCache&#8221;</p>
<pre>
&lt;IfModule mod_mime.c&gt;
AddEncoding gzip .gz
AddType text/html .gz
&lt;/IfModule&gt;
&lt;IfModule mod_deflate.c&gt;
SetEnvIfNoCase Request_URI \.gz$ no-gzip
&lt;/IfModule&gt;
&lt;IfModule mod_headers.c&gt;
Header set Cache-Control 'max-age=300, must-revalidate'
&lt;/IfModule&gt;
&lt;IfModule mod_expires.c&gt;
ExpiresActive On
ExpiresByType text/html A300
&lt;/IfModule&gt;
</pre>
<p>This seemed to fix some bugs I was having with IE6, but IE7 still wouldn&#8217;t display the page. I then realized that earlier I had started using PHP gZip compression. So at the top of the header.php file for my theme I had the following line.</p>
<p><code>ob_start("ob_gzhandler");</code></p>
<p>Once I removed this then IE7 displayed the page right away.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronwpearson.com/wp-super-cache-ie7-cannot-display-webpage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
