https://bugzilla.wikimedia.org/show_bug.cgi?id=47506

wikime...@sogetthis.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |wikime...@sogetthis.com

--- Comment #15 from wikime...@sogetthis.com ---
If you are hosting MediaWiki as an Intranet site, IE will always force sites in
the 'Intranet Zone' to compatibility mode.

To tell IE not to treat MediaWiki in compat mode, you need to add either the
<meta http-equiv="X-UA-Compatible" content="IE=10" /> tag to the HTML content,
or the "X-UA-Compatible: IE=10" HTTP header.

If you are hosting on IIS, you can modify your web.config file to add the
custom HTTP header like so:

<system.webServer>
  <configuration>
    <httpProtocol>
      <customHeaders>
        <clear />
        <add name="X-UA-Compatible" value="IE=10" />
      </customHeaders>
    </httpProtocol>
  </system.webServer>
</configuration>

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to