NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support v
« Previous 1 … 38 39 40 41 42 43 Next »
Channel List

 
  • 0 Vote(s) - 0 Average
Channel List
MrGenius1
Offline

Junior Member

Posts: 32
Threads: 6
Joined: Dec 2019
#11
2020-01-03, 04:50 PM
(2020-01-03, 09:00 AM)mvallevand Wrote: I would verify the channel URL, your log is littered with

Code:
2020-01-03 03:29:00.176 [DEBUG][32] Unexpected error in HTTP input source: System.Net.WebException: The remote server returned an error: (403) Forbidden.
   at System.Net.HttpWebRequest.GetResponse()

You may have at least one folder set wrong in config.xml

Code:
2020-01-03 04:27:35.969 [ERROR][28] Unexpected error querying available disk space (C:\temp\/): System.IO.DriveNotFoundException: Could not find the drive 'C:\temp\/'. The drive might not be ready or might not be mapped.
   at System.IO.DriveInfo.CheckStatfsResultAndThrowIfNecessary(Int32 result)
   at System.IO.DriveInfo.get_AvailableFreeSpace()
   at NShared.Extend.SystemRequestHandler.GetSpace(String path)

Martin

What does this code actually mean because everything is working fine. I only noticed this issue when I wanted to add more guide data to some of my channels.
2020-01-03 03:29:00.176 [DEBUG][32] Unexpected error in HTTP input source: System.Net.WebException: The remote server returned an error: (403) Forbidden.

   at System.Net.HttpWebRequest.GetResponse()


I have my NextPVR server installed in Docker on Libreelec. My clients are Libreelec on Raspberry Pi 4. Why would it be looking for a C: drive? Wouldn't that be Windows? I do manage the server from a Windows PC.
2020-01-03 04:27:35.969 [ERROR][28] Unexpected error querying available disk space (C:\temp\/): System.IO.DriveNotFoundException: Could not find the drive 'C:\temp\/'. The drive might not be ready or might not be mapped.
   at System.IO.DriveInfo.CheckStatfsResultAndThrowIfNecessary(Int32 result)
   at System.IO.DriveInfo.get_AvailableFreeSpace()
   at NShared.Extend.SystemRequestHandler.GetSpace(String path)
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,705
Threads: 767
Joined: Nov 2003
#12
2020-01-03, 05:06 PM
(2020-01-03, 04:40 PM)MrGenius1 Wrote:
(2020-01-03, 05:59 AM)sub Wrote: My guess is there is a funny channel name in there, that NextPVR isn’t encoding safely. You probably need to open the browser dev tools, click on the “network” tab and see what is being returned from the channel.lis

I attached a screenshot from Firefox from the network tab loading channels from settings.
I can see it's returned 900k of data, so it is most likely exactly what I said - it's returning a channel list, but something about one of the channel names is making it invalid data, so it never makes it to the web app as a valid channel list.

I'd look closer at the data returned from that channel.list call. In chrome's devtools you can double click the call, and click the 'response' tab, and see the actual data that was transferred. If you can copy that text to .txt file, zip it, and attach it, I'll check what's wrong with it.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,705
Threads: 767
Joined: Nov 2003
#13
2020-01-03, 05:07 PM
(2020-01-03, 04:50 PM)MrGenius1 Wrote: I have my NextPVR server installed in Docker on Libreelec. My clients are Libreelec on Raspberry Pi 4. Why would it be looking for a C: drive? Wouldn't that be Windows? I do manage the server from a Windows PC.
2020-01-03 04:27:35.969 [ERROR][28] Unexpected error querying available disk space (C:\temp\/): System.IO.DriveNotFoundException: Could not find the drive 'C:\temp\/'. The drive might not be ready or might not be mapped.
   at System.IO.DriveInfo.CheckStatfsResultAndThrowIfNecessary(Int32 result)
   at System.IO.DriveInfo.get_AvailableFreeSpace()
   at NShared.Extend.SystemRequestHandler.GetSpace(String path)
What's the recording directory set to on the Setting screen? (alternatively I might have accidentally left c:\temp as an alternative recording directory in the config.xml - and you can safely ignore this....I'm away for a few days, but will check mid next week when I'm back)
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,926
Threads: 956
Joined: May 2006
#14
2020-01-03, 05:20 PM (This post was last modified: 2020-01-03, 05:21 PM by mvallevand.)
(2020-01-03, 05:06 PM)sub Wrote: I'd look closer at the data returned from that channel.list call. In chrome's devtools you can double click the call, and click the 'response' tab, and see the actual data that was transferred. If you can copy that text to .txt file, zip it, and attach it, I'll check what's wrong with it.


