admin管理员组

文章数量:1417577

I have created a shopping cart site, and i have got two plains for the same issue, but i am not able to track the main problem... They say they get the message "operation aborted, Internet explorer can't open the page" whenever they navigate to any page, and clicking "OK" displays "page cannot be displayed".

Could someone help me out? what could be the reason behind this..

Getting this problem in IE-6,7.

EDIT

I was never reported by this error before. but now I am getting this error very frequently, My site is live and happening, Its an osCommerce Site and i dont know where to make workaround changes in the site?

I have created a shopping cart site, and i have got two plains for the same issue, but i am not able to track the main problem... They say they get the message "operation aborted, Internet explorer can't open the page" whenever they navigate to any page, and clicking "OK" displays "page cannot be displayed".

Could someone help me out? what could be the reason behind this..

Getting this problem in IE-6,7.

EDIT

I was never reported by this error before. but now I am getting this error very frequently, My site is live and happening, Its an osCommerce Site and i dont know where to make workaround changes in the site?

Share Improve this question edited Sep 5, 2016 at 14:06 ivan_pozdeev 36.2k19 gold badges114 silver badges162 bronze badges asked Jun 15, 2010 at 5:04 OM The EternityOM The Eternity 16.2k44 gold badges125 silver badges187 bronze badges 1
  • Sounds like a timeout... – bschaeffer Commented Jun 15, 2010 at 5:08
Add a ment  | 

3 Answers 3

Reset to default 5

Are you trying to modify the DOM before the page has fully loaded?

I've encounted this problem before. It's caused by javascript. Your writing something into the DOM before the DOM has finished loading.

For example you might have something like:

<script>document.write('hello world');</script>

When it should be like

<script>
window.onload = function() {
  document.getElementById('test').innerHTML = 'hello world'; 
}  
</script>

I've run into this a few times.

First time it had to do with manipulating elements before they were closed (as others have mentioned.)

Second time the server had images in a directory that wasn't readable by "everyone" so we had to change the permissions.

本文标签: