Hello guys,
i have a problem installing MuCore 1.0.8. I'm stuck here, I can skip everything ,but Rankings etc won't work then.
Here is the picture. Screenshot by Lightshot
Thanks.
Printable View
Hello guys,
i have a problem installing MuCore 1.0.8. I'm stuck here, I can skip everything ,but Rankings etc won't work then.
Here is the picture. Screenshot by Lightshot
Thanks.
maybe is in your config file
$core['connection_type'] = "mssql";
and u need to change to
$core['connection_type'] = "MSSQL";
?
Please next time use prefix [Help] on your topic
View the Rules of each section you post please,
[Help] fixed
Regards Dope.
When I use:
$core['connection_type'] = "mssql"; without capital letters it works but no tables been created, and if i capitalize it
$core['connection_type'] = "MSSQL";
I get Screenshot by Lightshot
Thanks :)
so that was the solution? now u gotta fix connection?
This issue is all depending on what sql server and what files you are using.
Code:/*-------------------------------------*\
| MUCore SQL Connection Type: |
| |
| MSSQL : Connect using mssql_conect() |
| ODBC : Connect using 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'] = "SQL SERVER INSTANCE NAME HERE";
$core['db_name'] = "MuOnline";
$core['db_user']= "sa";
$core['db_password'] = "mypassword";
######################################################