Not sure if this is the right place for this
I have searched High and low.
My Site is: http://www.EastCoastToolsMA.com
I am using Zen-Cart 1.3.8a
This error was just pointed out to me... I am not sure how long it has been appearing.
I have several add-Ons installed.
google analytics
sitemap xml
Fast and Easy Checkout
Google Base Feeder
Easy populate
and google checkout
The exact error is:
This webpage contains errors that might prevent it for displaying or working correctly. Do you want to debug?
Line: 24
Error: Access is denied.
I click yes to debug and here is the code that generates the error:
function getFile(pURL) {
if (window.XMLHttpRequest) { // code for Mozilla, Safari, etc
xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET", pURL, true); // leave true for Gecko<--------------- This is the line that generates the error.
xmlhttp.send(null);
} else if (window.ActiveXObject) { //IE
xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
if (xmlhttp) {
xmlhttp.open('GET', pURL, false);
xmlhttp.send();
}
}
}
I did a search in Zen-Cart's Developer's Tool kit, and the only file that has this line is:
/includes/templates/[my template]/jscript/jscript_check.php
My site is http://www.EastCoastToolsMA.com
Please Help...
Thank you.



