Web interface not working
#1
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:

Code:
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.
Reply
#2
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.
Reply
#3
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.
Reply
#4
jowilkin Wrote: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.
Reply
#5
althekiller Wrote:You will probably be quite happy you did.

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

Logout Mark Read Team Forum Stats Members Help
Web interface not working0