WO_5SQL Connect failed
I Added all the users to database and configured SQL_Base.cs and dbinfo.inc.php
WO_5SQL Connect failed
I Added all the users to database and configured SQL_Base.cs and dbinfo.inc.php
that doesn't help at all.. say what you've changed.. look through the SQL_Base.cs..
Thats all i changed in sqlbaseCode:using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Web; using System.Data.SqlClient; using System.Diagnostics; using System.Configuration; /// <summary> /// Summary description for SQLBase /// </summary> public class SQLBase { string server = "127.0.0.1,11433"; string user = "wz_api_user"; string pass = "r3n3gad3"; string workdb = "warZ"; SqlConnection conn_ = null; public SQLBase() { /* if (ConfigurationManager.AppSettings.Get("WO_Region") == "RU") { server = "localhost,11433"; //server = "rudb1.thewarinc.com,11433"; user = "WOAdmin"; pass = "r3n3gad3"; } else*/ { server = "127.0.0.1,11433"; user = "wz_api_user"; pass = "r3n3gad3";
Is your MSSQL Server running on port 11433 or 1433?
Default is 1433
Port set at 1433 still doesnt connect with either port im not sure i have all database settings right in it lol
same here
what MSSQL do you use?
try instead of 127.0.0.1:
localhost
localhost\\SQLEXPRESS
is the MSSQL Server running on the same machine as the server??
Open up cmd and type 'netstat -an' and tell me if you have any TCP ports listening on port 11433 or 1433
Try that:
look in Services -> SQL Server and start the service if not already running
Now check to see if the ports are listening.
This is what i get now.. is this right?