When I try to open the server UI via firefox, I get the graphics and icon bar at the top of the screen, but the box where the menu goes has NO menu items.
when I look at the error log in firefox, the message
"Error: uncaught exception: Permission denied to call method XMLHttpRequest.open"
I have no problems access the server from my other PC's on the LAN, and my DMS1 streams the content just fine. Anyone gotta clue?
Firefox/2.0.0.12 WINDOWS 2000 Menu missing in browser
Re: Firefox/2.0.0.12 WINDOWS 2000 Menu missing in browser
I also saw this problem in Win2000 and Vista. Both IE and Firefox would throw 'ACCESS DENIED' errors when trying to browse music. The browser would paint the blue border, but no menu items to get to artists, artist index, all tracks, etc. I was able to fix this by editing the MediaBrowser.js file on the server.
The code:
gets replaced with:
See the attached file.
Somehow there was an extra "/" between XP and Vista/2000. I don't know why, but everything works now.
The code:
Code: Select all
//Find "controlURL"
var controlUrlList = xml.documentElement.getElementsByTagName("controlURL" );
//var controlURL = "";
for (var i=0; i < controlUrlList.length; i++)
{
if (controlUrlList[i].firstChild.nodeValue.match( "ContentDirectory" ))
{
gControlUrl = "/"+controlUrlList[i].firstChild.nodeValue;
break;
}
}
Code: Select all
//Find "controlURL"
var controlUrlList = xml.documentElement.getElementsByTagName("controlURL" );
//var controlURL = "";
for (var i=0; i < controlUrlList.length; i++)
{
if (controlUrlList[i].firstChild.nodeValue.match( "ContentDirectory" ))
{
;gControlUrl ="/"+controlUrlList[i].firstChild.nodeValue;
gControlUrl = controlUrlList[i].firstChild.nodeValue;
if(gControlUrl.charAt(0) != "/")
{
gControlUrl = "/" + gControlUrl;
}
break;
}
}
Somehow there was an extra "/" between XP and Vista/2000. I don't know why, but everything works now.