Hello!
I just installed MuCore version 1.0.8 and first of all, i changed the configs:
<?
/*------------------------------------------*\
| Server Databases: |
| |
| 0 : MuOnline [database] |
| 1 : MuOnline and Me_Muonline [databases] |
\*------------------------------------------*/
/**
* @+===========================================================================+
* @¦ MuCore 1.0.8 English. ¦
* @¦ Credits: Isumeru & MaryJo ¦
* @¦ +=======================================================================+ ¦
* @¦ ¦ "He who Copy/Pastes Shall Inherit My Mistakes But Not My Knowledge" ¦ ¦
* @¦ +=======================================================================+ ¦
* @¦ Official Site: Bizarre Mind Networks � Humor, Tecnología, Juegos y más ¦
* @+===========================================================================+
* @¦ Our Allied Site: Comunidad Chileplanet Experience Games Servers ¦
* @+===========================================================================+
*/
$core['server_use_2_db'] = "0";
##############################################
/*-------------------------------------*\
| MUCore SQL Connection Type: |
| |
| MSSQL : Connect using mssql_conect() |
| ODBC : Connect using odbc |
\*-------------------------------------*/
$core['connection_type'] = "MSSQL"; <- Here I changed from ODBC to 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'] = "[mypassword]";
######################################################
/*------------------------------------------------------------------*\
| NOTE: |
| Edit this only if $core['server_use_2_db'] value is set to 1, |
| this mean your server use MuOnline and Me_MuOnline databases. |
| |
| Me_MuOnline Database Connection Settings |
| |
| $core['db_host2'] : Database host address |
| $core['db_name2'] : Database name |
| $core['db_use2'] : SQL Authentication user |
| $core['db_password2'] : SQL Authentication password |
\*------------------------------------------------------------------*/
$core['db_host2'] = "127.0.0.1";
$core['db_name2'] = "MuOnline";
$core['db_user2']= "sa";
$core['db_password2'] = "[mypassword]";
######################################################################
/*-------------------------------------------------*\
| MUCore Admin Control Panel: |
| |
| $core['admin_username'] : Administrator user |
| $core['admin_password'] : Administrator password |
\*-------------------------------------------------*/
$core['admin_username'] = '[My Admin Login]';
$core['admin_password'] = '[My Admin Password]';
#####################################################
/*-----------------------------------------------------*\
| MUCore's MUCoins SQL Table Settings: |
| |
| MU_COINS_TABLE : MUCoins table name |
| MU_COINS_COLUMN : MUCoins (Credits) column name |
| MU_COINS_USERID_COLUMN : MUCoins User ID column name |
\*-----------------------------------------------------*/
define('MU_COINS_TABLE','memb_credits');
define('MU_COINS_COLUMN','credits');
define('MU_COINS_USERID_COLUMN','memb___id');
define('MU_SCOINS_TABLE','memb_scredits');
define('MU_SCOINS_COLUMN','scredits');
define('MU_SCOINS_USERID_COLUMN','memb___sid');
#########################################################
/*--------------------------------------*\
| MUCore Debug Settings: |
| |
| 1 : Debug enabled |
| 0 : Debug disabled |
| |
| Note: Enable debug only if necessary. |
\*--------------------------------------*/
$core['debug'] = 0;
##########################################
/**
* @+===========================================================================+
* @¦ MuCore 1.0.8 English. ¦
* @¦ Credits: Isumeru & MaryJo ¦
* @¦ +=======================================================================+ ¦
* @¦ ¦ "He who Copy/Pastes Shall Inherit My Mistakes But Not My Knowledge" ¦ ¦
* @¦ +=======================================================================+ ¦
* @¦ Official Site: Bizarre Mind Networks � Humor, Tecnología, Juegos y más ¦
* @+===========================================================================+
* @¦ Our Allied Site: Comunidad Chileplanet Experience Games Servers ¦
* @+===========================================================================+
*/
?>
The RED fields is where i changed.
On the install.php part, i left the Serial Number field empty and it went very well, I got no error at all! Then, I started to test by loging in my account to access the user CP, and here is what i got:
Mucoreusercp1.PNG
As you can see, the characters appeared, as it should, and I got one character to reset. I clicked to reset the Character and I just got redirected to the same page, but it appeared like this:
Mucoreusercp2.PNG
The characters didn't show up again, and it didn't reset my Character. If I access the others CP's options I get the same issue, the page opens, but the characters doesn't show up. I already had this account created before installing this website, so maybe it was a problem with my old account, so I tried to create a new one using the website, I created it without any issue, then, I created a character and logged in the User CP to check, and I got the very same issue.
I am using Season 6 Ep. 3 Titan Tech MuServer (11.11.92), Windows 7 64 bits, Microsoft SQL 2008 64bits and AppServ 2.5.x
It is an issue with the User CP only, because if I go the ranking pages, i can see all the characters of the server, as it should appear. Does anyone know what is the cause of this issue and how to fix it?
Thanks,
lvenonl
I just installed MuCore version 1.0.8 and first of all, i changed the configs:
Quote:
<?
/*------------------------------------------*\
| Server Databases: |
| |
| 0 : MuOnline [database] |
| 1 : MuOnline and Me_Muonline [databases] |
\*------------------------------------------*/
/**
* @+===========================================================================+
* @¦ MuCore 1.0.8 English. ¦
* @¦ Credits: Isumeru & MaryJo ¦
* @¦ +=======================================================================+ ¦
* @¦ ¦ "He who Copy/Pastes Shall Inherit My Mistakes But Not My Knowledge" ¦ ¦
* @¦ +=======================================================================+ ¦
* @¦ Official Site: Bizarre Mind Networks � Humor, Tecnología, Juegos y más ¦
* @+===========================================================================+
* @¦ Our Allied Site: Comunidad Chileplanet Experience Games Servers ¦
* @+===========================================================================+
*/
$core['server_use_2_db'] = "0";
##############################################
/*-------------------------------------*\
| MUCore SQL Connection Type: |
| |
| MSSQL : Connect using mssql_conect() |
| ODBC : Connect using odbc |
\*-------------------------------------*/
$core['connection_type'] = "MSSQL"; <- Here I changed from ODBC to 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'] = "[mypassword]";
######################################################
/*------------------------------------------------------------------*\
| NOTE: |
| Edit this only if $core['server_use_2_db'] value is set to 1, |
| this mean your server use MuOnline and Me_MuOnline databases. |
| |
| Me_MuOnline Database Connection Settings |
| |
| $core['db_host2'] : Database host address |
| $core['db_name2'] : Database name |
| $core['db_use2'] : SQL Authentication user |
| $core['db_password2'] : SQL Authentication password |
\*------------------------------------------------------------------*/
$core['db_host2'] = "127.0.0.1";
$core['db_name2'] = "MuOnline";
$core['db_user2']= "sa";
$core['db_password2'] = "[mypassword]";
######################################################################
/*-------------------------------------------------*\
| MUCore Admin Control Panel: |
| |
| $core['admin_username'] : Administrator user |
| $core['admin_password'] : Administrator password |
\*-------------------------------------------------*/
$core['admin_username'] = '[My Admin Login]';
$core['admin_password'] = '[My Admin Password]';
#####################################################
/*-----------------------------------------------------*\
| MUCore's MUCoins SQL Table Settings: |
| |
| MU_COINS_TABLE : MUCoins table name |
| MU_COINS_COLUMN : MUCoins (Credits) column name |
| MU_COINS_USERID_COLUMN : MUCoins User ID column name |
\*-----------------------------------------------------*/
define('MU_COINS_TABLE','memb_credits');
define('MU_COINS_COLUMN','credits');
define('MU_COINS_USERID_COLUMN','memb___id');
define('MU_SCOINS_TABLE','memb_scredits');
define('MU_SCOINS_COLUMN','scredits');
define('MU_SCOINS_USERID_COLUMN','memb___sid');
#########################################################
/*--------------------------------------*\
| MUCore Debug Settings: |
| |
| 1 : Debug enabled |
| 0 : Debug disabled |
| |
| Note: Enable debug only if necessary. |
\*--------------------------------------*/
$core['debug'] = 0;
##########################################
/**
* @+===========================================================================+
* @¦ MuCore 1.0.8 English. ¦
* @¦ Credits: Isumeru & MaryJo ¦
* @¦ +=======================================================================+ ¦
* @¦ ¦ "He who Copy/Pastes Shall Inherit My Mistakes But Not My Knowledge" ¦ ¦
* @¦ +=======================================================================+ ¦
* @¦ Official Site: Bizarre Mind Networks � Humor, Tecnología, Juegos y más ¦
* @+===========================================================================+
* @¦ Our Allied Site: Comunidad Chileplanet Experience Games Servers ¦
* @+===========================================================================+
*/
?>
On the install.php part, i left the Serial Number field empty and it went very well, I got no error at all! Then, I started to test by loging in my account to access the user CP, and here is what i got:
Mucoreusercp1.PNG
As you can see, the characters appeared, as it should, and I got one character to reset. I clicked to reset the Character and I just got redirected to the same page, but it appeared like this:
Mucoreusercp2.PNG
The characters didn't show up again, and it didn't reset my Character. If I access the others CP's options I get the same issue, the page opens, but the characters doesn't show up. I already had this account created before installing this website, so maybe it was a problem with my old account, so I tried to create a new one using the website, I created it without any issue, then, I created a character and logged in the User CP to check, and I got the very same issue.
I am using Season 6 Ep. 3 Titan Tech MuServer (11.11.92), Windows 7 64 bits, Microsoft SQL 2008 64bits and AppServ 2.5.x
It is an issue with the User CP only, because if I go the ranking pages, i can see all the characters of the server, as it should appear. Does anyone know what is the cause of this issue and how to fix it?
Thanks,
lvenonl