MyBB Community Forums

Full Version: Out of memory at line 1046, only occuring in Internet Explorer.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am recieving this error when I visit my forum using Internet Explorer, all the other borwsers work and this error is not because of my computer and I know that because I tested it on other computers as well:

[Image: untitlkok.png]
URL??
www.monetizerforums.net is the url of my forum, sorry for the delay.
I'd start with the MyDock plugin, this is in your source code three times:

<!-- MyDock Plugin Starts -->
		<style>
			.mydock {position:absolute; left:50%; top:60px; z-index:1; margin-left:400px; padding:0px; border:0px;}
		</style>
<script language="JavaScript1.3" src="inc/mydock/js/euDock.2.0.js"></script>
<script language="JavaScript1.3" src="inc/mydock/js/euDock.Image.js"></script>
<div class="mydock"><table id='tableAlign' cellspacing=5>
<tr><td id='cellAlign'>
</td></tr>
</table></div>
<script>
   euEnv.imageBasePath="js/";
   var dock_my = new euDock();   
      dock_my.setAnimation(euMOUSE,0.5);
   dock_my.setObjectAlign('tableAlign',euLEFT,130,euHORIZONTAL);   
   /*dock_my.setBar({left:{euImage:{image:"inc/mydock/barImages/dockBg-l.png"}},horizontal:{euImage:{inc/image:"inc/mydock/barImages/dockBg-c-o.gif"}},right:{euImage:{image:"inc/mydock/barImages/dockBg-r.png"}}});   */
   dock_my.setIconsOffset(0);
</script>
<!-- MyDock Plugin Ends -->

IE probably isn't going to like having to include these 3 times, considering one of them is quite big.
(2010-09-15, 12:37 PM)MattRogowski Wrote: [ -> ]I'd start with the MyDock plugin, this is in your source code three times:

<!-- MyDock Plugin Starts -->
		<style>
			.mydock {position:absolute; left:50%; top:60px; z-index:1; margin-left:400px; padding:0px; border:0px;}
		</style>
<script language="JavaScript1.3" src="inc/mydock/js/euDock.2.0.js"></script>
<script language="JavaScript1.3" src="inc/mydock/js/euDock.Image.js"></script>
<div class="mydock"><table id='tableAlign' cellspacing=5>
<tr><td id='cellAlign'>
</td></tr>
</table></div>
<script>
   euEnv.imageBasePath="js/";
   var dock_my = new euDock();   
      dock_my.setAnimation(euMOUSE,0.5);
   dock_my.setObjectAlign('tableAlign',euLEFT,130,euHORIZONTAL);   
   /*dock_my.setBar({left:{euImage:{image:"inc/mydock/barImages/dockBg-l.png"}},horizontal:{euImage:{inc/image:"inc/mydock/barImages/dockBg-c-o.gif"}},right:{euImage:{image:"inc/mydock/barImages/dockBg-r.png"}}});   */
   dock_my.setIconsOffset(0);
</script>
<!-- MyDock Plugin Ends -->

IE probably isn't going to like having to include these 3 times, considering one of them is quite big.

Ok, I will remove that plugin because I do not even use it.

Error fixed, thanks matt!!