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
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,765
Threads: 769
Joined: Nov 2003
#401
2005-09-13, 01:23 AM
When you schedule a *season* recording from TV Guide or Search screen, it'll give you and option for the max number of recordings to keep.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#402
2005-09-13, 02:32 AM
sub Wrote:When you schedule a *season* recording from TV Guide or Search screen, it'll give you and option for the max number of recordings to keep.

Thanks sub....

As an FYI.....I am currently working on adding the weekly and daily scheduling to the admin.
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
#403
2005-09-14, 12:52 AM
UncleJohnsBand Wrote:Thanks sub....

As an FYI.....I am currently working on adding the weekly and daily scheduling to the admin.

Update.....I need to wait until the external API's catch up with the internal API to implement the weekly and daily scheduling. As soon as sub adds this then I will make sure to add the functionality to the web admin.

The same goes for the max recordings.

sub is busy tweaking the recoding area of GBPVR and doesn't want to update the external API until he is doen updating the internal workings.

Can't say I blame him....I would do the same thing. Big Grin
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
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#404
2005-09-16, 02:48 AM
I'm getting an error with the version of the web admin shipped with version 94.8, when viewing the statistics page (everything seems to still display):

Code:
System.NullReferenceException: Object reference not set to an instance of an object. at gbweb.Info.GetRecordingStatuses() in c:\program files\devnz\gbpvr\web\info.aspx.cs:line 181 at gbweb.Info.Page_Load(Object sender, EventArgs e) in c:\program files\devnz\gbpvr\web\info.aspx.cs:line 64

Not a big deal as I rarely view that page, but thought I'd pass it along.
microkid
Offline

Member

Posts: 75
Threads: 18
Joined: Oct 2004
#405
2005-09-20, 05:47 PM
I have a IIS6 server running here with my website. How can I encorporate the Enhanced Web Interface into my web site? I want to be able to access the Web Interface over port 80, and hyperlink it from my main page.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#406
2005-09-20, 09:26 PM
microkid Wrote:I have a IIS6 server running here with my website. How can I encorporate the Enhanced Web Interface into my web site? I want to be able to access the Web Interface over port 80, and hyperlink it from my main page.

Simply right-clcik on the Web folder located under the GBPVR install directory.Then left-click on properties.

When the properties window opens up choose the Web Sharing tab.

Select the Share this folder radio button and enter a name that you would like to use for the site (like gbweb).

Click Apply.
Click Ok.

You should be able to access the site at http://localhost/yoursitename/login.aspx

You can set the user name and password in the Config utility of GBPVR under the misc tab. You can select to not run the GBPVR web server since IIS will be hosting the site.

Note: For some reason it appears that it will only come up correcty in IE when hosted via IIS....not sure why.
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
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#407
2005-09-20, 10:17 PM
KingArgyle Wrote:I'm getting an error with the version of the web admin shipped with version 94.8, when viewing the statistics page (everything seems to still display):

Code:
System.NullReferenceException: Object reference not set to an instance of an object. at gbweb.Info.GetRecordingStatuses() in c:\program files\devnz\gbpvr\web\info.aspx.cs:line 181 at gbweb.Info.Page_Load(Object sender, EventArgs e) in c:\program files\devnz\gbpvr\web\info.aspx.cs:line 64

Not a big deal as I rarely view that page, but thought I'd pass it along.
yea, this is because the function I wanted to call was internal. So it'll change each version.
sub added it as an external function, but the web-admin needs to be updated to use the new external function.
microkid
Offline

Member

Posts: 75
Threads: 18
Joined: Oct 2004
#408
2005-09-21, 07:53 AM
@UncleJohnsBand: I tried it, but I only get an error message. Any clue?

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>
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#409
2005-09-21, 08:50 AM
try doing as the error suggests: change RemoteOnly to Off or access the web server via http://localhost/
microkid
Offline

Member

Posts: 75
Threads: 18
Joined: Oct 2004
#410
2005-09-21, 12:54 PM
Tried it, no luck. New error message:

Assembly Load Trace: The following information can be helpful to determine why the assembly 'NativeUtilities' could not be loaded.


=== Pre-bind state information ===
LOG: DisplayName = NativeUtilities
(Partial)
LOG: Appbase = file:///C:/Program Files/devnz/gbpvr/web
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Private path hint found in configuration file: plugins.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Post-policy reference: NativeUtilities
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/gbpvr/d7cbab66/ed099e5b/NativeUtilities.DLL.
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/gbpvr/d7cbab66/ed099e5b/NativeUtilities/NativeUtilities.DLL.
LOG: Attempting download of new URL file:///C:/Program Files/devnz/gbpvr/web/bin/NativeUtilities.DLL.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Post-policy reference: NativeUtilities, Version=1.0.2051.18370, Culture=neutral, PublicKeyToken=null
« Next Oldest | Next Newest »

Users browsing this thread: 15 Guest(s)

Pages (161): « Previous 1 … 39 40 41 42 43 … 161 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  SQLite GUI-based admin & query building? Braklet 3 1,955 2006-10-30, 02:45 PM
Last Post: Braklet
  Recordings made via the Web Admin interface are at the wrong resolution! mmatheny 9 3,076 2006-08-04, 06:34 PM
Last Post: HtV
  Enhanced Web Admin Hobson 3 2,377 2006-06-09, 07:47 AM
Last Post: Hobson
  Enhanced Web Admin (Time Slice error?) SFX Group 2 1,825 2006-02-04, 08:10 PM
Last Post: normanr
  Web Admin suggested feature babybob 0 1,152 2006-01-31, 10:12 PM
Last Post: babybob
  Enhanced Web Admin Request psycik 1 1,335 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,075 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