Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Operation Aborted popup error on all product pages

Operation Aborted popup error on all product pages

Locked

Views: 1,711

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
4 Apr 2009, 4:52 AM
#1
ejeffay avatar

ejeffay

New Zenner

Join Date:
May 2005
Posts:
60
Plugin Contributions:
0

Operation Aborted popup error on all product pages

Currently using Zen Cart 1.3.7
I have hoverbox addon
i am using the red_passion template
this problem occurred right after installing a flash header on my site www. l j s e w i n g .com

any product that i try to view it gives me the "operation aborted" pop up and leads to a page that IE cant display.
I've read other posts in regards to this but none really have a fix for this problem. Not only that but they dont really know 100% if it's the flash that's causing the problem.

I've used this method in my tpl_header to use the flash

<center>
   <script type="text/javascript" src="includes/templates/red_passion/jscript/swfobject.js"></script>
 <div id="flashcontent">
   <center>
   <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
     codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
     id="simple-flash-header" width="822" height="231">
     <param name="movie" value="simple-flash-header.swf">
     <param name="quality" value="high">
     <param name="bgcolor" value="#FFCCCC">
     <embed name="simple-flash-header" src="simple-flash-header.swf" quality="high" bgcolor="#FFCCCC"
       width="822" height="231"
       type="application/x-shockwave-flash"
       pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
     </embed>
   </object>
</center>

OH i've also been thru FAQ :P
any advice?

4 Apr 2009, 3:07 PM
#2
tony_sar avatar

tony_sar

Totally Zenned

Join Date:
Jul 2006
Location:
Montreal, Canada
Posts:
2,276
Plugin Contributions:
0

Re: Operation Aborted popup error on all product pages

what im stating here might not be the solution .. so ,

swfobject.js is being loaded in body .. it should be loaded in head.

hoverbox3.js is being loaded last , perhaps it should be loaded first .. as it manipulates DOM .. this error due to DOM manipulation before page finish loading .. effecting IE .. so changing the orders at which they load first might help ..there is work around this for both mootool and jquery framwork . don't know anything about hoverbox framework , so google the error and see what comes up .

try FAQ :P again , and look for information on how to load javascript using zc auto load ..
files are loaded alphabetically so you can name them that way to have them load in order.

hope this helps.

4 Apr 2009, 10:23 PM
#3
ejeffay avatar

ejeffay

New Zenner

Join Date:
May 2005
Posts:
60
Plugin Contributions:
0

Re: Operation Aborted popup error on all product pages

Thanks, i'm going to take a look in the FAQ again regarding how to load jscripts with zc autoload.
I'm not too familiar with the mootool and jquery framework. I'm not familiar with DOM either :(.
But i do appreciate the help. Just tested something to make sure: disabled hoverbox in admin and everything is 100% on the website. I'm thinking there may be another way for me to place the flash on the site without it clashing with hoverbox.

5 Apr 2009, 5:55 AM
#4
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Operation Aborted popup error on all product pages

i happened to work on this just a few days ago. You dont need a whole jquery library just for this, you can use:
http://code.google.com/p/domready/

What you want to do is this:
DomReady.ready(function() {
// the code of the hover box should go here
});
Anyhow, you gotta contact the person who made the hoverbox for help with this. I notice many jscript modules written for zen has this same problem. The old version of lightbox(not sure about new one) and fual slimbox also have this problem.

5 Apr 2009, 9:59 PM
#5
ejeffay avatar

ejeffay

New Zenner

Join Date:
May 2005
Posts:
60
Plugin Contributions:
0

Re: Operation Aborted popup error on all product pages

hmmm so i'm supposed to take that and wrap it around the hoverbox coding? Alright i'll give it a try, im currently at work right now though. Thanks for the suggestion!

5 Apr 2009, 10:08 PM
#6
ejeffay avatar

ejeffay

New Zenner

Join Date:
May 2005
Posts:
60
Plugin Contributions:
0

Re: Operation Aborted popup error on all product pages

Sorry you'll have to excuse me, but I'm not quite certain as to which file i should be looking in to find the hoverbox coding. The installation of hoverbox didn't require me to add any coding to any of the zencart default files, however, it does add its own "tpl_modules_main_product_image.php" file but it isn't located in the 'common' folder
instead its located in includes/templates/<my template>/templates. Also there are 2jscript files that are placed in the jscript folder in <my template> (red_passion) folder along with another php - ic_hoverbox_config.php

If i could get a hint as to which one im to look in that'd be appreciated.