Nightwing Interactive Posted May 24, 2010 Posted May 24, 2010 Hello, I'm having a problem with a test vb web app I uploaded. I did what the page said but I still get the 500 Runtime error. Here is the link to the test page Test Page
Nightwing Interactive Posted May 24, 2010 Author Posted May 24, 2010 Did you check your error log at your cpanel? Yes it is empty.
Nightwing Interactive Posted May 24, 2010 Author Posted May 24, 2010 Username: nwintera Domain: nwinteractive.heliohost.org
Byron Posted May 24, 2010 Posted May 24, 2010 This support request is being escalated to our root admin.
Nightwing Interactive Posted May 24, 2010 Author Posted May 24, 2010 How do I do that? Attached is the web config for the test app.web.zip
Ashoat Posted May 25, 2010 Posted May 25, 2010 The error page tells you how to do that. If that's not good enough, try Google.
Nightwing Interactive Posted May 25, 2010 Author Posted May 25, 2010 The error page tells you how to do that. If that's not good enough, try Google. If you would have took the time to read my first post or looked at the zip file I uploaded you will see I have made the edits to the config file. <system.web> <!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. Visual Basic options: Set strict="true" to disallow all data type conversions where data loss can occur. Set explicit="true" to force declaration of all variables. --> <compilation debug="true" strict="false" explicit="true"> <assemblies> <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="MySql.Data, Version=5.0.9.0, Culture=neutral, PublicKeyToken=C5687FC88969C44D"/></assemblies> </compilation> <pages> <namespaces> <clear/> <add namespace="System"/> <add namespace="System.Collections"/> <add namespace="System.Collections.Generic"/> <add namespace="System.Collections.Specialized"/> <add namespace="System.Configuration"/> <add namespace="System.Text"/> <add namespace="System.Text.RegularExpressions"/> <add namespace="System.Linq"/> <add namespace="System.Xml.Linq"/> <add namespace="System.Web"/> <add namespace="System.Web.Caching"/> <add namespace="System.Web.SessionState"/> <add namespace="System.Web.Security"/> <add namespace="System.Web.Profile"/> <add namespace="System.Web.UI"/> <add namespace="System.Web.UI.WebControls"/> <add namespace="System.Web.UI.WebControls.WebParts"/> <add namespace="System.Web.UI.HtmlControls"/> </namespaces> <controls> <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> </controls> </pages> <!-- The <authentication> section enables configuration of the security authentication mode used by ASP.NET to identify an incoming user. --> <!-- <authentication mode="Windows"/> --> <!-- The <customErrors> section enables configuration of what to do if/when an unhandled error occurs during the execution of a request. Specifically, it enables developers to configure html error pages to be displayed in place of a error stack trace. --> <customErrors mode="Off" defaultRedirect="GenericErrorPage.htm" /> <httpHandlers> <remove verb="*" path="*.asmx"/> <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/> </httpHandlers> <httpModules> <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> </httpModules> </system.web>
Wizard Posted May 25, 2010 Posted May 25, 2010 The error page tells you how to do that. If that's not good enough, try Google. If you would have took the time to read my first post or looked at the zip file I uploaded you will see I have made the edits to the config file. Snappiness doesn't get you better service. As far as I can tell, djbob asked you to enable customError yet the application still does not reflect that.
Ashoat Posted May 25, 2010 Posted May 25, 2010 Again, the page is very clear as to how to enable customErrors. It is not hard to do, and you still haven't done it. If you are confused, use Google. My job is help you when you can't help yourself. In this case, you can very clearly help yourself.
Recommended Posts