CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.security Tags:
Item Type: NewsGroup Date Entered: 3/15/2008 4:09:59 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 4 Views: 40 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
5 Items, 1 Pages 1 |< << Go >> >|
smaddaloni
Asp.Net User
Godaddy hosting troubles3/15/2008 4:09:59 AM

0/0

Hey people,

    I just recently started developing websites (really just 3 weeks) so please excuse me if my terminology for different things isn't correct. I have developed the website using visual web delevoper 2005 and the server-side I am using is ASP.NET 2.0. In VWD I used the login controls they made available and by using those it created a ASPNETDB.mdf. I also created my own database using VWD called Customers.mdf. Everything works perfect when I am testing it locally but when I FTP'd it that when things went bad. I have been having problems here and there but his one I am at a loss. I am very new to this so sometimes I have a hard time of seeing how different things work together. Here is the error after I turned the customerrors=Off:

Server Error in '/' Application.

An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)

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: An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[SqlException (0x80131904): An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)]
   System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) +739123
   System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) +188
   System.Data.SqlClient.TdsParser.Connect(ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, SqlConnection owningObject) +685966
   System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject) +109
   System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart) +383
   System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance) +181
   System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance) +170
   System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection) +130
   System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnection owningConnection, DbConnectionPool pool, DbConnectionOptions options) +28
   System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject) +424
   System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject) +66
   System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject) +496
   System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection) +82
   System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) +105
   System.Data.SqlClient.SqlConnection.Open() +111
   System.Web.DataAccess.SqlConnectionHolder.Open(HttpContext context, Boolean revertImpersonate) +84
   System.Web.DataAccess.SqlConnectionHelper.GetConnection(String connectionString, Boolean revertImpersonation) +197
   System.Web.Security.SqlMembershipProvider.GetPasswordWithFormat(String username, Boolean updateLastLoginActivityDate, Int32& status, String& password, Int32& passwordFormat, String& passwordSalt, Int32& failedPasswordAttemptCount, Int32& failedPasswordAnswerAttemptCount, Boolean& isApproved, DateTime& lastLoginDate, DateTime& lastActivityDate) +1121
   System.Web.Security.SqlMembershipProvider.CheckPassword(String username, String password, Boolean updateLastLoginActivityDate, Boolean failIfNotApproved, String& salt, Int32& passwordFormat) +105
   System.Web.Security.SqlMembershipProvider.CheckPassword(String username, String password, Boolean updateLastLoginActivityDate, Boolean failIfNotApproved) +42
   System.Web.Security.SqlMembershipProvider.ValidateUser(String username, String password) +83
   System.Web.UI.WebControls.Login.OnAuthenticate(AuthenticateEventArgs e) +160
   System.Web.UI.WebControls.Login.AttemptLogin() +105
   System.Web.UI.WebControls.Login.OnBubbleEvent(Object source, EventArgs e) +99
   System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +35
   System.Web.UI.WebControls.Button.OnCommand(CommandEventArgs e) +115
   System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +163
   System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +7
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +11
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +33
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5102

 

 

I thought it might be the connection string in the web.config file. but everything looks fine. Here is the strings I am using:

<add name="ConnectionString" connectionString="Data Source=p3swhsql-v14.shr.phx3.secureserver.net; Initial Catalog=OCService; User ID='user'; Password='password' Integrated Security=True; User Instance=True"

providerName="System.Data.SqlClient" />

<add name="ASPNETDBConnectionString1" connectionString="Data Source=p3swhsql-v14.shr.phx3.secureserver.net; Initial Catalog=APServices; User ID='user'; Password='password'; Integrated Security=True; User Instance=True"

providerName="System.Data.SqlClient" />

 I have also used the strings above without the:

Integrated Security=True; User Instance=True

on the end.

 

Here is what godaddy gives me to use as a string along with other options which I have tried the last one:

  • ODBC:
  • Driver={SQL Server}; Server=p3swhsql-v14.shr.phx3.secureserver.net; Database=APServices; Uid=APServices; Pwd='your password';
  • OLE DB, OleDbConnection (.NET):
  • Provider=sqloledb; Data Source=p3swhsql-v14.shr.phx3.secureserver.net; Initial Catalog=APServices; User ID=APServices; Password='your password';
  • SqlConnection (.NET):
  • Data Source=p3swhsql-v14.shr.phx3.secureserver.net; Initial Catalog=APServices; User ID=APServices; Password='your password';

If someone could help me out with this problem I would be forever in their debt. Thanks SteveO

smaddaloni
Asp.Net User
Re: Godaddy hosting troubles3/15/2008 9:35:00 PM

0/0

Just checking back to see if anyone new anything about this. I also forgot to add that I only get this message when I am trying to login, create a new account, or anything that has to do with connecting to the database. The default page and public access pages I added work fine. Godaddy has told me it is my problem and that I need to figure it out but I don't see how that is when I have used their connection string that they gave me and it works fine on my local machine. I also used the database publishing wizard to move my databases over. That seemed to work fine all the tables and rows I created are there. Anyway if anyone could help I would appreciate it. Thanks

smaddaloni
Asp.Net User
Re: Godaddy hosting troubles3/16/2008 12:21:25 AM

0/0

Nevermind I found the answer to my own question after some digging. Anyways, thanks me !

XiaoYong Dai –
Asp.Net User
Re: Godaddy hosting troubles3/17/2008 10:31:00 AM

