BAK & IE7

Post general kiteboarding discussion topics here!
User avatar
kitecrazy
Regular
Regular
Posts:435
Joined:Sun Mar 25, 2007 3:46 pm
Location:Livermore
Contact:
Re: BAK & IE7

Post by kitecrazy » Wed Aug 05, 2009 6:24 am

I think you got lucky...mine still experiences the same operation aborted error.

User avatar
OliverG
Old School
Old School
Posts:5326
Joined:Sat Feb 07, 2004 5:03 pm
Location:Oakland, CA
Contact:

Re: BAK & IE7

Post by OliverG » Wed Aug 05, 2009 7:11 am

kitecrazy wrote:I think you got lucky...mine still experiences the same operation aborted error.
What OS and IE version (exact version)

User avatar
kitecrazy
Regular
Regular
Posts:435
Joined:Sun Mar 25, 2007 3:46 pm
Location:Livermore
Contact:

Re: BAK & IE7

Post by kitecrazy » Wed Aug 05, 2009 8:46 am

I'll have an answer for my home computers this afternoon.

As far as my work computer which still operation aborts...
IE version: 7.0.5730.13
Cipher Strength: 128-bit
Product ID: 76588-652-6335585-50525
Update Versions: 0
OS name: Microsoft Windows XP Professional x64 Edition
Version: 5.2.3790 Service Pack 2 Build 3790

Its a Xeon 5160 w/ 20gb of memory...the little bastard should handle anything I throw at it. I can provide you the .nfo file for my systems which should give you everything you may want to know.

Windeavor
Joey
Joey
Posts:3
Joined:Wed Aug 05, 2009 6:35 pm
Location:Discovery Bay, CA
Contact:

Re: BAK & IE7

Post by Windeavor » Thu Aug 06, 2009 10:17 am

Just tried it from one of my machines running IE7 7.0.5730.13 and XP 32bit and it is working. Wasn't the last time I tried it so ok on this IE7.

Windeavor
Joey
Joey
Posts:3
Joined:Wed Aug 05, 2009 6:35 pm
Location:Discovery Bay, CA
Contact:

Re: BAK & IE7

Post by Windeavor » Thu Aug 06, 2009 1:25 pm

Have to take that back.
Web site is failing again on IE 7 saying IE cannot open the Internet site...
Operation aborted. Works fine on other pc with IE8.

User avatar
moe_howard
Joey
Joey
Posts:4
Joined:Fri Jul 17, 2009 12:52 pm
Contact:

Re: BAK & IE7

Post by moe_howard » Mon Aug 10, 2009 5:21 pm

Ok, At work I always get Operation Aborted.

While in debug mode, the offending line of code is located at the following path:

File: https://www.bayareakiteboarding.com/med ... ootools.js[/b]
Line: 49
Column: 313
Error Message: "!this.$events[...].keys is null or not an object"

Offending Code:

Code: Select all

if(this.$events[type]){this.$events[type].keys.each(function(fn){this.removeEvent(type,fn);},this);this.$events[type]=null;}
Unobfuscated Code:

Code: Select all

if(this.$events[type])
{
   this.$events[type].keys.each(function(fn)
                                           {
                                              this.removeEvent(type,fn);
                                            },this);
    this.$events[type]=null;
}
Recommended updated Code:

Code: Select all

if(this.$events[type])
{
   //Ensure we have keys
   if(this.$events[type].keys != null)   //<== NEW CODE
   {
     this.$events[type].keys.each(function(fn)
                                           {
                                              this.removeEvent(type,fn);
                                            },this);
      this.$events[type]=null;
   }
}
Even this code update may not be enough, as fixing this issue may uncover more issues.

Good Luck.

User avatar
OliverG
Old School
Old School
Posts:5326
Joined:Sat Feb 07, 2004 5:03 pm
Location:Oakland, CA
Contact:

Re: BAK & IE7

Post by OliverG » Mon Aug 10, 2009 6:39 pm

I have had a hunch that's it been the mootools.js

Will try to update/modify soon. The difficult part for me is my PC has never given the error running IE7, so all I have to go on is your feedback so far, so I do appreciate that.

Thanks guys!

Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 14 guests