1 cslepage Jul 15, 2008 17:18
3 cslepage Jul 15, 2008 17:50
So perhaps a good course of action would be to load the page in a browser that works, like FF3, view the page source, and see what javascript loads when the error occurs?
The page is able to load the top of the page in IE6. Once the navigation bar is loaded (Home, etc.), the error occurs.
4 yabba Jul 15, 2008 17:53
That's where I'd be starting ;)
¥
5 cslepage Jul 15, 2008 19:59
6 cslepage Jul 15, 2008 21:21
Once I removed the Avatar plugin, everything was okay.
7 yabba Jul 16, 2008 09:39
For a laugh, crack open the avatars plugin and change this section of code ( approx 2096 ) from this :
// Include jQuery
if ( !defined('INCLUDED__JQUERY') )
{
define('INCLUDED__JQUERY', true);
?><script type="text/javascript" src="<?php echo $this->get_plugin_url(); ?>includes/common/jquery/jquery-1.2.1.pack.js"></script><?php
}
// Include jQuery Color
if ( !defined('INCLUDED__JQUERY_COLOR') )
{
define('INCLUDED__JQUERY_COLOR', true);
?><script type="text/javascript" src="<?php echo $this->get_plugin_url(); ?>includes/common/jquery/jquery.color.js"></script><?php
}
// Include jQuery Lightbox
if ( !defined('INCLUDED__JQUERYLIGHTBOX') )
{
define('INCLUDED__JQUERYLIGHTBOX', true);
?><script type="text/javascript" src="<?php echo $this->get_plugin_url(); ?>includes/common/jquerylightbox/js/jquery.lightbox.js"></script><?php
}
To this :
require_js( '#jquery#' );
require_js( $this->get_plugin_url().'includes/common/jquery/jquery.color.js' );
require_js( $this->get_plugin_url().'includes/common/jquerylightbox/js/jquery.lightbox.js' );
And seeing if that cures things ;)
¥
Last time I saw an error like that it was caused by a js conflict .... but you have waaaaaaaaay to many 3rd party scripts that I'd have to allow before I could tell you if that's what the problem is in this instance ;)
¥