Thanks alot, it finally works!jonib wrote:Your config worked for me so you added the actions correctly. I had to change the port by doubleclicking on the XBMC2 entry in the Autostart folder and changed from 80 to my port. Hopefully thats your problem.spitz66 wrote:Seems like it try to establish connection on port 80 and my XBMC listens on port 9514 for HTTP.
Tried to edit the "__init__.py" file and change to port 9514 but with no luck.
jonib
I had to specify login & password in the "__init__.py" file though, i.e replace on row 629:
responce = urllib.urlopen('http://'+self.ip+':'+self.port+'/xbmcCmds/xbmcHttp?command='+method+'('+urllib.quote(eg.ParseString(params), ':\\')+')').readlines()
with:
responce = urllib.urlopen('http://user:password@'+self.ip+':'+self.port+'/xbmcCmds/xbmcHttp?command='+method+'('+urllib.quote(eg.ParseString(params), ':\\')+')').readlines()
Might be good to be able to change that when doubleclicking on the XBMC2 entry in the Autostart folder as well?
Now when pausing LiveTV works, do you know how to send "record"?
