Thoughts inspiring. Inspiring thoughts

IE8
IE8 is officially delayed with another public update in the first quarter of 2009 and that is to be followed with the actual release.
Yes, it will be a few more months of relief for some webmaster to get their sites up to par to IE8. On the flip side, it means that darn IE6 gets to hang around for a few more months.
I had my fair share of IE8 rendering issue and had decided to go for method to enable Apache server wide header to enforce IE7 rendering mode in IE8.
Microsoft did provide a series of literature for reference to configure Apache to ensure IE7 rendering mode in IE8. And are listed below:
In short, for server wide (or site wide) header implementation, Apache have to be configured to use the headers module or mod_headers.
I did 2 sets of configuration depending on the Apache server that you have because the configuration given in point 3 above does not work for one of my setup.
Under Apache 2.2, which should comes with most recent linux distribution, do the following:
<IfModule headers_module>
Header set X-UA-Compatible: “IE=EmulateIE7″
</IfModule>
From my experience, if the above does not work, or the apache version is 2.0, enable the header via the httpd.conf file and add the following configuration statements:
<IfModule mod_headers.c>
Header set X-UA-Compatible: “IE=EmulateIE7″
</IfModule>
This above configuration should work for Apache version 1.3 as well.
ThinkingNectar talks about the interest of Chin Yong, a PHP/Python/Web developer residing in Singapore. Life, society, and codes should entails most of what goes between the ears of this coffee drinker.
What makes you think?
Love Growth Cash Triangle: A Look at Work | ThinkingNectar
November 25th, 2008 at 7:32 am
[...] Love Growth Cash Triangle: A Look at Work 25Nov2008 Filed under: Geek, Interesting, Theories Author: Chin Yong Previous Post: Apache HTTPD Configuration for IE7 Rendering Mode for IE8 [...]
fmars
May 18th, 2009 at 8:43 am
Works perfectly in apache 1.3 thanks.
Gladys
January 21st, 2010 at 4:30 pm
hmmm, I add these lines to my apache, but seem my IE8 is still having problem with displaying my website.
Gladys
January 21st, 2010 at 4:30 pm
I think it should work, let me try again.