<?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>Skyphe.org &#187; internet-explorer</title>
	<atom:link href="http://skyphe.org/tag/internet-explorer/feed/" rel="self" type="application/rss+xml" />
	<link>http://skyphe.org</link>
	<description>It&#039;ll all make sense one day...</description>
	<lastBuildDate>Sun, 11 Dec 2011 18:07:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Got problems with Internet Explorer 7 and StatTraq? Here&#8217;s a solution.</title>
		<link>http://skyphe.org/2006/11/19/got-problems-with-internet-explorer-7-and-stattraq-heres-a-solution/?source=rss</link>
		<comments>http://skyphe.org/2006/11/19/got-problems-with-internet-explorer-7-and-stattraq-heres-a-solution/#comments</comments>
		<pubDate>Sun, 19 Nov 2006 21:37:19 +0000</pubDate>
		<dc:creator>aesqe</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[fixes]]></category>
		<category><![CDATA[internet-explorer]]></category>
		<category><![CDATA[stattraq]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://skyphe.org/2006/11/19/got-problems-with-internet-explorer-7-and-stattraq-heres-a-solution/</guid>
		<description><![CDATA[*UPDATE: As of December 1st, when version 1.1 is released, this issue is fixed. I&#8217;ve just installed StatTraq, a popular WordPress plugin for tracking your site&#8217;s statistics. I like it and I can&#8217;t wait to see the first &#8216;real&#8217; results &#8230; <a href="http://skyphe.org/2006/11/19/got-problems-with-internet-explorer-7-and-stattraq-heres-a-solution/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>*UPDATE: As of December 1st, when version 1.1 is released, this issue is fixed.</strong></p>
<p>I&#8217;ve just installed <a href="http://thefunzone.awardspace.com/wordpress/?p=64">StatTraq</a>, a popular WordPress plugin for tracking your site&#8217;s statistics. I like it and I can&#8217;t wait to see the first &#8216;real&#8217; results after a month or so has passed.</p>
<p>But the problem is &#8211; Internet Explorer 7 just won&#8217;t load the page if you&#8217;ve got StatTraq running. I was getting a blank page and a &#8220;Internet Explorer cannot open this page&#8221; error. No code errors, no warnings, nothing, as if the site is unavailable.</p>
<p>So I searched around a bit and found <a href="http://www.averyjparker.com/2006/08/30/ie-7-incompatible-with-wordpress-blogs-using-the-stattraq-plugin/">this post by Avery J. Parker</a> with a small clue in it :) Avery wrote:</p>
<blockquote><p>&#8230;carried this error at the bottom of the page (ONLY in IE7 by the way&#8230;) &#8220;Fatal error: Call to undefined function:() in /var/www/html/radiotv/wp-content/plugins/stattraq.php on line 90&#8243;</p></blockquote>
<p>Around line 90, there&#8217;s a function for browser detection and Internet Explorer 7 wasn&#8217;t on the list. I guess IE7 didn&#8217;t like that very much, heh. Anyways, all you need to do to fix the problem is:</p>
<ol>
<li>Open &#8216;stattraq.php&#8217; file that resides in your &#8216;wp-content/plugins&#8217; folder</li>
<li>Go to line 80/81 and replace:<br />
<blockquote>
<pre>if(strpos($ua, 'MSIE 6')!==false || -->
strpos($ua, 'MSIE6')!==false)
$ver = 6;</pre>
</blockquote>
<p>with:</p>
<blockquote>
<pre>if(strpos($ua, 'MSIE 7')!==false || -->
strpos($ua, 'MSIE7')!==false)
$ver = 7;
else if(strpos($ua, 'MSIE 6')!==false || -->
strpos($ua, 'MSIE6')!==false)
$ver = 6;</pre>
</blockquote>
<p>*note: <strong><em>&#8211;></em></strong> means that this is not the end of the line, line breaks at &#8216;$ver = &#8230;&#8217;</li>
<li>Save the file and you&#8217;re done.</li>
<li>Check the page in Internet Explorer 7 and be happy if everything works :)</li>
</ol>
<p>It worked for me, but if it doesn&#8217;t do the trick for you, please leave a comment.</p>
<p>I&#8217;ve posted a comment on StatTraq&#8217;s page so this will hopefully be fixed in the next version.</p>
]]></content:encoded>
			<wfw:commentRss>http://skyphe.org/2006/11/19/got-problems-with-internet-explorer-7-and-stattraq-heres-a-solution/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Just a quick tip regarding Internet Explorer 6, CSS and underscores</title>
		<link>http://skyphe.org/2006/09/26/just-a-quick-tip-regarding-internet-explorer-6-css-and-underscores/?source=rss</link>
		<comments>http://skyphe.org/2006/09/26/just-a-quick-tip-regarding-internet-explorer-6-css-and-underscores/#comments</comments>
		<pubDate>Tue, 26 Sep 2006 15:09:11 +0000</pubDate>
		<dc:creator>aesqe</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[internet-explorer]]></category>

		<guid isPermaLink="false">http://s5158.gridserver.com/2006/10/22/just-a-quick-tip-regarding-internet-explorer-6-css-and-underscores/</guid>
		<description><![CDATA[If you ever find yourself in a situation where you have to go through your stylesheet and disable/enable selector properties one by one just to figure out which one is IE6 having a fight with, please don&#8217;t be stupid like &#8230; <a href="http://skyphe.org/2006/09/26/just-a-quick-tip-regarding-internet-explorer-6-css-and-underscores/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you ever find yourself in a situation where you have to go through your stylesheet and disable/enable selector properties one by one just to figure out which one is IE6 having a fight with, please don&#8217;t be stupid like me and don&#8217;t do it by adding an underscore (_) at the beginning of selector&#8217;s name (for example: &#8220;_clear: right;&#8221;) &#8212; to IE6 it&#8217;s all the same, &#8220;_clear&#8221; equals &#8220;clear&#8221;. Rather comment it out or delete a letter.</p>
<p>I don&#8217;t know if it applies to all selector properties, I don&#8217;t have the will to google for it right now, I&#8217;m too tired.</p>
]]></content:encoded>
			<wfw:commentRss>http://skyphe.org/2006/09/26/just-a-quick-tip-regarding-internet-explorer-6-css-and-underscores/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 370/396 objects using disk: basic

Served from: skyphe.org @ 2012-02-05 05:55:45 -->
