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

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#1,041
2006-05-26, 11:38 AM
You have only the channel number as the channel name. If you add some more text it'll stop it crashing. (UJB: need to check that the channelName isn't only the number)
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,042
2006-05-26, 02:06 PM
normanr Wrote:You have only the channel number as the channel name. If you add some more text it'll stop it crashing. (UJB: need to check that the channelName isn't only the number)

This is Fixed in the next release....Smile
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
ydekmekji
Offline

Posting Freak

Posts: 824
Threads: 275
Joined: Jan 2005
#1,043
2006-05-26, 02:41 PM
I recently did a fresh reinstall of XP and gbpvr and have not been able to get the web aspects worked out. I have enabled the port on both Windows and my modem's firewall... help
If you want to know why nPVR is the bomb, ask my wife!
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#1,044
2006-05-26, 03:49 PM
Does it work with this: http://localhost:7647/gbpvr/guide.aspx

If your modem works as a router, therefore using NAT, opening the port is probably not enough, you have to redirect it to the server.
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
ydekmekji
Offline

Posting Freak

Posts: 824
Threads: 275
Joined: Jan 2005
#1,045
2006-05-26, 04:04 PM
This is what I get using localhost. (Do I have to have .net 2.0 on the computer accessing it?):


Server Error in '/gbpvr' Application.
--------------------------------------------------------------------------------

Unable to find the requested .Net Framework Data Provider. It may not be installed.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentException: Unable to find the requested .Net Framework Data Provider. It may not be installed.

Source Error:


Line 76: if (File.Exists(Path.Combine(Global.Settings.GetInstallDir(), "zapdb.db3")))
Line 77: {
Line 78: DbProviderFactory zapFactory = DbProviderFactories.GetFactory("System.Data.SQLite");
Line 79: zapConnection = zapFactory.CreateConnection();
Line 80: zapConnection.ConnectionString = "Data Source=" + databaseFileName + ";Version=3;New=True";


Source File: c:\Program Files\devnz\gbpvr\web\App_Code\classes\ZapTools.cs Line: 78

Stack Trace:


[ArgumentException: Unable to find the requested .Net Framework Data Provider. It may not be installed.]
System.Data.Common.DbProviderFactories.GetFactory(String providerInvariantName) +102
gbweb.ZapTools.OpenZapDB() in c:\Program Files\devnz\gbpvr\web\App_Code\classes\ZapTools.cs:78
gbweb.classes.ProgrammeDisplay..ctor() in c:\Program Files\devnz\gbpvr\web\App_Code\classes\ProgrammeDisplay.cs:19
gbweb.guide.Page_PreRender(Object sender, EventArgs e) in c:\Program Files\devnz\gbpvr\web\Guide.aspx.cs:108
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +13
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +45
System.Web.UI.Control.OnPreRender(EventArgs e) +80
System.Web.UI.Control.PreRenderRecursiveInternal() +88
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5731
If you want to know why nPVR is the bomb, ask my wife!
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#1,046
2006-05-26, 04:15 PM
All I can think of and what I would do is: install the latest version of EWA(0.37??). But you probably have already tried that. Wait for some better answers.Smile
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
ydekmekji
Offline

Posting Freak

Posts: 824
Threads: 275
Joined: Jan 2005
#1,047
2006-05-26, 06:07 PM
How about this error?

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>
If you want to know why nPVR is the bomb, ask my wife!
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,048
2006-05-26, 10:41 PM
ydekmekji Wrote:This is what I get using localhost. (Do I have to have .net 2.0 on the computer accessing it?):


Server Error in '/gbpvr' Application.
--------------------------------------------------------------------------------

Unable to find the requested .Net Framework Data Provider. It may not be installed.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentException: Unable to find the requested .Net Framework Data Provider. It may not be installed.

Source Error:


Line 76: if (File.Exists(Path.Combine(Global.Settings.GetInstallDir(), "zapdb.db3")))
Line 77: {
Line 78: DbProviderFactory zapFactory = DbProviderFactories.GetFactory("System.Data.SQLite");
Line 79: zapConnection = zapFactory.CreateConnection();
Line 80: zapConnection.ConnectionString = "Data Source=" + databaseFileName + ";Version=3;New=True";


Source File: c:\Program Files\devnz\gbpvr\web\App_Code\classes\ZapTools.cs Line: 78

Stack Trace:


[ArgumentException: Unable to find the requested .Net Framework Data Provider. It may not be installed.]
System.Data.Common.DbProviderFactories.GetFactory(String providerInvariantName) +102
gbweb.ZapTools.OpenZapDB() in c:\Program Files\devnz\gbpvr\web\App_Code\classes\ZapTools.cs:78
gbweb.classes.ProgrammeDisplay..ctor() in c:\Program Files\devnz\gbpvr\web\App_Code\classes\ProgrammeDisplay.cs:19
gbweb.guide.Page_PreRender(Object sender, EventArgs e) in c:\Program Files\devnz\gbpvr\web\Guide.aspx.cs:108
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +13
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +45
System.Web.UI.Control.OnPreRender(EventArgs e) +80
System.Web.UI.Control.PreRenderRecursiveInternal() +88
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5731

Have you installed the latest ZapTools(this is an optional add on for Zap2it EPG users)? The error is coming from the EWA detecting that you have a zapdb.db3 file in the GBPVR direcroty so it is expecting that all the files from ZapTools have been insalled in the GBPVR directory. The zapdb.db3 is the SQLite version of zaptools....if you delete this file the error will go away....if you are using zaptools then something is not correct.

When in you installed GBPVR 97.7 (you are running this correct?) it should have installed the SQLite data provider.

Let me know if this helps.
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
ydekmekji
Offline

Posting Freak

Posts: 824
Threads: 275
Joined: Jan 2005
#1,049
2006-05-26, 11:49 PM
Dude... that was the bomb--it worked! Is that why they call you uncle?
Zapimport is causing problems for me... (I have the latest ver.), but this was awesome!
If you want to know why nPVR is the bomb, ask my wife!
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,050
2006-05-26, 11:59 PM
Build 38 is now released.

Contains the following changes:
  • Added Manual Record Functionality.
  • Correcrted issue when EPG Channel Name only contained the Channel Number.
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: 3 Guest(s)

Pages (161): « Previous 1 … 103 104 105 106 107 … 161 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  SQLite GUI-based admin & query building? Braklet 3 1,960 2006-10-30, 02:45 PM
Last Post: Braklet
  Recordings made via the Web Admin interface are at the wrong resolution! mmatheny 9 3,091 2006-08-04, 06:34 PM
Last Post: HtV
  Enhanced Web Admin Hobson 3 2,383 2006-06-09, 07:47 AM
Last Post: Hobson
  Enhanced Web Admin (Time Slice error?) SFX Group 2 1,834 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,342 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,078 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