PDA

View Full Version : Web interface not working


jowilkin
2009-04-29, 11:00
I'm on ubuntu 9.04, 64-bit using the xbmc version from https://launchpad.net/~team-xbmc/+archive/jaunty-ppa.

I'm trying to get the web interface working on port 8080, but when I try to connect, I get this error:

ASP Error: Undefined procedure isset At line 1, line => if (isset("Action")

if (isset("Action")) {
if (Action == "UnqueMusicplaylist") {
var ItemCount;
var z;
ItemCount = xbmcCommand("catalog","items");
for (z = 0; z < ItemCount; z = z + 1) {
// dirty workaround, cause unque, + z won't work
xbmcCommand("navigate", Action);
xbmcCommand("catalog","unque");
}
Action = "musicplaylist";
}
xbmcCommand("navigate", Action);
}

if (isset("command")) {
// execute a few commands before listing the contents
if (command == "select") {
xbmcCommand("catalog", "select," + item);
} else if (command == "unque") {
xbmcCommand("catalog", "unque," + item);
}
}

var navigatorstate;
var BannerClass;
var InfoClass;
var BackgroundClass;
var ItemFileClass;
navigato

BTW: VDPAU working great for me in this version, cpu utilization down to 10% during playback.

yowl
2009-04-29, 13:35
I believe the current embedded web server does not work on 64 bit. There is/was a ticket to convert to a different/better embedded web server, I forget the name.

jowilkin
2009-04-29, 14:26
Ah ok thanks. I guess between this and boxee not working on 64-bit, I might just wipe the OS and go back to 32-bit.

althekiller
2009-04-29, 19:12
Ah ok thanks. I guess between this and boxee not working on 64-bit, I might just wipe the OS and go back to 32-bit.

You will probably be quite happy you did.

jowilkin
2009-04-30, 04:28
You will probably be quite happy you did.

Ok, downloaded a 32-bit Jaunty cd, will wipe the OS tonight.