
Originally Posted by
blaq
Thanks...
Download this password 'BoR Team'
and run script
1) Copy all files of the file "RegPage_v2.1_by_BoR_Team" in directory your WebServer.
2) Edit the file "config.php".
3) Copy the file "WZ_MD5_MOD.dll" in directory: "C:\Program Files\Microsoft SQL Server\MSSQL\Binn\"
4) Start -> All program -> Microsoft SQL Server -> Query Analyzer. (Hereon by turns we add scripts below)
4.1:
Code:
Use master;
exec sp_addextendedproc 'XP_MD5_EncodeKeyVal', 'WZ_MD5_MOD.dll'
4.2
Code:
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
5) Check to "php_mssql.dll" is enabled in your PHP configuration.
6) Open your Browse and use/test Reg.Page ;)
end.