Page 1 of 1

IE Problems?

PostPosted: 31 Jan 2011, 19:23
by JLesinski
I saw the announcement where it said off to work on issues with IE or something. I was just making sure that its a problem that Im not just having with the bar not showing up on IE?

Running IPB and seeing the bar on all browsers except IE

Have viewed the site on 2 different computers and also cleared the cache.

Re: IE Problems?

PostPosted: 31 Jan 2011, 20:01
by Jason
Did you upgrade to 1.0.1? Also, can I get a test login account and your site URL. We're still trying to determine what is causing this.

Re: IE Problems?

PostPosted: 01 Feb 2011, 06:33
by JLesinski

Re: IE Problems?

PostPosted: 01 Feb 2011, 14:16
by Jason
JLesinski wrote:http://www.youtube.com/watch?v=XCQWudNj1dE

BattleStrats.com

Very helpful, thank you.

Re: IE Problems?

PostPosted: 05 Feb 2011, 13:46
by SKnight
I have the same problem ... vbulletin .. works in FF not IE ... the ie debugger shows the js files loaded. Don't really want to hunt through code here.

Re: IE Problems?

PostPosted: 05 Feb 2011, 14:24
by SKnight
Found the problem. The IE check version number is returning version 6 and the external.php is exiting...

Just comment this part out in external.php:

Code: Select all
/*
// Exit if IE6
if ((strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6.') !== FALSE)) {
   exit;
}
*/


Also, if you want pages to load faster use this in the your header, it will get the jquery libraries form google code instead of locally. Many reasons why this should have been put into the instructions.

Code: Select all
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
<script type="text/javascript" src=" https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>

Re: IE Problems?

PostPosted: 05 Feb 2011, 14:50
by SKnight
Hmm, arrowchat doesn't work with the latest jquery and jquery ui ... change to this for getting the code from google.

Code: Select all
src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src=" https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>

Re: IE Problems?

PostPosted: 05 Feb 2011, 15:55
by Jason
There are a lot of reasons why you shouldn't use the Google code unless you know what you're doing, and I wouldn't suggest anything SKnight said as a fix. We'll be releasing a 1.0.3 that fixes IE and Mobile Browsers.

Topic Closed

PostPosted: 07 Nov 2012, 12:40
by Staff Bot
This thread has been locked because the last post is greater than six months old. There is a good chance that the information in this thread is outdated. Please open a new topic if you wish to discuss this further.