Jump to content

[SOLVED] Error message: "The local copy of this webpage is out of date..."


immotaylor

Recommended Posts

Hi guys,

 

I have a PHP / MySQL Google map at http://www.geoblender.com/new1.php and when I ask it to run a query with a lot of results I get an error message: "The local copy of this webpage is out of date, and the website requires that you download it again."

 

The database uses mock data to show records for homicides in a city. If I select ALL from the dropdown menu for "Motive," it is supposed to return about 250 records. Instead, I get the error message listed above. This happens when using IE7, but not when using Firefox.

 

Does anyone have any suggestions on how I might fix this problem - other than telling people not to use IE7?

 

Thanks!

 

 

Are you using Ajax on this?

 

Because IE7 went back to a native object, a Change from IE6 where it used activex

 

    if (isIE)

{

if (window.XMLHttpRequest)

{

          // If IE7, Mozilla, Safari, etc: Use native object

          xhttp2 = new XMLHttpRequest()

}

else

{

if (window.ActiveXObject)

{

          // ...otherwise, use the ActiveX control for IE5.x and IE6

          xhttp2 = new ActiveXObject("Msxml2.XMLHTTP");

    }

    }

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.