MuCore 1.0.8 Table Creation

Results 1 to 6 of 6
  1. #1
    Member Tukas is offline
    MemberRank
    Feb 2016 Join Date
    IrelandLocation
    73Posts

    MuCore 1.0.8 Table Creation

    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.
    Last edited by Dope Boy One; 06-03-16 at 03:47 PM.


  2. #2

    Re: MuCore 1.0.8 Table Creation

    maybe is in your config file
    $core['connection_type'] = "mssql";

    and u need to change to
    $core['connection_type'] = "MSSQL";

    ?

  3. #3
    Trafalgar D. Water Law Dope Boy One is offline
    ModeratorRank
    Jun 2005 Join Date
    HellasLocation
    1,218Posts

    Re: MuCore 1.0.8 Table Creation

    Please next time use prefix [Help] on your topic
    View the Rules of each section you post please,

    [Help] fixed

    Regards Dope.

  4. #4
    Member Tukas is offline
    MemberRank
    Feb 2016 Join Date
    IrelandLocation
    73Posts

    Re: MuCore 1.0.8 Table Creation

    Quote Originally Posted by KarLi View Post
    maybe is in your config file
    $core['connection_type'] = "mssql";

    and u need to change to
    $core['connection_type'] = "MSSQL";

    ?

    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 :)

  5. #5

    Re: MuCore 1.0.8 Table Creation

    so that was the solution? now u gotta fix connection?

  6. #6
    Gamma DragonSeth is offline
    MemberRank
    Aug 2011 Join Date
    2,996Posts

    Re: MuCore 1.0.8 Table Creation

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



Advertisement