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 … 37 38 39 40 41 … 47 Next »
EWA - 98.13 - Episode Search error

 
  • 0 Vote(s) - 0 Average
EWA - 98.13 - Episode Search error
Bwangster12
Offline

Member

Posts: 100
Threads: 18
Joined: Mar 2006
#21
2007-03-24, 04:13 AM
Ok, this is definitely what you meant, I'll also attach it.

Server Error in '/gbpvr' Application.
Index was outside the bounds of the array.
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.IndexOutOfRangeException: Index was outside the bounds of the array.

Source Error:

Line 645: displayProgramme.FillProgrammeTreeArrayItem(treeItem, Server, programme, scheduledRecording, true, channel);
Line 646: //Add the loaded ProgrammeTreeITem to the Array
Line 647: pgmTree[treeIdx] = treeItem;
Line 648: treeIdx = treeIdx + 1;
Line 649: #endregion


Source File: c:\Program Files\devnz\gbpvr\web\SearchResults.aspx.cs Line: 647

Stack Trace:

[IndexOutOfRangeException: Index was outside the bounds of the array.]
gbweb.SearchResults.createOutputTable(Programme programme, Channel channel, ScheduledRecording scheduledRecording, ProgrammeDisplay displayProgramme) in c:\Program Files\devnz\gbpvr\web\SearchResults.aspx.cs:647
gbweb.SearchResults.SearchForEpisode(Boolean checkTitle, Boolean checkDesc, Boolean checkSubtitle, Boolean matchTitle, Boolean matchDesc, Boolean matchSubtitle, Boolean matchUniqueID, String searchFor, Int32 minLength, Int32 maxLength, String[] channels, String[] selectedGenre) in c:\Program Files\devnz\gbpvr\web\SearchResults.aspx.cs:590
gbweb.SearchResults.SearchResults_PreRender(Object sender, EventArgs e) in c:\Program Files\devnz\gbpvr\web\SearchResults.aspx.cs:148
System.EventHandler.Invoke(Object sender, EventArgs e) +0
System.Web.UI.Control.OnPreRender(EventArgs e) +80
System.Web.UI.Control.PreRenderRecursiveInternal() +88
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5731


Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.210
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#22
2007-03-24, 03:37 PM
Bwangster12 Wrote:Ok, this is definitely what you meant, I'll also attach it.

Server Error in '/gbpvr' Application.
Index was outside the bounds of the array.
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.IndexOutOfRangeException: Index was outside the bounds of the array.

Source Error:

Line 645: displayProgramme.FillProgrammeTreeArrayItem(treeItem, Server, programme, scheduledRecording, true, channel);
Line 646: //Add the loaded ProgrammeTreeITem to the Array
Line 647: pgmTree[treeIdx] = treeItem;
Line 648: treeIdx = treeIdx + 1;
Line 649: #endregion


Source File: c:\Program Files\devnz\gbpvr\web\SearchResults.aspx.cs Line: 647

Stack Trace:

[IndexOutOfRangeException: Index was outside the bounds of the array.]
gbweb.SearchResults.createOutputTable(Programme programme, Channel channel, ScheduledRecording scheduledRecording, ProgrammeDisplay displayProgramme) in c:\Program Files\devnz\gbpvr\web\SearchResults.aspx.cs:647
gbweb.SearchResults.SearchForEpisode(Boolean checkTitle, Boolean checkDesc, Boolean checkSubtitle, Boolean matchTitle, Boolean matchDesc, Boolean matchSubtitle, Boolean matchUniqueID, String searchFor, Int32 minLength, Int32 maxLength, String[] channels, String[] selectedGenre) in c:\Program Files\devnz\gbpvr\web\SearchResults.aspx.cs:590
gbweb.SearchResults.SearchResults_PreRender(Object sender, EventArgs e) in c:\Program Files\devnz\gbpvr\web\SearchResults.aspx.cs:148
System.EventHandler.Invoke(Object sender, EventArgs e) +0
System.Web.UI.Control.OnPreRender(EventArgs e) +80
System.Web.UI.Control.PreRenderRecursiveInternal() +88
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5731


Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.210

Yep....that is what I was looking for.....it would appear that your search is returning a large number of results......I will increase the arrary size with the next release.

You can patch it yourself by editing the following line in the searchresults.aspx.cs file (around line 29 in the file).

Code:
pgmTree = new ProgramTreeItem[5000];

Change the 5000 to 10000 and see if you are then ok.

Let me know.
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
Bwangster12
Offline

Member

Posts: 100
Threads: 18
Joined: Mar 2006
#23
2007-03-24, 04:47 PM
Well, that did appear to work from my girlfriends house. The true test will be my office computer. MWAH HAHAHAHAHA!
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#24
2007-03-25, 01:54 AM
Bwangster12 Wrote:Well, that did appear to work from my girlfriends house. The true test will be my office computer. MWAH HAHAHAHAHA!

I can't wait..... Wink
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
Bwangster12
Offline

Member

Posts: 100
Threads: 18
Joined: Mar 2006
#25
2007-03-27, 03:54 AM
Alright... this worked. Searches perfectly now.

Thanks Big Grin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): « Previous 1 2 3


Possibly Related Threads…
Thread Author Replies Views Last Post
  Error with Web Admin? jksmurf 0 2,331 2019-06-20, 10:34 AM
Last Post: jksmurf
  Episode search missing in 4.2.4 UncT 4 3,097 2019-03-08, 06:08 PM
Last Post: UncT
  NEWA Auto-Search Command Line Interface (CLI) UncleJohnsBand 40 37,581 2018-05-09, 12:50 AM
Last Post: jksmurf
  Server Error in '/' Application smajor 19 16,851 2017-10-27, 12:57 PM
Last Post: mvallevand
  Error when trying to stream from NEWA on PC jksmurf 2 2,793 2017-02-27, 05:12 AM
Last Post: jksmurf
  Server Error in '/' Application [streaming failure] oldman 3 3,040 2017-02-04, 12:48 AM
Last Post: UncleJohnsBand
  Server Error when settign a manual recording in NEWA martinu 2 2,333 2017-01-23, 01:30 AM
Last Post: UncleJohnsBand
  Internal Server Error SilverTiger 5 3,194 2016-07-24, 04:03 PM
Last Post: UncleJohnsBand
  "Record selected" returns error web page ... softfoot 5 3,743 2016-03-26, 01:37 PM
Last Post: UncleJohnsBand
  Server Error in "/" Application ? Lone_Stranger 1 2,408 2016-02-19, 02:10 AM
Last Post: UncleJohnsBand

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

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

Linear Mode
Threaded Mode