- Joined
- Nov 2, 2005
- Messages
- 4
To my surprise, when I attempted to access the map section over the past week, all I get is the navigation and header (Paypal link, mini-banners to other sites, etc). After searching around, I tried the following:
The only thing I haven't been able to try is changing the number of maps per page, since I haven't been able to find any setting that might do that. Oddly, every other section loads fairly quickly, even with a good number of elements on the page. Not onlyd oes the main map page not function, any maps directly linked to exihbit the exact same behavior.
If it's any help, this is the last peice of HTML code that is loaded prior to the page transfer being "complete":
It appears that the code sent is truncated prematurely, before any of the actual content is generated. Since I have used every popular browser with clean cookies and a cache; even with my firewall disabled, I doubt this problem lies on my end. If there's anything I could do to help get this problem fixed, please tell me.[/list]
- Viewing in Firefox.
- Viewing in Internet Explorer (Shudder).
- Viewing in Opera.
- Clearing cookies and cache for all 3 browsers.
- Trying again for several days later at night.
The only thing I haven't been able to try is changing the number of maps per page, since I haven't been able to find any setting that might do that. Oddly, every other section loads fairly quickly, even with a good number of elements on the page. Not onlyd oes the main map page not function, any maps directly linked to exihbit the exact same behavior.
If it's any help, this is the last peice of HTML code that is loaded prior to the page transfer being "complete":
Code:
<script language="JavaScript" type="text/javascript">
<!--
var x;
var y;
var MiniMap;
function OpenMinimap(myURL,myWidth,myHeight)
{
x=0;
y=0;
if (MiniMap)
if (MiniMap.closed == false)
{
x = eval(myWidth - MiniMap.sizeX);
y = eval(myHeight - MiniMap.sizeY);
}
MiniMap = window.open(myURL + '&t=Screenshot&sizeX=' + myWidth + '&sizeY=' + myHeight + '&x=' + x + '&y=' + y,'Screenshot','width=' + myWidth + ',height=' + myHeight + ',left=0,top=0');
}
//-->
</script>
It appears that the code sent is truncated prematurely, before any of the actual content is generated. Since I have used every popular browser with clean cookies and a cache; even with my firewall disabled, I doubt this problem lies on my end. If there's anything I could do to help get this problem fixed, please tell me.[/list]