So I'm not sure what I did, but it seems to be working (mostly) now. I noticed that the Resource Type pulldown, when commented out, seemed to solve the problem. Uncommenting it kept it right on going.
I've notice that now FF works like a champ. But there is a problem with IE - when uploading images or adding folders, the filemanager doesn't refresh to show the new updates. Any idea why?
The only other strangeness I've noticed is that the resource type pulldown only has "Image", not the other three resource types. Any idea why? (I've not changed any default options)
Otherwise, seems to be working. I'm going to upload and check on some other computers tomorrow.
RE: xml request error (500)
I noticed in the FF Javascript console, that I'm getting this JS error when opening the image upload dialog (the filemanager window):
this.DOMdocument has no properties
(then mentions the fckxml.js file)
Any ideas?
Jake
RE: xml request error (500)
I've notice that now FF works like a champ. But there is a problem with IE - when uploading images or adding folders, the filemanager doesn't refresh to show the new updates. Any idea why?
The only other strangeness I've noticed is that the resource type pulldown only has "Image", not the other three resource types. Any idea why? (I've not changed any default options)
Otherwise, seems to be working. I'm going to upload and check on some other computers tomorrow.
Jake
RE: xml request error (500)
It was that the real path is not correct.
I solve it by replacing the function GetRootPath in ' io.php ' by this one:
function GetRootPath()
{
$sRealPath = $_SERVER['DOCUMENT_ROOT'];
return $sRealPath;
}
It works as well as on linux or XP.
BDM