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
#761
2006-02-19, 07:53 PM
libop Wrote:It works great except that I would like to avoid (for test purposes only) the login screen which causes problems on the mobile phone browser.
set the login name to 'autologin'. This is explained on the wiki page, but in an up coming relase I'm planning to replace it with an IP based solution anyways.

libop Wrote:As another question I would also like to know if it's normal that the records correctly schedule when my asp.net pages are in the gbpvr/web/ folder and are not working when those same pages are in my wwwroot folder, even if I've the GBPVR.Public.dll and GBPVR.Backend.common.dll and GBPVRRecordingService.exe in the bin directory of my asp.net project ?
yes, I'm not quite sure what the problem is, but it's related to database locking access. If you changed to an MSDE based database, then the problems would probably go away. (search the forum for MSDE instructions, several other people have had great success, but this isn't the right thread for help with the MSDE settings)
libop
Offline

Junior Member

Posts: 34
Threads: 7
Joined: Oct 2005
#762
2006-02-19, 08:17 PM
Thanks, sorry for not having noticed the "autologin" thing in the wiki.

I'll also have a look to the MSDE database solution as well!

Thank you.
libop
Offline

Junior Member

Posts: 34
Threads: 7
Joined: Oct 2005
#763
2006-02-19, 08:26 PM
Concerning the "autologin" issue, in fact, it still sends HTML headers before redirecting to the wap designed page... Those headers are rejected by my mobile phone.

I'll try to search on the MSDE database side. I'll keep you informed.

Thank you by the way Smile
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#764
2006-02-19, 08:33 PM
You can turn off authentication by editing the web.config and removing the 'Deny anonymous users' line. You could also create your own login page that's wap happy, do some wap detection, and use that instead of the standard login page.

You could also put your page in the public folder, which doesn't have the 'Deny anonymous users' setting on it.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#765
2006-02-20, 01:23 AM
pBS Wrote:also hoping web streamer will be integrated sometime soon...

Yes it will be.....I am testing the streamer now and will work with sgilani to align it with the EWA when the code is "ripe".......I am sure that normanr will need to get involved as well.

The streamer will be a very nice addition.
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
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#766
2006-02-22, 12:01 PM
Hi, looking for help please, I've had a problem for some time that has been there for the last few releases. I've also tried a full reinstall of the PC. Only occasionally do I get the web interface for the Guide, Manage recordings & Statistics to display correctly (Search, video & music work fine). Otherwise I get:

1. Guide page (I use XMLTV) - I either get a blank guide with just headings or this "server error screen"
[SIZE="1"]Exception Details: System.Data.OleDb.OleDbException: Unspecified error

Source Error:

Line 51:
Line 52: OleDbConnection checkZapConnection = new OleDbConnection(databaseConnectionString);
Line 53: checkZapConnection.Open();
Line 54:
Line 55: // create the command object and store the sql query

Source File: C:\Program Files\devnz\gbpvr\web\ZapTools.cs Line: 53

Stack Trace:

[OleDbException (0x80004005): Unspecified error]
System.Data.OleDb.OleDbConnection.ProcessResults(Int32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvider() +51
System.Data.OleDb.OleDbConnection.Open() +203
gbweb.ZapTools.checkZapEPG() in C:\Program Files\devnz\gbpvr\web\ZapTools.cs:53
gbweb.guide.Page_PreRender(Object sender, EventArgs e) in C:\Program Files\devnz\gbpvr\web\Guide.aspx.cs:127
System.Web.UI.Control.OnPreRender(EventArgs e) +55
System.Web.UI.Control.PreRenderRecursiveInternal() +54
System.Web.UI.Page.ProcessRequestMain() +1499[/SIZE]

2. Statistics/manage screens I get this "server error"

[SIZE="1"]Exception Details: System.Data.OleDb.OleDbException: Unspecified error

Source Error:

Line 80: // create the database connection
Line 81: OleDbConnection aConnection = new OleDbConnection(databaseConnectionString);
Line 82: aConnection.Open();
Line 83:
Line 84: try

Source File: C:\Program Files\devnz\gbpvr\web\Info.aspx.cs Line: 82

Stack Trace:

[OleDbException (0x80004005): Unspecified error]
System.Data.OleDb.OleDbConnection.ProcessResults(Int32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvider() +51
System.Data.OleDb.OleDbConnection.Open() +203
gbweb.Info.Page_Load(Object sender, EventArgs e) in C:\Program Files\devnz\gbpvr\web\Info.aspx.cs:82
System.Web.UI.Control.OnLoad(EventArgs e) +55
System.Web.UI.Control.LoadRecursive() +27
System.Web.UI.Page.ProcessRequestMain() +750[/SIZE]

There does not seem to be any other debug info outside of the .net log (nothing in GBPVR logs).

I've tried:
- Accessing from local PC (using localhost) as well as remote
- IE & Firefox
- Disabling all security/other software
- Different ports, loging (inc. autologin)
- GB-PVR V95.16, V95.16+V31 & 96.8
- All XP/.net updates applied.

Thanks
Silverstone LC10M with iMON
Gigabyte 780G+4850e, AMD 6570
Blackgold BGT3620, Harmony 555 Remote
Win7 32-bit, SAF
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#767
2006-02-22, 01:47 PM
do you have a zap.mdb in your gbpvr folder? if you rename it does it help?
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#768
2006-02-22, 01:53 PM
Quote:do you have a zap.mdb in your gbpvr folder? if you rename it does it help?
No zap.mdb. From looking at zaptools.cs the part where the error was seemed to be checking whether zaptools was installed or not. Thanks
Silverstone LC10M with iMON
Gigabyte 780G+4850e, AMD 6570
Blackgold BGT3620, Harmony 555 Remote
Win7 32-bit, SAF
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#769
2006-02-22, 03:57 PM (This post was last modified: 2006-02-22, 04:45 PM by b00sfuk.)
I seem to have found the cause of the web admin problem I described a few posts back. It seems to be due to having the Redrat Changer Plugin selected in the Capture source. If I change this to "no channel changer" then the web admin works 100%.
I've attached the log but can't understand why this might be causing the issue. The Redrat changer plugin is built into GB-PVR and uses no other software.
Anybody any ideas please? Have I done something stupid or is this a bug for Sub?

EDIT: Just found the solution (http://forums.nextpvr.com/showthread.php...edrat.dll). Creating a web/plugins directory and copying the redrat.dll file from gbpvr into there solved it.
Silverstone LC10M with iMON
Gigabyte 780G+4850e, AMD 6570
Blackgold BGT3620, Harmony 555 Remote
Win7 32-bit, SAF
djdafreund
Offline

Member

Posts: 104
Threads: 15
Joined: Apr 2005
#770
2006-02-24, 07:05 AM
libop Wrote:Hi everyone !
I'm developping a simple WAP (for mobile phones) version of Web Admin.

For now, this version allows to record from a start time to a end time for a given channel.

It works great except that I would like to avoid (for test purposes only) the login screen which causes problems on the mobile phone browser. That screen appears when I try to reach my http://ip:port/gbpvr/wap.aspx page.
Could you give me a advice ?

As another question I would also like to know if it's normal that the records correctly schedule when my asp.net pages are in the gbpvr/web/ folder and are not working when those same pages are in my wwwroot folder, even if I've the GBPVR.Public.dll and GBPVR.Backend.common.dll and GBPVRRecordingService.exe in the bin directory of my asp.net project ?

Thanks for anyone that could help me !

Good work you're doing here.

libop

That would be VERY nice to happen when your done with it. Another approach to the more limited WAP browsers, is the FREE version of Opera that works on most phones. There's not a site i haven't been able to visit yet, compared to the WAP browser build in. It's works REALLY,REALLY well. And free.
« Next Oldest | Next Newest »

Users browsing this thread: 3 Guest(s)

Pages (161): « Previous 1 … 75 76 77 78 79 … 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,108 2006-08-04, 06:34 PM
Last Post: HtV
  Enhanced Web Admin Hobson 3 2,384 2006-06-09, 07:47 AM
Last Post: Hobson
  Enhanced Web Admin (Time Slice error?) SFX Group 2 1,837 2006-02-04, 08:10 PM
Last Post: normanr
  Web Admin suggested feature babybob 0 1,155 2006-01-31, 10:12 PM
Last Post: babybob
  Enhanced Web Admin Request psycik 1 1,343 2005-10-10, 08:16 PM
Last Post: UncleJohnsBand
  reoccuring + web admin aegisx 0 1,176 2005-01-25, 10:57 PM
Last Post: aegisx
  GBPVR Web Admin KingArgyle 8 4,080 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