Hi !
Since the begining i'm using the trick from "Pascal" found in this topic:
http://www.asprunner.com/forums/topic/18919-performance-issue-with-version-6/pageviewfindpostp64020s82289606ec3cf3c4fc7f3bac4d452bc0
So replacing the defaut :
<META content=IE=7 http-equiv=X-UA-Compatible>
with
<meta http-equiv="X-UA-Compatible" content="chrome=1">
is working well in my company (we are still with Windows XP SP3 + IE8). I added the Chrome frame plugin to all PC. We can't use anything else than IE8 because our ERP needs IE and nothing else...
IE8 is the latest version you can use with win XP.
The problem i'm having:
If i don't touch the layout in the visual editor, the modification is in the output code.
If i touch something in the visual editor, ie: i add some text somewhere in the ADD page. The modification is altered in the output code like this:
<META content=chrome=1 http-equiv=X-UA-Compatible>
and the Google Chrome Frame plugin is not loaded and i don't know why....but the result is that the page is rendered slowly because it uses IE to render the page.
Additionaly, the textarea using Basic Rich Text Editor, is just not working (when using IE8). when i type something in the textarea it doesn't show anything, also i can't see the cursor. i have to click in the "view source" twice to see what i wrote.
I don't see this problem with Firefox and Chrome.
I read that someone else had this problem in the forum, he just stopped using the Basic RTE to bypass the problem, that's not a solution to me...
Thanks for helping.
PS:
i'm with phprunner 6.1
This is the <HEAD> of a page loading correctly the Chrome frame plugin (where i didn't touched the layout in Visual editor):
<head>
<title>Gestion SAV</title>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link REL="stylesheet" href="styles/default.css" type="text/css">
<link REL="stylesheet" href="styles/PurificBlue_white/style.css" type="text/css">
<link REL="stylesheet" href="pagestyles/list6.css" type="text/css">
<!--[if IE]>
<link REL="stylesheet" href="styles/defaultIE.css" type="text/css">
<link REL="stylesheet" href="styles/PurificBlue_white/styleIE.css" type="text/css">
<link REL="stylesheet" href="pagestyles/list6IE.css" type="text/css">
<![endif]-->
</head>
And this is the <HEAD> of a page when i add some characters in the page, using the visual editor, so the Chrome plugin is not loaded:
<HEAD>
<TITLE>Gestion SAV</TITLE>
<META content=chrome=1 http-equiv=X-UA-Compatible>
<META content="text/html; charset=utf-8" http-equiv=Content-Type>
<LINK rel=stylesheet type=text/css href="styles/default.css">
<LINK rel=stylesheet type=text/css href="styles/PurificBlue_white/style.css">
<LINK rel=stylesheet type=text/css href="pagestyles/add2.css">
<!--[if IE]>
<LINK rel=stylesheet type=text/css href="styles/defaultIE.css">
<LINK rel=stylesheet type=text/css href="styles/PurificBlue_white/styleIE.css"><
LINK rel=stylesheet type=text/css href="pagestyles/add2IE.css">
<![endif]-->
<META name=GENERATOR content="MSHTML 8.00.6001.19298">
</HEAD>