I have run into some troubles viewing the chat on the new Internet Explorer 8. the worst problem was the chat flooding the area outside the chat frame.

the right coloumn that lists names of people in the room appears at the bottom of the screen - over where you enter the text - makes it impossible to join in the converations.

Comments

permutations’s picture

Category: bug » support
Status: Active » Closed (fixed)

That's an issue with your theme, not the chat. I'm running IE8 and have no problems with the chat.

kosmixal’s picture

You will have to turn compability node on for ie8. I don't know how to fix this for ie8 without compability on.

Hope that helps.

l33roy’s picture

the same issue here. Its not theme problem. I have this error message:

Message: Object does not support this property or method
String: 403
Symbol: 3
Code: 0
URI-code: http://whole-sale.ru/sites/default/files/js/js_024bc6a956a52a8a23a65838d...

I cant view this js file...

awolfey’s picture

This can be fixed by forcing compatibility mode.

Put this at the top of the head section of the page template you use for PFC.

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
awolfey’s picture

l33roy, your issue looks related to jquery / prototype incompatibility.

Zorath’s picture

If im not misstaken this is the main issue, className wont work in IE 8.
The following snippet is used alot, for example in pfcgui.js - function getOnlineContentFromTabId.

var className = (! is_ie) ? 'class' : 'className';

If you set up a variable is_ie8:

var is_ie8    = navigator.userAgent.indexOf('MSIE 8') > 0;

and then change to above code to:

var className = (! is_ie) ? 'class' : 'className';
className = (is_ie8) ? 'class' : className;

That fixed the issue for me atleast