I've got the SQL version and am really struggling getting this thing set up on godaddy.com
I've created my MS SQL database with them and gotten my username and password for the database and put it in the SQL_server_connection.asp
And I can never seem to get it to log me in.
Here is what my server is telling me, if any of this info is sensitive and can be used by hackers...please edit it out for me...but i withheld the username/password...i can log in through "open manager" option in my databases using this username/password to see the "tree" for my databases - so that works...but here is the information the server is giving me and i'm pluggin it into sql_server_connection.asp:
| Host Name: |
mysql85.secureserver.net |
This is what I put in into the sql_server_connection.asp
'Enter the details of your SQL server below
strSQLServerName = "mysql85.secureserver.net" 'Holds the name of the SQL Server
strSQLDBUserName = "DBNAME" 'Holds the user name (for SQL Server Authentication)
strSQLDBPassword = "mypassword" 'Holds the password (for SQL Server Authentication)
strSQLDBName = "DBNAME" 'Holds name of a database on the server
'Please note the forum has been optimised for the SQL OLE DB Driver using another driver
'or system DSN to connect to the SQL Server database will course errors in the forum and
'drastically reduce the performance of the forum!
'The SQLOLEDB driver offers the highest performance at this time for connecting to SQL Server databases from within ASP.
'MS SQL Server OLE Driver (If you change this string make sure you also change it in the msSQL_server_setup.asp file when creating the database)
strCon = "Provider=SQLOLEDB;Server=" & strSQLServerName & ";User ID=" & strSQLDBUserName & ";Password=" & strSQLDBPassword & ";Database=" & strSQLDBName & ";"
When I try to run the sql_server_connection.asp file, it first asks for a user name and password, I enter the same user name and password that allow me access to the Database through godaddy and then I get the following error:
Error Connecting to database on SQL Server
Check the following is set up and correct:-
SQL Server User Name SQL Server Password Name of the SQL Server Database name set up by you on the server Empty Database set up by you on the SQL Server
Check also that you have entered the correct details in the file 'SQL_server_connection.asp' found in the admin directory. |
Any help is appreciated. 