Reply to thread

Hello again Dan


The log files you've provided are the MediaPortal [client] log files. They're of no use for dealing with XMLTV plugin problems, because the XMLTV plugin is a TV Server plugin. Hence my request for full TV Server debug log files.


Having said that, a quick look at the XMLTV file shows URLs containing unquoted/unencoded ampersands. For example:

[code]https://tvlistings.zap2it.com//overview.html?programSeriesId=SH01137258&tmsId=SH011372580000[/code]


TV Server expects XML compliant content, which would be:

[code]https://tvlistings.zap2it.com//overview.html?programSeriesId=SH01137258&tmsId=SH011372580000[/code]


This may be the problem. If it is [the problem], you will need to either:

  • remove the content that contains unencoded ampersand characters, OR...
  • post-process the XMLTV file to properly encode the ampersand characters, OR...
  • ask the zap2xml developer(s) to amend their program

I suggest you follow up with the TV Server log files as a first step so we can confirm my diagnosis.


Top Bottom