NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 45 46 47 48 49 … 93 Next »
Enhanced Web Admin

Thread Closed 
 
  • 0 Vote(s) - 0 Average
Enhanced Web Admin
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,101
2006-06-06, 02:38 AM
Talcum Wrote:I don't know what a 'Redrat channel changer' is, so I presume I don't have it. I have a Haup PVR-350 and it's controller running the show.
Any help?

If you access the web admin on the PC that is running GBPVR you should get a detailed message rather than the message rather then what you are getting below:
Code:
Server Error in '/gbpvr' Application.
  ------------------------------------------------------------------------


    /Runtime Error/

* Description: *An application error occurred on the server. The current
custom error settings for this application prevent the details of the
application error from being viewed remotely (for security reasons). It
could, however, be viewed by browsers running on the local server machine.

*Details:* To enable the details of this specific error message to be
viewable on remote machines, please create a <customErrors> tag within a
"web.config" configuration file located in the root directory of the
current web application. This <customErrors> tag should then have its
"mode" attribute set to "Off".

||


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>


*Notes:* The current error page you are seeing can be replaced by a
custom error page by modifying the "defaultRedirect" attribute of the
application's <customErrors> configuration tag to point to a custom
error page URL.

||


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,102
2006-06-06, 02:40 AM
Hirudo Wrote:I'm having issues getting to the web interface remotely. Locally everything works fine, but remotely I'm having some issues.

I can get to the guide page all right, and when I click on a show the recording dialog comes up, but trying to click record in there results in a blank page. The statistics screen works, but config does not, again throwing up a blank screen (after a fair amount of time) after clicking login.

Anyone have any idea what's going on ?

I am assuming you have port forwarding to configured correctly on your router? It sounds as though the traffic may be getting lost when it comes from outside your network to inside your network.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
turkey
Offline

Member

Posts: 206
Threads: 17
Joined: Sep 2005
#1,103
2006-06-06, 02:00 PM
forzaKGB Wrote:I would like to have a possibility to have [the manual record] reaccuring.

I second this request. It would be most helpfull!
fvfv
Offline

Member

Posts: 131
Threads: 20
Joined: Nov 2005
#1,104
2006-06-06, 05:36 PM
Is there any way to log somewhere the SQL Statements sent to the SQLite Engine when doing episode search ? I notice that doing episode search on EWA is quite slower than using the included GBPVR Search Guide . May be If I know the SQL, I can do an "Explain <SQL STATEMENT>" within sqlite3 command line and create indexes where the searches could run faster.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,105
2006-06-06, 07:56 PM
fvfv Wrote:Is there any way to log somewhere the SQL Statements sent to the SQLite Engine when doing episode search ? I notice that doing episode search on EWA is quite slower than using the included GBPVR Search Guide . May be If I know the SQL, I can do an "Explain <SQL STATEMENT>" within sqlite3 command line and create indexes where the searches could run faster.

It is not using SQL at all....it uses the GBPVR API to pull back all the shows that are available....then EWA sorts out the shows that match your search criteria.

So this being slower thatn GBPVR is not surprising. We want to use API's as much as possible rather than build an app that does its own thing....this is an issue if something changes in the DB then there are more extensive changes to the EWA.

I am sure the slowness that you are experiencing is the retrieval of all available shows.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
Hirudo
Offline

Junior Member

Posts: 5
Threads: 0
Joined: Jun 2006
#1,106
2006-06-07, 12:29 AM
UncleJohnsBand Wrote:I am assuming you have port forwarding to configured correctly on your router? It sounds as though the traffic may be getting lost when it comes from outside your network to inside your network.

This is from another machine on the same LAN, not from the outside.

But regardless, wouldn't I have the problem with all pages if it was a forwarding problem?

I can get to the main guide page, and the details window for each show, but clicking the arrows for next/previous time in the guide, or Record results in a long delay and then the blank page.

Incidentally, it looks like it may be all the javascript links that aren't working properly, but I don't seem to have any problems on other sites and the javascript console isn't putting up any errors either.

