PDA

View Full Version : IE could not open internet site. Connection Aborted :(


arauf
09-27-2008, 02:46 AM
Hi ,
i am getting this error on my forums

Internet Explorer Could Not Open this site.

Connection Aborted.

while on firefox its running smoothly no errors. this error only comming in internet explorer.
can anyone help me to solve this :( ?

Thanks in Advance.

Lynne
09-27-2008, 04:10 AM
See this thread - using IE and FF (https://vborg.vbsupport.ru/showthread.php?t=191866)

Dismounted
09-27-2008, 04:37 AM
IE is extremely picky about JavaScript errors - something that might parse OK in FF may throw a nasty error in IE.

ATVTorture
10-06-2008, 03:55 PM
arauf, we also had this problem on our site. Here's what we found:

We noticed that the only users having this issue were ones that had their editor set at anything other than the basic editor.

We were running vbportal and a theme from extremepixels. Over at vbportal, Nitro created a modifiued version of the theme from extrmepixels so show the portal blocks. When we turned his theme off, the error went away. So, obviously we started thinking there was a problem with his theme.

However, we started trying to find what in his theme could be the culpritt. What we found was it was something in that theme, but not something he had put in it. WE had added lightbox javascripts to it that were causing IE to blow up. We had disabled the default vb lightbox b/c it's so incredibly hideous, and then implemented the huddletogether lightbox. BTW, the huddletogether lightbox works fine on every other theme we have. Just not this one for some reason.

Anyway, once we commented out the lightbox stuff from the header, the error went away. So, for now we're back to the crappy vb lightbox, but at least it functions.

Buster

ssslippy
10-07-2008, 11:49 PM
The trick to usually avoiding alot of these issues is to putting the defer command into the javascript call. These javascript calls tend to happen if the javascript is used before the page is finished loading.

ATVTorture
10-07-2008, 11:56 PM
How doi you use the defer command.

ssslippy
10-09-2008, 01:45 AM
add into the javascript call

defer="defer"

ATVTorture
10-09-2008, 02:33 AM
Into every javascript we're running?

When you say into the JS call, do you mean like this:

<script language="JavaScript" src="myjsfile.js" defer="defer">

Thanks!
Buster

Dismounted
10-09-2008, 02:40 AM
Yes, like that. But still, it's best to actually fix the actual error.