Page 1 of 1

GuMaxDD 1.4 - problem on IE8

Posted: February 7th, 2011, 8:54 am
by joschi
Hi Paul,
i have upgraded on my system from version 1.2 to 1.4 and on IE8 i have this error:

Code: Select all

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; Unifix SWG S.r.l.)
Timestamp: Mon, 7 Feb 2011 12:45:10 UTC


Message: 'jQuery.fn' is null or not an object
Line: 5
Char: 1
Code: 0
URI: http://osiris/skins/gumaxdd/scripts/jquery.droppy.js?270


Message: Object doesn't support this property or method
Line: 86
Char: 2
Code: 0
URI: http://osiris/index.php/Hauptseite
The menus does'nt work.

On Firefox everything works fine.


Best regards
Jochen

Re: GuMaxDD 1.4 - problem on IE8

Posted: February 15th, 2011, 6:25 pm
by Paul
The jQuery didn't get loaded....


can you try this:

Open file GuMaxDD.php and find:

Code: Select all

    <!--[if lt IE 7]><script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/scripts/jquery-1.4.2.min.js?<?php echo $GLOBALS['wgStyleVersion'] ?>"></script>
		<meta http-equiv="imagetoolbar" content="no" /><![endif]-->
and change it to:

Code: Select all

    <!--[if lt IE 8]><script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/scripts/jquery-1.4.2.min.js?<?php echo $GLOBALS['wgStyleVersion'] ?>"></script>
		<meta http-equiv="imagetoolbar" content="no" /><![endif]-->
I cannot test it since I don't have IE 8.

Re: GuMaxDD 1.4 - problem on IE8

Posted: February 28th, 2011, 10:54 am
by joschi
Hi Paul,

i tried to change the php-file, but the error is still there. Have you any other idea?

Best regards Jochen

Re: GuMaxDD 1.4 - problem on IE8

Posted: February 28th, 2011, 11:10 pm
by Paul
How about this:

Code: Select all

<!--[if IE]><script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/scripts/jquery-1.4.2.min.js?<?php echo $GLOBALS['wgStyleVersion'] ?>"></script>
      <meta http-equiv="imagetoolbar" content="no" /><![endif]-->

Re: GuMaxDD 1.4 - problem on IE8

Posted: March 7th, 2011, 10:45 am
by joschi
Hi Paul,

thank you. This works.

Regards Jochen