Jump to content

PIVOSC XIOS Script error on XBMB3C


easystreams

Recommended Posts

easystreams

Have script error on Pivos Xios running XBMB3C  with using localhost and remote server address both give same problems

 

(error: ' Script Error!: MediaBrowser.XBMC')

 

This is also updated logs . First log is with 'Debug 2' enabled and 2nd log is with' Info1' enabled  for debugging 

 

1st log      http://xbmclogs.com/show.php?id=305127

 

2nd Log   http://xbmclogs.com/show.php?id=305125

 

 

Link to comment
Share on other sites

xnappo

Please try this.

 

Go to ~line 1445 in default.py and find this line:

        item_type = str(item.get("Type")).encode('utf-8')

Replace with this:

        item_type = str(item.get("Type")).encode('utf-8')
        if item_type == None:
            item_type = ''

xnappo

Link to comment
Share on other sites

boywhosetsfire

Oops, I was looking into this issue at the same time. Just pushed this update to Github:

    if extraData.get('itemtype') != None:
        list.setProperty('ItemType', extraData.get('itemtype'))

But I guess setting the the type additionally to an empty string also isn't a bad idea.

Link to comment
Share on other sites

easystreams

bo

 

Oops, I was looking into this issue at the same time. Just pushed this update to Github:

    if extraData.get('itemtype') != None:
        list.setProperty('ItemType', extraData.get('itemtype'))

But I guess setting the the type additionally to an empty string also isn't a bad idea.

You have link for Github so I can update to latest version as too many XBMB3C around on different servers

Link to comment
Share on other sites

easystreams

You can find the latest version here:

 

https://github.com/MediaBrowser/MediaBrowser.XBMC

 

But keep in mind it's really the latest version, not the most stable one.

Its even worse after installing...does not even try to load but goes straight into 'script error'

 

Log below...even tried xnappo's code as well but no joy at all

http://xbmclogs.com/show.php?id=306306

Link to comment
Share on other sites

easystreams

Its even worse after installing...does not even try to load but goes straight into 'script error'

 

Log below...even tried xnappo's code as well but no joy at all

http://xbmclogs.com/show.php?id=306306

This is using update you given but still script errors but trys to load

Your debug xbmc.log: http://xbmclogs.com/show.php?id=306351

Link to comment
Share on other sites

easystreams

Please try this.

 

Go to ~line 1445 in default.py and find this line:

        item_type = str(item.get("Type")).encode('utf-8')

Replace with this:

        item_type = str(item.get("Type")).encode('utf-8')
        if item_type == None:
            item_type = ''

xnappo

tried above change but goes straight into script error

 

http://xbmclogs.com/show.php?id=306306

Link to comment
Share on other sites

xnappo

Somehow you are not running the updated code.  It is still erroring at line 550, which should no longer be:

 

list.setProperty('ItemType', extraData.get('itemtype'))

 

This is now at line 554.

 

xnappo

Link to comment
Share on other sites

Vidman

I am having issues with v0.9.553 throwing up script errors when loading xbmc on android gotham and windows helix....could this be related ..or should I start a new thread with logs etc? 

Link to comment
Share on other sites

easystreams

Somehow you are not running the updated code. It is still erroring at line 550, which should no longer be:

 

list.setProperty('ItemType', extraData.get('itemtype'))

 

This is now at line 554.

 

xnappo

Link to comment
Share on other sites

easystreams

Somehow you are not running the updated code. It is still erroring at line 550, which should no longer be:

PLEASE GIVE A LINK TO YOUR NEW CIDE SND THAT WAY ITS GUARANTEED TI BE CORRECT

 

I did however use new code from github but still errors as lusted.

list.setProperty('ItemType', extraData.get('itemtype'))

 

This is now at line 554.

 

xnappo

Link to comment
Share on other sites

easystreams

Please provide a new logfile, then we can also see the script version you are running

Here is following log files with the XBMB3C from Github which is latest version

 

Your debug xbmc.log: http://xbmclogs.com/show.php?id=308757

Your debug xbmc.old.log: http://xbmclogs.com/show.php?id=308758

 

still script errors 'script failed: mediabrowser xbmc master'

 

Link to comment
Share on other sites

xnappo

I don't understand why, but you are not getting the new code.  

21:42:34 T:1400112224  NOTICE: XBMB3C -> running XBMB3C: 0.9.546

But the version in the Git is 0.9.554.

 

Also - please do not turn on the XBMC debug logging - we don't need it.

 

xnappo

Link to comment
Share on other sites

easystreams

I don't understand why, but you are not getting the new code.  

21:42:34 T:1400112224  NOTICE: XBMB3C -> running XBMB3C: 0.9.546

But the version in the Git is 0.9.554.

 

Also - please do not turn on the XBMC debug logging - we don't need it.

 

xnappo

I used new link from github. If you can give me alternative link I will use it

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...