I got a bit more time tonight so I'm gonna capture traces of the communication with the server in both cases and compare.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,107
2006-06-07, 01:09 AM
Hirudo Wrote:This is from another machine on the same LAN, not from the outside.

But regardless, wouldn't I have the problem with all pages if it was a forwarding problem?

I can get to the main guide page, and the details window for each show, but clicking the arrows for next/previous time in the guide, or Record results in a long delay and then the blank page.

Incidentally, it looks like it may be all the javascript links that aren't working properly, but I don't seem to have any problems on other sites and the javascript console isn't putting up any errors either.

I got a bit more time tonight so I'm gonna capture traces of the communication with the server in both cases and compare.

What browser & version are you using?

What is the CPU, Mem, etc on your GBPVR server?

What is the CPU, Mem, etc on the client that is having the issue?
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,108
2006-06-07, 04:13 AM
Build 40 is released.
  • Added ability to cancel and delete manually scheduled recordings in Manage Recordings.
  • Added real-time Ajax based clock to Guide showing web server time.
  • Added reocurring capabilities to Manual Recordings.
I am now going to start focusing on integrating the Web Streamer.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
martynw
Offline

Junior Member

Posts: 30
Threads: 4
Joined: Apr 2006
#1,109
2006-06-07, 08:24 AM
On the "Manage Recordings" page would it be possible to split the current "Show" table cell into "Show" and "Episode Title"?

I like to be able to sort my recordings by show name (e.g. Alias, Supernatural, etc) BUT need them listed in ascending recording date order so that I know what order to watch them in Smile

At the moment if I sort them by show they are sorted by show name and episode title - it's hard enough to follow Alias as it is, without watching the episodes in the wrong order Big Grin

(I know that the recording date is also shown, but if you have a bunch of episodes spanning many months you have to look up and down the list and work out which is the earliest)

Thanks,

Martyn
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,110
2006-06-07, 10:01 AM
martynw Wrote:On the "Manage Recordings" page would it be possible to split the current "Show" table cell into "Show" and "Episode Title"?

I like to be able to sort my recordings by show name (e.g. Alias, Supernatural, etc) BUT need them listed in ascending recording date order so that I know what order to watch them in Smile

At the moment if I sort them by show they are sorted by show name and episode title - it's hard enough to follow Alias as it is, without watching the episodes in the wrong order Big Grin

(I know that the recording date is also shown, but if you have a bunch of episodes spanning many months you have to look up and down the list and work out which is the earliest)

Thanks,

Martyn

Go into confog and turn off Show Subtitle....you will then onlly have the title showing by default and your sort desire should work. Then you can see the full title and sub title when you click on the details for the show. Detials always shows all info for the show regardless of what is set in the Config area.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
« Next Oldest | Next Newest »

Users browsing this thread: 7 Guest(s)

Pages (161): « Previous 1 … 109 110 111 112 113 … 161 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  SQLite GUI-based admin & query building? Braklet 3 1,959 2006-10-30, 02:45 PM
Last Post: Braklet
  Recordings made via the Web Admin interface are at the wrong resolution! mmatheny 9 3,088 2006-08-04, 06:34 PM
Last Post: HtV
  Enhanced Web Admin Hobson 3 2,382 2006-06-09, 07:47 AM
Last Post: Hobson
  Enhanced Web Admin (Time Slice error?) SFX Group 2 1,831 2006-02-04, 08:10 PM
Last Post: normanr
  Web Admin suggested feature babybob 0 1,153 2006-01-31, 10:12 PM
Last Post: babybob
  Enhanced Web Admin Request psycik 1 1,338 2005-10-10, 08:16 PM
Last Post: UncleJohnsBand
  reoccuring + web admin aegisx 0 1,174 2005-01-25, 10:57 PM
Last Post: aegisx
  GBPVR Web Admin KingArgyle 8 4,076 2004-12-15, 03:01 AM
Last Post: KingArgyle

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

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

Linear Mode
Threaded Mode