Quote:
Originally Posted by steelerwatch
Nope. I said I did ALL the recommended fixes. Setting the xml file permissions was one of the things I did.
|
Very strange. Did you change items in the code? I cannot reproduce the error you are getting. Please download the latest version on the server and do a clean install (set OVERWRITE to yes in plugin). That kind of error can happen with special characters too but I should have captured them all. I don't see any unhandeld special char in your xml.
Did you change any data in the database directly because the lng and lat seems way of.
Advice:
1. Install the latest version
2. delete all entries in the googlemap table
http://www.steelernation.com/forums/markers.xml
Code:
var request = GXmlHttp.create();
request.open("GET", "markers.xml", true);
request.onreadystatechange = function() {
if (request.readyState == 4) {
var xmlDoc = request.responseXML;
markers = xmlDoc.documentElement.getElementsByTagName("marker"); // THIS LINE IS IN ERROR
window.setTimeout(mapOne,timeOut);
document.getElementById('nb').value=markers.length;
} else {
//alert(request.readyState);
}
}
request.send(null);