0/0

Hi

It would be very helpful if you can post your solution here. your experience can be beneficial to other community members reading the thread. Thanks for your kind support


Best Regards
XiaoYong Dai
Microsoft Online Community Support

Please remember to click ?Mark as Answer? on the post that helps you, and to click ?Unmark as Answer? if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
smaddaloni
Asp.Net User
Re: Godaddy hosting troubles3/17/2008 5:29:12 PM

0/0

Sorry about that. I was going to and completely forgot. B y the way I have to databases that I am accessing that is why there are two. Godaddy doesn't tell you this but you have to set up the connection string like this:

<connectionStrings>

<add name="ConnectionString" connectionString="Data Source=p3swhsql-v14.shr.phx3.secureserver.net; Initial Catalog=Database1 User ID='userid1'; Password='password1'; Trusted_Connection=False"

providerName="System.Data.SqlClient" />

<remove name="LocalSqlServer"/>

<add name="LocalSqlServer" connectionString="Data Source=p3swhsql-v14.shr.phx3.secureserver.net; Initial Catalog=Database1; User ID='userid1'; Password='password1'; Trusted_Connection=False"

providerName="System.Data.SqlClient" />

<add name="ASPNETDBConnectionString1" connectionString="Data Source=p3swhsql-v14.shr.phx3.secureserver.net; Initial Catalog=Database2; User ID='userid2'; Password='password2'; Trusted_Connection=False"

providerName="System.Data.SqlClient" />

<remove name="LocalSqlServer"/>

<add name="LocalSqlServer" connectionString="Data Source=p3swhsql-v14.shr.phx3.secureserver.net; Initial Catalog=Database2; User ID='userid2'; Password='password2'; Trusted_Connection=False"

providerName="System.Data.SqlClient" />

</connectionStrings>

5 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
The Small Business Owner's Manual: Everything You Need to Know to Start Up and Run Your Business Authors: Joe Kennedy, Pages: 311, Published: 2005
Professional Joomla! Authors: Dan Rahmel, Pages: 457, Published: 2007
202 Things You Can Buy and Sell for Big Profits Authors: James Stephenson, Jason R. Rich, Pages: 260, Published: 2008

Web:
Godaddy hosting troubles - ASP.NET Forums ASP.NET Forums » General ASP.NET » Security » Godaddy hosting troubles .... Re: Godaddy hosting troubles ...
Using Moodle: Trouble installing on godaddy hosting Trouble installing on godaddy hosting. by Dallas Ray Smetter - Tuesday, 10 January 2006, 08:37 AM. I've installed Moodle dozen's of times. ...
trouble with godaddy. pls Help. trouble with godaddy. pls Help. George L. Bronze Member; Bronze Member; User avatar ... Alicia R. Go Daddy Hosting Hosting Blog ...
Creating a PHP.INI file....trouble with uploading limit with ... INI file....trouble with uploading limit with GoDaddy hosting ... that accoriding to GoDaddy there isn't a default php5.ini or php.ini file ...
CGI Script for Go Daddy hosting - Adobe Dreamweaver Forums I just transferred my website to GoDaddy web hosting. ... It was a bummer as I had no trouble for a long time, then a lot of things changed. ...
Trouble with Godaddy DBs, things you should know - Web Host Directory Trouble with Godaddy DBs, things you should know Web Host Directory - Community Chat. ... such as Godaddy. I was forced to buy a diffrent hosting plan from ...
Web Host Industry Review | theWHIR Blogs : GoDaddy vs Digg ... GoDaddy vs Digg: Trouble Ahead for Web Hosts and Resellers? ... Isabel Wang. a 10 year Web hosting veteran, examines the impact emerging Web technologies ...
Go Daddy.com Hosting Central: Got Core? Go Daddy's dedicated hosting business has grown by leaps and bounds over the .... For the trouble tickets, unfortunately, some get canned answers when they ...
Installing WordPress on a GoDaddy Hosting Account | WordPress ... Feb 4, 2008 ... UPDATE: If you are looking for the link to the “GoDaddy Hosting Connection” as described in the video tutorial above and are having trouble ...
New reseller, trouble with godaddy nameservers - Site5 Web Hosting ... New reseller, trouble with godaddy nameservers Customer-to-Customer Q&A -- Resellers.

Videos:
Video Blog #0007 - Hosting Troubles Had to take the garbage out to the street, so I figured I'd talk about the GoDaddy Hosting issues that took place today over DST.




Search This Site:










cool menu skin object from scott mcculloch

webservice integration

multiiple text field validations

debuggin web apps

on table load

richtextbox

masterpage - treeview - expand (easy, but big problem)

creating containers like smcculloch.net

cant add a new record. please help

retrieving user profile values for all users.

set a hyperlink to open in window.

basic question about compiling of asp.net page

declare a method as public

how do you use the keywords feature for vendors on 2.1.2?

enabling non-dnn .aspx pages

display of images with pre 0.96

installin ibuyspy portal

generating module sql scripts

error message shows "server application unavailable"

web.config

asp.net 2.0: access denied to resource when trying to impersonate a local user account

3.1.1: html/text module permission problem

a long one.

asp .net tree

documentation gone...

about rename file in file manager

asp:validator

dnn3.1 request to logoff functinality (session.abandon)

user list / address book

regularexpressions?

 
All Times Are GMT