Need some help here with these errors =\

Results 1 to 4 of 4
  1. #1
    Apprentice phantonrx is offline
    MemberRank
    Dec 2009 Join Date
    BrazilLocation
    7Posts

    thumbs down Need some help here with these errors =\

    well the first one is about create an new account. obs: The Database conection is OK!.

    here goes the first ("Cant Create Account"):

    In Cabal Editor:


    the Password is in there but he says that is <NULL> ._.'

    and on query command:



    please ignore the user and the pass just see the error O_o

    so i build a new query code who can insert the data:
    SET IDENTITY_INSERT cabal_auth_table ON
    insert into cabal_auth_table (
    UserNum
    ,ID
    ,Password
    ,[Login]
    ,LoginTime
    ,LogoutTime
    ,AuthType
    ,PlayTime
    ,IdentityNo
    ,LoginEx
    ,LastIp
    ,AuthKey
    ,CreateDate
    ) VALUES (
    0 -- UserNum
    ,'admin' -- ID
    ,'12345' -- Password
    ,0 -- Login
    ,'' -- LoginTime
    ,'' -- LogoutTime
    ,0 -- AuthType
    ,0 -- PlayTime
    ,'' -- IdentityNo
    ,0 -- LoginEx
    ,'' -- LastIp
    ,'' -- AuthKey
    ,'' -- CreateDate
    )
    this add the account (checked in DB)according to my requests but i think still wrong!

    the next error on login it says that Login or Password are wrong
    i really dont know what to do please someone help =\

    im using SQL 2005.

    Thanks!
    Last edited by phantonrx; 09-12-09 at 07:09 PM.


  2. #2
    Enthusiast Brujeria is offline
    MemberRank
    Dec 2009 Join Date
    BrazilLocation
    30Posts

    Re: Errors =\

    query in the place where this "Seu Login" "Sua senha" boot your login and your password. this is what I understand xD
    Last edited by Brujeria; 09-12-09 at 06:17 PM.

  3. #3
    Apprentice phantonrx is offline
    MemberRank
    Dec 2009 Join Date
    BrazilLocation
    7Posts

    Re: Errors =\

    Quote Originally Posted by Brujeria View Post
    query in the place where this "Seu Login" "Sua senha" boot your login and your password. this is what I understand xD
    hahahah no xD

    this query is not working even if you change that \o that“s why i say to look the error not the query \o

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

    Re: Need some help here with these errors =\

    <sings>Another one skipped the guide</sings>



    This means your xp_md5 support isn't working (it kinda has been posted about a lot) and the server can't encrypt the password resulting in an encrypted password of "null" (nothing). Your query would (not tested) at best have inserted a plaintext password which the server would match against an encrypted version (827ccb0eea8a706c4c34a16891f84e7b) which would fail and say "bad password".

    Anyway. Here is the fix. It works for both 32 and 64 bit and is easier than setting up the xp_md5 dll.
    http://forum.ragezone.com/f459/fix-l...64-dll-608699/



Advertisement