Forum Moderators: open

Message Too Old, No Replies

Site reloads continuingly in IE

without any refresh meta tags..

         

AcsCh

3:47 pm on Sep 13, 2005 (gmt 0)

10+ Year Member



A site of ours is reloading continously without aparent reason, only in IE. (every 2 sec. about) It's a form from a CMS. In Opera no problems at all.

Anybody experienced something similar? Might be a Virus? It's only affecting one domain, and only if there is a form on the page.
Any ideas highly apreciated!

Thanks

DanA

4:38 pm on Sep 13, 2005 (gmt 0)

10+ Year Member



Same observation on one server. Much more than 2 reloads a second but only the home page is reloaded whatever the visitor is viewing.

oddsod

4:41 pm on Sep 13, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Certain js cause that side effect. Try commenting out ALL the javascript on that page and see if it still refreshes.

tophat

4:43 pm on Sep 13, 2005 (gmt 0)

10+ Year Member



I am also experiencing the same problem with my site strangely when trying to do a e404 redirect. My e404 is now reloading more than 60 times a minute but not doing the redirect. I have a simple line in the header of the e404 page as follows:
<META HTTP-EQUIV="refresh" content="0;URL=mysite">
I was reading somewhere that the refresh tag causes problems sometimes. I would appreciate any advice on either how to enhance it or use any other possible simple code for a e404 redirect.

tophat

4:08 am on Sep 14, 2005 (gmt 0)

10+ Year Member



I managed to sort out the problem for my e404 page by using the following javascript:
<script type="text/javascript">
<!--
function E404(){window.setTimeout("location.href = 'mysite' + '?404=' + location.href", 0)}
// -->
</script>