View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001018 | OXID eShop (all versions) | 4.07. Source code, Test | public | 2009-06-16 09:19 | 2012-12-10 13:45 |
Reporter | simply because | Assigned To | |||
Priority | high | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.1.2 revision 18998 | ||||
Fixed in Version | 4.2.0 revision 23610 | ||||
Summary | 0001018: Security Warning in Internet Explorer 6 | ||||
Description | Using the Internet Explorer 6 and changing from non-SSL to SSL during the order process will show the security warning of IE 6. The reason is this code in the _footer.tpl <!--[if lt IE 7]><script type="text/javascript">oxid.popup.addShim();</script><![endif]--> | ||||
Tags | No tags attached. | ||||
Theme | |||||
Browser | Internet Explorer 6.x or older | ||||
PHP Version | 5.2.6 | ||||
Database Version | 5.0.33 | ||||
|
is valid SSL certificate used ? |
|
Reminder sent to: simply because is valid SSL certificate used ? |
|
Sorry, did not receive your first message. It's a "thawte SSL123 Certificat". Just check it under high-feelings.de |
|
Reminder sent to: simply because Your ssl certificate is ok. The warning message was not about bad ssl, but about mixed content. I finaly found the problem. It is in the function addShim(), it inserts iframe to fix one ie6 problem, but causes another one (http://support.microsoft.com/default.aspx?scid=kb;en-us;261188) |
|
fixed IE6 SSL mixed content warning (MS Q261188). Fix in file /out/basic/src/oxid.js add "src" attribute with value "javascript:false;" to added iframe in function "addShim" (used only for IE6) before: addShim : function(){ var _mk = document.getElementById('mask'); if(_mk) {_mk.appendChild(document.createElement('iframe'));} }, after: addShim : function(){ var _fr, _mk = document.getElementById('mask'); if(_mk) { _fr = document.createElement('iframe'); _fr.setAttribute('src','javascript:false;'); //MS Q261188 _mk.appendChild(_fr); } }, |