[Help] Md5 password is incorrect, how to fix it?

Results 1 to 3 of 3
  1. #1
    Enthusiast AlikKk is offline
    MemberRank
    Jul 2014 Join Date
    34Posts

    [Help] Md5 password is incorrect, how to fix it?

    HI ALL
    what do i have to do?

    i created my own server, but i cant create account for me,
    1) i added this file WZ_MD5_MOD.dll to mssql/bin
    2)then ran this query:
    USE [master]
    GO


    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[XP_MD5_EncodeKeyVal]') and OBJECTPROPERTY(id, N'IsExtendedProc') = 1)
    exec sp_dropextendedproc N'[dbo].[XP_MD5_EncodeKeyVal]'
    GO


    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS OFF
    GO


    exec sp_addextendedproc N'XP_MD5_EncodeKeyVal', N'WZ_MD5_MOD.dll'
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO




    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[XP_MD5_CheckValue]') and OBJECTPROPERTY(id, N'IsExtendedProc') = 1)
    exec sp_dropextendedproc N'[dbo].[XP_MD5_CheckValue]'
    GO


    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS OFF
    GO


    exec sp_addextendedproc N'XP_MD5_CheckValue', N'WZ_MD5_MOD.dll'
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO


    USE [MuOnline]
    GO
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[SP_MD5_ENCODE_VALUE]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
    drop procedure [dbo].[SP_MD5_ENCODE_VALUE]
    GO


    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS OFF
    GO


    CREATE PROCEDURE SP_MD5_ENCODE_VALUE


    @btInStr VARCHAR(10),
    @btInStrIndex VARCHAR(10)


    --RETURNS BINARY(16)
    --Created By WebZen
    --Adapted By [CzF]Deathway
    AS
    BEGIN
    DECLARE @btOutVal BINARY(16)


    EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT
    UPDATE MEMB_INFO SET memb__pwd = @btOutVal WHERE memb___id = @btInStrIndex
    RETURN @btOutVal
    END
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO

    3) again it is written in mu maker:
    String or binary data would be truncated.
    The statement has been terminated.



    WHAT TO DO PLS HELP :/


  2. #2
    Developer DNC is offline
    DeveloperRank
    Oct 2011 Join Date
    2,493Posts

    Re: [Help] Md5 password is incorrect, how to fix it?

    Read the Rules before posting.
    Use Title Tags.
    Put your thread in the correct forum subsection or it will be deleted and you may receive an infraction.

  3. #3
    Enthusiast AlikKk is offline
    MemberRank
    Jul 2014 Join Date
    34Posts

    Re: [Help] Md5 password is incorrect, how to fix it?

    Quote Originally Posted by DNC View Post
    Read the Rules before posting.
    Use Title Tags.
    Put your thread in the correct forum subsection or it will be deleted and you may receive an infraction.
    what is the problem in the post?



Advertisement