frommessage
still-waiting
1003 days ago
I have uploaded sproutliner to my server for my private use and have made all of the necessary modification mentioned in the "installing" thread. Opening x.php now produces no errors. All links have been corrected in all files for my layout. The only javascript error I am receiving in my js console is "ActiveXObject is not defined" ../sproutliner.js Line: 121. Which looks like this
if (typeof XMLHttpRequest != "object") {
function XMLHttpRequest() {
return new ActiveXObject("Microsoft.XMLHTTP");
}
}

So close to having this going, a little help would really be appreciated.

still-waiting
Trajan
974 days ago
make sure that you redefine the "../sproutliner.js" to its correct state which should be ./sproutliner.js" if the files are loaded correctly on the server.
apocalypse
749 days ago
All my files are okay, I've tryed to clear all the / before file links, so it's working well on a subfolder, besides my root folder.

I've got the same error listed bellow, but don't know how to fix't it work nice in IE 6.0 but don't work in firefox 2.0 or opera 9.0...

Could anybody help-me??
apocalypse
746 days ago
I've fixed the problem doing the same that webman wrote at: http://forums.glenmurphy.com/7/183

webman:
Here is what I did for it to work.

At about line 119 of sprouteliner.js I had this (After DATA TRANSFER comment, before xmlobj() function):

if (typeof XMLHttpRequest != "object") {
function XMLHttpRequest() {
return new ActiveXObject("Microsoft.XMLHTTP");
}
}

I commented it out and added in its place the JS code from the online version:

if (document.all && !document.opera) {
function XMLHttpRequest() {
return new ActiveXObject("Microsoft.XMLHTTP");
}
}

Hope it helps.

me: It work fine for me, hope this can help you too.

 

You must be logged in to post. You may create an account by typing your desired username and password into the login area to the left.