<!-- Web.Config Configuration File --><configuration> <system.web> <customErrors mode="Off"/> </system.web></configuration>
<!-- Web.Config Configuration File --><configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web></configuration>
Yep, follow the instructions of the error.
It is telling you to change the web.config file so that it can spit out the actual error message.
I believe on the 2nd or 3rd page of my original install instructions thread I told someone how to do this. Go check it out, then post the real-error here.
Hi, I have seen several people having this problem, but I have not seen a solution.
I am getting the generic runtime error, and adding <customErrors mode="Off"/>to the web.config, but it is still giving the same error. it's like it is ignoring that line. I am editing the web.config in the root. Am I supposed to edit others? Help... I cannot troubleshoot with this problem. Thanks.
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>
<!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration>
I solved my own problem.
I accidentally downloaded the .net 2.0 version instead of the .Net 1.1 version of Community server.
Supaleet's instructions say to dl the CS 2.0 version for .net 1.1.
The config files were very different.
My site works on GoDaddy now... Thanks to supaleet.... It will launch soon.
Chavak
Hey all. I tried Supaleet's instructions (which were great), and after I set everything up, I get this error while trying to access my website.
We apologize, but an error occurred and your request could not be completed.
This error has been logged. If you have additional information that you believe may have caused this error please report the problem here.
The path in the path window looks like this at the time of error ("mysite" part is made up)
http://mysite.com/error.htm?aspxerrorpath=/default.aspx
What does that mean?
I am running asp.net 1.1. This was the history of events; ftped files, then remembered (dumb, i know) to uninstall the godaddy version of CS, then ran all SQL queries, then procedures, messed up on procedures, uninstalled MS SQL on godaddy, reinstalled, and ran all the querys/stores procedures correctly, check the #'s of procedures, tables, views, all correspond. .net was set to 1.1 initally.
Any advice would be apprecaited. Should I just deleted all files/sql stuff and do the clean reinstall again?
Thanks.
Dave Stokes:Did you change the web.config file to update the connection string for the SQL Server ?
I bow to you. I copied the wrong connection string from godaddy's sql connection info. the site is up now!
I hope you can help me. I am having trouble getting my site working on Godaddy. I am get the following error. Here is my set up. I am using http://www.jeremywadsworth.com personal kit.
I have customized it and uploaded all my files. I have created a sql database and upload my personal-add.sql
Now all i get is the following error. Any clue on what it could be. When I run it on the local server it pops up fine with no problems. I am banging my head against the wall trying to figure out what to do.
Could not find stored procedure 'site_GetSiteSettings'. 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.Data.SqlClient.SqlException: Could not find stored procedure 'site_GetSiteSettings'. Source Error: Line 143: connection.Open()Line 144: Dim settings As New SiteSettings(0, "", "", "", "", "", "", "", 0, 0, "", 0, "", "")Line 145: Using reader As SqlDataReader = command.ExecuteReader()Line 146: Do While (reader.Read())Line 147: settings = New SiteSettings(CInt(reader("SiteID")), CStr(reader("SiteName")), CStr(reader("SiteSlogan")), CStr(reader("SitePageTitle")), CStr(reader("MetaDescription")), CStr(reader("MetaKeywords")), CStr(reader("ThemeName")), CStr(reader("CopyrightCredits")), CInt(reader("EnableRegistration")), CInt(reader("EnableUserThemes")), CStr(reader("SMTP")), CInt(reader("RequiresAuthentication")), CStr(reader("AuthUsername")), CStr(reader("AuthPassword")))
Line 143: connection.Open()Line 144: Dim settings As New SiteSettings(0, "", "", "", "", "", "", "", 0, 0, "", 0, "", "")Line 145: Using reader As SqlDataReader = command.ExecuteReader()Line 146: Do While (reader.Read())Line 147: settings = New SiteSettings(CInt(reader("SiteID")), CStr(reader("SiteName")), CStr(reader("SiteSlogan")), CStr(reader("SitePageTitle")), CStr(reader("MetaDescription")), CStr(reader("MetaKeywords")), CStr(reader("ThemeName")), CStr(reader("CopyrightCredits")), CInt(reader("EnableRegistration")), CInt(reader("EnableUserThemes")), CStr(reader("SMTP")), CInt(reader("RequiresAuthentication")), CStr(reader("AuthUsername")), CStr(reader("AuthPassword")))
Based on that error, the DB it is connecting to does not have the CS schema or sprocs.
Based on the code snippet though, that is not code from CS. CS is all C#, no VB. Don't know what code is running or what it is supposed to be doing.
change your we.config change customErrros tag mode value to Off (case sensitive)
Copyright© 2008 Telligent Systems Inc. All rights reserved CommunityServer.com • Telligent.com