Closed (fixed)
Project:
DataBase File Manager
Version:
5.x-4.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Nov 2008 at 19:05 UTC
Updated:
28 Jan 2011 at 08:18 UTC
DBFM does not work for me in IE 6. I get a script error "XMLHttpRequest is undefined". I am not sure how to go about debugging this. Does anyone have any suggestions?
Thanks,
Jed
Comments
Comment #1
geoff_eagles commentedYou'll have to be a little more specific if you need things fixed.
I get a script error "XMLHttpRequest is undefined" ???
When do you get this error? Does dbFM display at all?
A little more information and I might be able to help.
As for debugging in IE6, your first step is to go to tools/internet options and select the advanced tab. Make sure you DON'T have the disable script debugging options checked and check the notifications for script errors.
Comment #2
rooey commentedIE 6 is unsupported - but it might work in the latest version.
Comment #3
geoff_eagles commentedInsufficient information from user
Comment #4
rajaks13 commentedUse ActiveXObject("Microsoft.XMLHTTP"); in place of XMLHttpRequest();
Since IE5 and IE6 do not support XMLHttpRequest you can use the above. However it would be more easy to come to a solution if you post the piece of code where you have called XMLHttpRequest.
Regards
AKS
Comment #5
pahans commentedreplacing
"var xmlHttp = new XMLHttpRequest();"
line with following code lines worked for me.
"
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlHttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
"