i got vrs 1.02n from czf ....and i cant make an account...:| ...
http://img301.imageshack.us/img301/9062/erorgt8.th.png
Printable View
i got vrs 1.02n from czf ....and i cant make an account...:| ...
http://img301.imageshack.us/img301/9062/erorgt8.th.png
without md5
how are you so sure? :P looks like you do have md5....
http://img406.imageshack.us/img406/9609/erorvj3.th.png
:2gunsfiring_v1:
try to enable it
in the editor yea... but that doesn't mean shit... try to enable it
i enable it....and i put WZ_MD5_MOD.dll in Microsoft SQL Server\MSSQL\Binn and now i get another error...:|
http://img230.imageshack.us/img230/9034/erorog9.th.png
you need to insert the stored procedure for md5 into your database, ehhm... this is not going to be too easy for you i guess...
maybe i'll make a little guide if im bored and u totally don't understand it...
ok i inserted the stored procedure for md5...now i connect....but i dont login...:|
Test with this editors!! :) I working with it 100% work
Sorry for my bad english
can you post here what exactly did you place in your stored procedure?
here:Code: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