Hi,
When I upload a file, Firefox refresh browser window, but IE 6.0.2900 and above (IE7 too) doesn't
I use FCKEditor 2.4 (2007.01.31) version.
I check my server response with ngrep (directly from net), all of response seems to be correct, except that:
fckeditor.net sends response with chunk flag, and I send it with correct content-length flag. Is it causing this error, or are there any other magic settings for IE? Interesting thing, in W2k + IE6.0.2800 works well, only 2800+ on XP is bad.
And once more question:
How can I debug javascript in IE? Are there any debugger for it like Mozilla Firefox Javascript Debugger?
thanks
Zoltan Zidarics
PTE University Pecs, Hungary
Fri, 02/16/2007 - 03:00
#1
RE: IE doesn't refresh after upload
IE doesn't enable refresh after upload, because its have a copy in cache. When I send directory content in xml I set a lot of no-cache directiva, but some of IE accept it, some of IE doesn't care it. I modified the 73. line of browser.html :
original:
sUrl += '&CurrentFolder=' + encodeURIComponent( this.CurrentFolder ) ;
modified:
sUrl += '&CurrentFolder=' + encodeURIComponent( this.CurrentFolder ) ;
sUrl += '&stupidie=' + new Date().getTime();
Ie can't save the result in cache, because all request has a different dummy url parameter.
Very stupid idiot IE!