Invisionpower Forum Software IE11 Fix

elbmek

New Member
Pro User
Messages
1,024
Location
Sutton Coldfield
If any of you have this software running your forum - there is a glitch with IE11 which will be solved by a patch but in the meantime if you go to your admin panel and find the skin management under look and feel; open the skin edit and manage template & CSS; global template, global template and you will see a line underneath this one:

<title>{$header_items['title']}</title>

Replace the following code

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

With this code below (you can cut and paste)

<php>
$ie11fix = "edge";
if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7') !== false)) $ie11fix = "EmulateIE10";
</php>
<meta http-equiv="X-UA-Compatible" content="IE={$ie11fix}" />

Then save, clear your browser cache, and you should be set.

This fixes the forum to suit IE11 and you can type and paste as normal. If this helps one person - job done. I have no idea if this will work in other forums though? Maybe the text is the same in most?
 

My Computer

System One

  • OS
    Win 10
    Computer type
    PC/Desktop
    System Manufacturer/Model
    pc specialist made to order
    CPU
    Intel® Core™i7 Quad Core Processor i7-4790 (3.6GHz) 8MB Cache
    Motherboard
    ASUS® H81M-PLUS: Micro-ATX, LG1150, USB 3.0, SATA 6GBs
    Memory
    16GB KINGSTON DUAL-DDR3 1600MHz (2 x 8GB)
    Graphics Card(s)
    2GB NVIDIA GEFORCE GTX 750 Ti - DVI, mHDMI, VGA - 3D Vision Ready
    Sound Card
    ONBOARD 6 CHANNEL (5.1) HIGH DEF AUDIO (AS STANDARD)
    Monitor(s) Displays
    iiyama 24 inch flat screen
    Screen Resolution
    1920 x 1080
    Hard Drives
    1TB 3.5" SEAGATE SSHD, SATA 6Gb/s 7200 RPM (64MB + 8GB SSD CACHE)

    2TB Seagate SATA HDD

    500Gb SATA docked
    Case
    In Win Turbo
    Cooling
    Super Quiet 22dBA Triple Copper Heatpipe Intel CPU Cooler
    Keyboard
    microsoft mutlimedia keyboard
    Mouse
    logitech corded
    Internet Speed
    152mb
    Browser
    FF, IE11
    Antivirus
    AVG Internet Security 2015
    Other Info
    16x BLU-RAY WRITER DRIVE, 16x DVD ±R/±RW

    10/100/1000 GIGABIT LAN PORT
Back
Top