Closed (fixed)
Project:
Web File Manager
Version:
6.x-2.9-alpha2
Component:
User interface
Priority:
Critical
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
29 Apr 2008 at 15:54 UTC
Updated:
29 Oct 2008 at 13:11 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
andremolnar commentedRight
IE6 has not native XMLhttprequest object: http://blogs.msdn.com/ie/archive/2006/01/23/516393.aspx
As I don't plan on supporting IE6 since microsoft is dropping support in a month you can try the following if you feel brave you can adjust your webfm.js file around line 1399:
if (window.XMLHttpRequest){
// If IE7, Mozilla, Safari, etc: Use native object
var xmlHttp = new XMLHttpRequest()
}
else
{
if (window.ActiveXObject){
// ...otherwise, use the ActiveX control for IE5.x and IE6
var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}
Comment #2
zehninguem commentedCode worked as a charm
Replaced "var xmlHttp = new XMLHttpRequest()" located at line 3500 (Textpad) with your code and now I have webfm working with IE6.
Unfortunately universities are slow to change some software versions (IE is one case) and internal policies do not allow user migration or firefox utilisation.
Cheers
Comment #3
Anonymous (not verified) commentedI've attached a patch that incorporates this fix. Any chance of getting this included as it really is a simple fix to a critical issue for those of us stuck with coorporate technology that is well beyond it's lifespan?
My organization refuses to update beyond IE6 and IE7 is at least a year if not two from being considered.
Thanks,
Darthclue
Comment #4
Countzero commentedThis fix worked for me too.
Recent browsers continue working after applying the modification (didn't use the patch).
Comment #5
robmilne commentedThanks for the patch. A stable version of 6.x will be shortly released with this included.
Comment #6
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.