- Joined
- Oct 18, 2008
- Messages
- 623
- Reaction score
- 499
Сега ще ви покажа как да оправите(сложите) MD5 в сайта си
Now i will show you how to fix(put) MD5 in your website
1. свалете dll файла WZ_MD5_MOD или го вземете от MuWeb 0.8 или MuWeb 0.9
1. download the dll file WZ_MD5_MOD or you can get it from MuWeb 0.8 or MuWeb 0.9
2. сложете това в Query Analyzer-а
2. put this in the Query Analyzer
3. сложете dll файла в C:\Program Files\Microsoft SQL Server\80\Tools\Binn
3. put the dll file in C:\Program Files\Microsoft SQL Server\80\Tools\Binn
4. в сайта намерете memb__pwd = '$password' с memb__pwd = [dbo].[fn_md5]('$password','$account')
4. in the website change memb__pwd = '$password' with memb__pwd = [dbo].[fn_md5]('$password','$account')
ако е друго и неможете да се оправите пишете в темата
if is something else and you can't make it write in the topic
ако има друга подобна тема моля да ме извините не съм я видял
Credits: =Master=
Now i will show you how to fix(put) MD5 in your website
1. свалете dll файла WZ_MD5_MOD или го вземете от MuWeb 0.8 или MuWeb 0.9
1. download the dll file WZ_MD5_MOD or you can get it from MuWeb 0.8 or MuWeb 0.9
2. сложете това в Query Analyzer-а
2. put this in the Query Analyzer
USE Master
exec sp_addextendedproc N'XP_MD5_CheckValue', N'WZ_MD5_MOD.dll';
GO
Use MuOnline
CREATE FUNCTION [dbo].[fn_md5] (@data VARCHAR(10), @data2 VARCHAR(10))
RETURNS BINARY(16) AS
BEGIN
DECLARE @hash BINARY(16)
EXEC master.dbo.XP_MD5_EncodeKeyVal @data, @data2, @hash OUT
RETURN @hash
END
3. сложете dll файла в C:\Program Files\Microsoft SQL Server\80\Tools\Binn
3. put the dll file in C:\Program Files\Microsoft SQL Server\80\Tools\Binn
4. в сайта намерете memb__pwd = '$password' с memb__pwd = [dbo].[fn_md5]('$password','$account')
4. in the website change memb__pwd = '$password' with memb__pwd = [dbo].[fn_md5]('$password','$account')
ако е друго и неможете да се оправите пишете в темата
if is something else and you can't make it write in the topic
ако има друга подобна тема моля да ме извините не съм я видял
Credits: =Master=
Attachments
Last edited: