Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

MuCore Database Problem

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 27, 2016
Messages
28
Reaction score
0
Tried to install mucore website, unfortunately I have this error, what seems to be the problem ?
IQN58S7 - MuCore Database Problem - RaGEZONE Forums


LC3aI5E - MuCore Database Problem - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Experienced Elementalist
Joined
Aug 14, 2014
Messages
203
Reaction score
176
Tried to install mucore website, unfortunately I have this error, what seems to be the problem ?
IQN58S7 - MuCore Database Problem - RaGEZONE Forums


LC3aI5E - MuCore Database Problem - RaGEZONE Forums

SQLServer IP, web same host maybe use 127.0.0.1

Code:
//$core['connection_type'] = "ODBC";
$core['connection_type'] = "MSSQL";


#########################################


/*--------------------------------------------------*\
| MuOnline Database Connection Settings              |
|                                                    |
| $core['db_host'] : Database host address           |
| $core['db_name'] : Database name                   |
| $core['db_use'] : SQL Authentication user          |
| $core['db_password'] : SQL Authentication password |
\*--------------------------------------------------*/


$core['db_host'] = "127.0.0.1";
       
$core['db_name'] = "MuOnline";    
     
$core['db_user']= "sa";


$core['db_password'] = "YourSqlPassword";
 

Attachments

You must be registered for see attachments list
Upvote 0
Newbie Spellweaver
Joined
Mar 27, 2016
Messages
28
Reaction score
0
SQLServer IP, web same host maybe use 127.0.0.1

Code:
//$core['connection_type'] = "ODBC";
$core['connection_type'] = "MSSQL";


#########################################


/*--------------------------------------------------*\
| MuOnline Database Connection Settings              |
|                                                    |
| $core['db_host'] : Database host address           |
| $core['db_name'] : Database name                   |
| $core['db_use'] : SQL Authentication user          |
| $core['db_password'] : SQL Authentication password |
\*--------------------------------------------------*/


$core['db_host'] = "127.0.0.1";
       
$core['db_name'] = "MuOnline";    
     
$core['db_user']= "sa";


$core['db_password'] = "YourSqlPassword";

Thank you for your response, I was able to install the website, what I did was instead of MSSQL i changed it to ODBC.
 
Upvote 0
Status
Not open for further replies.
Back
Top