GoDaddy Install...

rated by 0 users
This post has 9 Replies | 3 Followers

Not Ranked
Posts 1
Points 35
starz Posted: Tue, May 23 2006 12:25 PM

SupaLeet,

I'm a novice at this, but your GoDaddy instructions were so good I decided to have a go...I believe I completed everything as you detailed, but it seems I left out one small step somewhere along the way...thanks in advance for any suggestions you might have.
Steve

This is the error message I get when I try to log into my site :

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>
Top 500 Contributor
Posts 48
Points 1,275
SupaLeet replied on Sun, Jun 4 2006 12:38 AM

Yep, follow the instructions of the error.  Smile

 

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.

My contribution to the cheap-o's (Godaddy and CS2.0 install instructions): http://communityserver.org/forums/thread/523764.aspx
  • | Post Points: 35
Not Ranked
Posts 9
Points 150
chavak replied on Wed, Jul 5 2006 10:34 AM

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.

===========================================================

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>

Not Ranked
Posts 9
Points 150
chavak replied on Thu, Jul 6 2006 4:40 AM

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

Not Ranked
Posts 15
Points 240
zheka92 replied on Thu, Aug 31 2006 9:51 AM

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 are currently unable to serve your request

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.
 

  • | Post Points: 20
Top 25 Contributor
Posts 1,592
Points 25,105
MVPs
Did you change the web.config file to update the connection string for the SQL Server ?

Dave Stokes On Graffiti
Dave Stokes

  • | Post Points: 20
Not Ranked
Posts 15
Points 240
zheka92 replied on Thu, Aug 31 2006 10:37 AM

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! 

  • | Post Points: 5
Not Ranked
Posts 1
Points 20

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")))
 

  • | Post Points: 20
Top 10 Contributor
Posts 5,284
Points 49,035
CS Developers

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. 

  • | Post Points: 5
Not Ranked
Posts 1
Points 5
talents replied on Fri, Mar 9 2007 4:44 AM

change your we.config change customErrros tag mode value to Off (case sensitive)

 

  • | Post Points: 5
Page 1 of 1 (10 items) | RSS
Powered by Community Server (Commercial Edition), by Telligent Systems

Copyright© 2008 Telligent Systems Inc. All rights reserved
CommunityServer.com  •  Telligent.com