Kodi Community Forum

Full Version: XBMC web server?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all,

My specs here again:

OS: Jaunty 9.04 AMD64
System: Intel Quad Core Q9400 at 3.0Hz
Memory: 8GB
Hard drive ~ 4TB
Video card: GTX 260
XBMC: ppa version (9.10 R20844) with MediaStream 1.00

I enable web server in XBMC, then go to address localhost:8090 (I change port to 8090 because I am running other servers at 8080), and I got this:
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
Did I do something wrong, or what else do I have to do to control XBMC with web server?

Thanks,

D.
This is a known issue with 64bit Linux.
nul7 Wrote:This is a known issue with 64bit Linux.

Ah that's bad. I wish that I can be of help in anything Wink.

D.