Homepage Runtime Error with Firefox

Posts   
 
    
jaskey avatar
jaskey
User
Posts: 23
Joined: 09-Jul-2006
# Posted on: 05-Sep-2007 22:30:28   

Is anyone else getting a runtime error on the llbl homepage at...

http://www.llblgen.com

I can see it fine with IE7 but get the following error with Firefox... LLBL Guru's.... better check it out.... I got the same error both at work and at home using Firefox 2.0.0.6

Server Error in '/' 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>

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39614
Joined: 17-Aug-2003
# Posted on: 06-Sep-2007 10:03:31   

I have no problems with firefox 2.0.0.6 and our homepage. Even when I'm logged out or logged in, doesn't matter. Could you remove the cookies in firefox for *.llblgen.com please? (only these are necessary) ?

(edit)According to the eventlog, the error was a validation error: in the form post (I guess on the login form) a '<' or '>' was received and asp.net validation stepped in. Odd...

(edit) I looked at the wrong error, this is the one at 22:23 local time (you posted here around 22:30, so I assume this is your error)

at System.String.InternalSubStringWithChecks(Int32 startIndex, Int32 length, Boolean fAlwaysCopy) at SD.LLBLGenSiteLogic.GUI.Global.Session_Start(Object sender, EventArgs e) at System.Web.SessionState.SessionStateModule.RaiseOnStart(EventArgs e) at System.Web.SessionState.SessionStateModule.CompleteAcquireState() at System.Web.SessionState.SessionStateModule.BeginAcquireState(Object source, EventArgs e, AsyncCallback cb, Object extraData) at System.Web.HttpApplication.AsyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

and the error: Exception type: ArgumentOutOfRangeException Exception message: startIndex cannot be larger than length of string. Parameter name: startIndex

Very very odd... will look into it.

(edit) found it. Very odd though, as it's a cookie date error which apparently has a wrong format all of a sudden.

We'll fix this in the build we'll be pushing online in a couple of days. Thanks for reporting this!

Frans Bouma | Lead developer LLBLGen Pro