The call we would need is

http://localhost:8866/service?method=cha...xtras=true

unfortunately there will be credentials in the output.


For the http error it is not clear which source is wrong, I would start with looking at the source m3u file and source epg file, if you get them via http.  It could also be channel icons in an xmltv file.

Martin
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,705
Threads: 767
Joined: Nov 2003
#15
2020-01-03, 05:32 PM
(2020-01-03, 05:20 PM)mvallevand Wrote: unfortunately there will be credentials in the output.
True - he can just zip it up, put it somewhere like onedrive or dropbox, and PM me the url (rather than posting it as an attachment) and I'll check it
MrGenius1
Offline

Junior Member

Posts: 32
Threads: 6
Joined: Dec 2019
#16
2020-01-03, 06:12 PM
(2020-01-03, 05:06 PM)sub Wrote:
(2020-01-03, 04:40 PM)MrGenius1 Wrote:
(2020-01-03, 05:59 AM)sub Wrote: My guess is there is a funny channel name in there, that NextPVR isn’t encoding safely. You probably need to open the browser dev tools, click on the “network” tab and see what is being returned from the channel.lis

I attached a screenshot from Firefox from the network tab loading channels from settings.
I can see it's returned 900k of data, so it is most likely exactly what I said - it's returning a channel list, but something about one of the channel names is making it invalid data, so it never makes it to the web app as a valid channel list.

I'd look closer at the data returned from that channel.list call. In chrome's devtools you can double click the call, and click the 'response' tab, and see the actual data that was transferred. If you can copy that text to .txt file, zip it, and attach it, I'll check what's wrong with it.


Here is my channel log.


Attached Files
.zip   channel log.zip (Size: 51.61 KB / Downloads: 5)
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,926
Threads: 956
Joined: May 2006
#17
2020-01-03, 06:52 PM
It's not valid JSON, the parsing of the m3u file seems to have included the logo of the name or group in a few places.

I think if you can get rid of channels 2203, 2211 and 2212 you might be ok.

Martin
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,705
Threads: 767
Joined: Nov 2003
#18
2020-01-03, 06:57 PM
It didn't like something about the formatting of the metadata for the "New England Cable News" when importing it from the m3u, so the tv-logo and other attributes ended up as part of the channel name. (maybe some other channels too - but that was the first one with a problem)
MrGenius1
Offline

Junior Member

Posts: 32
Threads: 6
Joined: Dec 2019
#19
2020-01-05, 03:54 AM
I bit the bullet and deleted my m3u file and reloaded it and reattached the guide. Everything is back to working as far as the channel list goes. Not sure what happened during the update. I appreciate the help in trying to resolve this.

Is there a way to implement an easier way to assign a guide to a channel? Maybe make the guide channel search, searchable? I have one guide that has 100's of channels and another with 1000's. Also is there a way to lock the guide data so you can use the auto map more than once with two or more different guides?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,705
Threads: 767
Joined: Nov 2003
#20
2020-01-05, 04:19 AM
I can probably add some functionality like that. (Searching, and a locked epg)
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): « Previous 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  MUX List problems Dawladin 2 301 2025-04-17, 05:37 PM
Last Post: Dawladin
Photo EPG Channel sort order spagio 3 382 2025-03-02, 05:28 PM
Last Post: sub
  Channel Editor -- Feature Request? BigKahuna 1 307 2025-02-19, 06:50 PM
Last Post: sub
Question extras.xml | channel management D3iver 3 388 2025-01-12, 09:05 PM
Last Post: mvallevand
  IPTV - Change source IP address, without needing to reimport channel. Paul92 1 401 2024-11-09, 03:23 AM
Last Post: mvallevand
  UK Freesat Regional Transponder List 28.2E jcjefferies 0 372 2024-11-03, 02:22 PM
Last Post: jcjefferies
  Adding new channel, using xmltv bigstusexy 3 465 2024-10-26, 12:35 AM
Last Post: bigstusexy
  How to add a new channel without having them all chosen when updating a device? Luisy44 3 472 2024-10-18, 02:31 PM
Last Post: mvallevand
  Help Automating M3U Channel Refresh NextPVR on Unraid (AMD64) mcs_94 5 649 2024-10-06, 08:29 PM
Last Post: sub
  PBS Stations not appearing in channel scans rband 2 396 2024-09-28, 02:22 AM
Last Post: rband

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode