NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Other Clients Old Stuff (legacy) NextPVR Enhanced Web Admin (NEWA) v
« Previous 1 … 43 44 45 46 47 Next »
.NET Error

 
  • 0 Vote(s) - 0 Average
.NET Error
mor_eli
Offline

Junior Member

Posts: 2
Threads: 1
Joined: Oct 2006
#1
2006-10-20, 03:45 AM
I've tried to install EWA as instructed. I stop the Recording Service, delete the all the files except the BIN folder, and in the Bin Folder I delete AjaxPro2.dll and the ICSharpCode.SharpZipLib.dll As instructed.
I've then extracted the content of the Zip file to the Web folder.

When I re-enable the Recording Service, GBPVR reinstalls the orginal files (The ones i've deleted), and I can't get the EWA to work.

When I try to get to the address of the Web Server, I get the following error thru explorer:

[ATTACHMENT NOT FOUND]


I've tried this three times, with the same result every time.
Any advice will be appreciated.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#2
2006-10-20, 10:03 AM
First....are you running version 97.x or 98.x of GBPVR?

The problem is that you have a gbweb.dll (which is part of EWA in version 97.x) file in your web/bin directory. This file is no longer used in GBPVR and the EWA in versions 98.x and higher.

Per the wiki instructions this needs to be deleted since it is not part of the EWA that comes with 98.x.

You indicated that when you remove the files they get reinstalled....which does occur when you remove things from the web/bin directory.....but....gbweb.dll should not cause this if you are running 98.x of GBPVR.

TRy just removing the gbweb.dll file from the web/bin and let me know what happens.
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
mor_eli
Offline

Junior Member

Posts: 2
Threads: 1
Joined: Oct 2006
#3
2006-10-20, 10:30 PM
I followed your seggetion, and deleted gbweb.dll, and I've got a new error message, this time complaining about global.aspa, whice i've deleted also.

After deleting these two files, it started working. Tnx!!

I'm using version 9.8.13, the latest one posted yesterday.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#4
2006-10-20, 10:53 PM
That's good news.
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
Beefaloo
Offline

Junior Member

Posts: 1
Threads: 0
Joined: Nov 2006
#5
2006-11-05, 04:28 PM
Anyone else got this?
Installed latest EWA by the book, and got a .NET error when posting on the Config-page. After enabling detailed errormessages, I found out that it was complaining about a string.format:

guideParams.strmVideoScaleSize = String.Format("{0:00.00}",Convert.ToDecimal(streamVideoScaleSize.Text));

in Admin.aspx.cs

Decided to make it just
guideParams.strmVideoScaleSize = streamVideoScaleSize.Text;

and then it works fine.

I run on a Swedish XP with langpack in .NET
//
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#6
2006-11-06, 02:38 AM (This post was last modified: 2006-11-06, 04:23 AM by UncleJohnsBand.)
Beefaloo Wrote:Anyone else got this?
Installed latest EWA by the book, and got a .NET error when posting on the Config-page. After enabling detailed errormessages, I found out that it was complaining about a string.format:

guideParams.strmVideoScaleSize = String.Format("{0:00.00}",Convert.ToDecimal(streamVideoScaleSize.Text));

in Admin.aspx.cs

Decided to make it just
guideParams.strmVideoScaleSize = streamVideoScaleSize.Text;

and then it works fine.

I run on a Swedish XP with langpack in .NET
//

One other person reported this type of problem (also from Sweden). The video scale size is to be a decimal number such as 1.0 for 100% of the recorded size or 0.50 to be 1/2 the recorded size.

What number do you have in this field. The default should be 1.0.

Hopefully the below helps....set it to just a 1.....this may be a regional issue.....

Below are the guts of the conversation I had on this issue in another thread:

forzaKGB Wrote:I get error when trying to save/activate settings in the latest version of EWA.

I installed it OK and everything works until I try to submit the changes I made on the Admin.aspx page I get the following error message:

Code:
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.FormatException: Input string was not in a correct format.
Code:
Line 278:            guideParams.strmVideoSizeOpt    = streamVideoSizeOpt.Text;
Line 279:            guideParams.strmVideoSize       = streamVideoSize.Text;
Line 280:            guideParams.strmVideoScaleSize  = String.Format("{0:00.00}",Convert.ToDecimal(streamVideoScaleSize.Text));
Line 281:            streamVideoScaleSize.Text = guideParams.strmVideoScaleSize;
Line 282:
With the following Stack trace:

Code:
[FormatException: Input string was not in a correct format.]
   System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) +2753251
   System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) +119
   System.Decimal.Parse(String s, IFormatProvider provider) +26
   System.Convert.ToDecimal(String value) +85
   gbweb.Admin.hlSubmit_Click(Object sender, EventArgs e) in f:\Program Files\devnz\gbpvr\web\Admin.aspx.cs:280
   System.Web.UI.WebControls.LinkButton.OnClick(EventArgs e) +75
   System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument) +97
   System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +7
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +11
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +172
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +4921
Code:
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.210

forzaKGB Wrote:It is set to Preset. Can this be related to regional settings. In Sweden we do not use decimal point, we use decimal comma. Could this be causing a problem?

It does not matter if I change nothing. It still produces the same error and teh only setting it changes is the colour scheme. Anything else does not change.

It is a bit annoying, I wonder why I am the only one with this problem. That is why I wonder if regional settings could be the cause?

UncleJohnsBand Wrote:Perhaps....I am not real familiar with how regional settings work....

Try selecting scale and then enter just the number one in the box and let me know what happens.

forzaKGB Wrote:Actually it worked, but as standard it sys 1:00. I changed it to just 1 and after that it worked...

Strange, but it seems to be working right now so thanks :-)

/forzaKGB


UncleJohnsBand Wrote:So when you switched over it was set to 1:00 and then you entered just a 1 and now it is ok....correct?

Interesting......

forzaKGB Wrote:That is correct. But since I got it working I can set it to anything and it works. Could it be that some setting was not the correct as per default and when it got set OK things started to work?

Right now everything is working so I am happy :-)
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: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  Error with Web Admin? jksmurf 0 2,322 2019-06-20, 10:34 AM
Last Post: jksmurf
  Server Error in '/' Application smajor 19 16,820 2017-10-27, 12:57 PM
Last Post: mvallevand
  Error when trying to stream from NEWA on PC jksmurf 2 2,790 2017-02-27, 05:12 AM
Last Post: jksmurf
  Server Error in '/' Application [streaming failure] oldman 3 3,029 2017-02-04, 12:48 AM
Last Post: UncleJohnsBand
  Server Error when settign a manual recording in NEWA martinu 2 2,327 2017-01-23, 01:30 AM
Last Post: UncleJohnsBand
  Internal Server Error SilverTiger 5 3,186 2016-07-24, 04:03 PM
Last Post: UncleJohnsBand
  "Record selected" returns error web page ... softfoot 5 3,733 2016-03-26, 01:37 PM
Last Post: UncleJohnsBand
  Server Error in "/" Application ? Lone_Stranger 1 2,395 2016-02-19, 02:10 AM
Last Post: UncleJohnsBand
  Server Error in '/' Application mdenecke 1 2,905 2016-01-13, 03:33 AM
Last Post: UncleJohnsBand
  Server Error when trying to schedule with NEWA in 336? jksmurf 5 3,728 2015-12-12, 12:34 AM
Last Post: jksmurf

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

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

Linear Mode
Threaded Mode