MuCore Database Problem

Results 1 to 6 of 6
  1. #1
    Enthusiast Razamastazhe is offline
    MemberRank
    Mar 2016 Join Date
    28Posts

    MuCore Database Problem

    Tried to install mucore website, unfortunately I have this error, what seems to be the problem ?



  2. #2
    vnDev.games DaoVanTrong is offline
    MemberRank
    Aug 2014 Join Date
    VietnamLocation
    203Posts

    ! Re: MuCore Database Problem

    Quote Originally Posted by Razamastazhe View Post
    Tried to install mucore website, unfortunately I have this error, what seems to be the problem ?

    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";

  3. #3
    Enthusiast Razamastazhe is offline
    MemberRank
    Mar 2016 Join Date
    28Posts

    Re: MuCore Database Problem

    Quote Originally Posted by DaoVanTrong View Post
    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.

  4. #4

    Re: MuCore Database Problem

    Quote Originally Posted by Razamastazhe View Post
    Thank you for your response, I was able to install the website, what I did was instead of MSSQL i changed it to ODBC.
    ODBC is not recommended, u will realise it afterwards...

  5. #5
    Enthusiast Razamastazhe is offline
    MemberRank
    Mar 2016 Join Date
    28Posts

    Re: MuCore Database Problem

    Quote Originally Posted by KarLi View Post
    ODBC is not recommended, u will realise it afterwards...
    what should be my db host ? if you are using windows authentication (local) ?

  6. #6

    Re: MuCore Database Problem

    $core['db_host'] = "127.0.0.1";
    i used 127.0.0.1 too but thats not ODBC thats connecting t oyour SQL locally, if it works then leave it like that..
    else put YOUR-PC name and it will be same.
    im talking about ODBC and MSSQL type, mssql is always faster @jacubb tell him about it



Advertisement