Prob. MSSQL2005

Page 1 of 3 123 LastLast
Results 1 to 25 of 68
  1. #1
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Post Prob. MSSQL2005

    When i try to create mine game account i have this error :



    I've used this database pack : http://rapidshare.com/files/13610892...b_9.8.2008.rar

    Help


  2. #2
    The Dinosaur chumpywumpy is offline
    MemberRank
    Jun 2008 Join Date
    /f451/Location
    5,127Posts

    Re: Prob. MSSQL2005

    Null errors when registering accounts are always the same thing. Your xp_md5 support isn't working. Open the "master" database, find the extended procedures folder and locate xp_md5. Check it's properties and make sure the dll is in the right place.

    You can use the query below to test if it's working and if you get a NULL back instead of a password hash it is not working right.

    select account.dbo.fn_md5('test')

  3. #3
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    i must make me sure the xp_md5.dll are in c:\program files\microsoft sql server ???????

    Or not ? , i did not understand very well......

  4. #4
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Prob. MSSQL2005

    no the xp_md5 you downloaded with the server and you can either place it on c:/ or in c:/windows/system32 or anywhere your PATH variable is set!

  5. #5
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    And where i can setting it

  6. #6
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Prob. MSSQL2005

    in the extended procedures of master table , make a new one to point out to {your path to xp_md5.dll}

  7. #7
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    Now i created the table : dbo.fn_md5 in the ( master's table) , now what i must do??


    ( thank for help , this is my first cabal online server...)

  8. #8
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Prob. MSSQL2005

    not table, extended procedure...

  9. #9
    The Dinosaur chumpywumpy is offline
    MemberRank
    Jun 2008 Join Date
    /f451/Location
    5,127Posts

    Re: Prob. MSSQL2005

    Delete the xp_md5 entry from the extended procedures folder in the master database, put the dll in c:\windows\system32 and then run the query below.

    EXEC sp_addextendedproc 'xp_md5', 'xp_md5.dll'

  10. #10
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Post Re: Prob. MSSQL2005

    Ok i have created mine account in manager studio express, and now i have this problem when i try to start the 2.5 server i have a problem:


  11. #11
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Prob. MSSQL2005

    adduser cabal

  12. #12
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    I've created the account. whit the query in managment studio ... i must create in Sql > GameDB > cabal_character_table ????

  13. #13
    Valued Member striker1010 is offline
    MemberRank
    Feb 2009 Join Date
    USLocation
    141Posts

    Re: Prob. MSSQL2005

    You don't create any tables o_o As far as I know when you "restore" the databases everything is set and ready to go on the sql part. Then again I haven't touched this stuff in well over 4 months. So lemme go verify that.


    I think cypher means that you need to create a "cabal" user for the sql itself.
    So that the server can connect to the database. I maybe getting this wrong though. But you don't create any users in the SQL database files. That's for in-game stuff.
    Last edited by striker1010; 20-06-09 at 03:38 AM. Reason: Better Reply

  14. #14
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    striker i've resolved the ''database problem'' now i must create a new player of cabal, and i don't know if i must create from : Sql > GameDB > cabal_character_table or waht?

  15. #15
    Valued Member striker1010 is offline
    MemberRank
    Feb 2009 Join Date
    USLocation
    141Posts

    Re: Prob. MSSQL2005

    cabal_character_table is an already existing table, to create a new character just log into the game and make one.

    If you mean to create an account use the stored procedure "cabal_tool_registerAccount" in ACCOUNT database. Or you can just use one of the GMTools provided in the forums to make an account.

  16. #16
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    Ok i try whit gmtools

  17. #17
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Prob. MSSQL2005

    NO, just type
    adduser cabal
    in centos terminal.

  18. #18
    Valued Member striker1010 is offline
    MemberRank
    Feb 2009 Join Date
    USLocation
    141Posts

    Re: Prob. MSSQL2005

    cypher...what is he trying to do? make an in-game character account? or..is he trying to make a character..or what..i am confused lol

  19. #19
    The Dinosaur chumpywumpy is offline
    MemberRank
    Jun 2008 Join Date
    /f451/Location
    5,127Posts

    Re: Prob. MSSQL2005

    The errors in the screenshot say the user "cabal" doesn't exist on Centos and it needs to. This should have been created when the cabal .rpm was installed but "adduser cabal" would create it manually.

  20. #20
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    When i type '''adduser cabal'' in centos terminal it answer that the user: CABAL EXIST

  21. #21
    Apprentice FaUZaNeVVa is offline
    MemberRank
    Apr 2009 Join Date
    13Posts

    Re: Prob. MSSQL2005

    What version of CentOS You're currently using, bud? I'm using CentOS-4.7.ServerCD-i386A and everything is Ok.

    Maybe You need to reinstall it :|

  22. #22
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    I have your centos version and it work ok ............, i can try to delete the user ''cabal' and create it again ... but which is the command for delete a user ?

  23. #23
    Apprentice FaUZaNeVVa is offline
    MemberRank
    Apr 2009 Join Date
    13Posts

    Re: Prob. MSSQL2005

    [root@cabal ~]# userdel
    usage: userdel [-r] name

    userdel -r cabal :P

  24. #24
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    thanks :D .

  25. #25
    Enthusiast LucaWeb93 is offline
    MemberRank
    Jan 2009 Join Date
    39Posts

    Re: Prob. MSSQL2005

    Now i've this error :




    -.-'''''''

    ps:cypher anchio sono italiano se mi devi spiegare qualcosa spiegala in italiano grazie :P



Page 1 of 3 123 LastLast

Advertisement