Plain and simple: Allows users to create accounts on your 99.60+ server securely through a website.
Current Version: v1.0
Bugs? Let me know.
Plain and simple: Allows users to create accounts on your 99.60+ server securely through a website.
Current Version: v1.0
Bugs? Let me know.
thx man!
i'l test it
?????????????
Hmm... good but I need example for .asp :(
Works fine! I only change your Me_MuOnline to MuOnline
Can you add change password pls?...
Thanks! keep it up!
I'll add change password later.
this was already posted 3 weaks ago.
http://forum.ragezone.com/guides/gui...0t-140100.html
You just simplified this.
great job but i hope you can add the important options like lvl reset, pk reset and stuffs.
Nah, you're completely off-topic.Originally Posted by mig1st4ck
Thanks a lot for this page
Naa this code is the same of that topic.
Guys its simple to put all working in this verson. the only problem is the Password, so you need to create a collum for example named menb__pwd2, with varchar instead of binary.
and them use register to put the password in this collum too. So you will get 2 passwords in database 1 encrypted and other not. them you just use all pages you want like reset addstats ... and instead check for menb__pwd cheack for memb__pwd2.
Originally Posted by DataMatrix
Loool not really, same old stuff
Maybe it is old stuff, but its nice and easy and probably has the best layout from them all.
But you guys dont appreciate good work, some people release stuff and you guys act like assholes.
Go screw yourself if you call yourself a RaGEZONER, because you've only just about joined, unlike me whose been here for nearly two years.
PS: Thanks for bumping my topic :).
for me password do not match
wtf? how fix?Warning: mssql_query() [function.mssql-query]: message: Could not find stored procedure 'Encript'. (severity 16) in c:\AppServ\www\reg\register.php on line 67
Warning: mssql_query() [function.mssql-query]: Query failed in c:\AppServ\www\reg\register.php on line 67
i only said this topic was old.Originally Posted by DataMatrix
your problem is in encrypt. You dident creat the Stored procedure Encrypt.Originally Posted by AdidasS
Code:Quote: Warning: mssql_query() [function.mssql-query]: message: Could not find stored procedure 'Encript'. (severity 16) in c:\AppServ\www\reg\register.php on line 67 Warning: mssql_query() [function.mssql-query]: Query failed in c:\AppServ\www\reg\register.php on line 67
Originally Posted by AdidasS
u must make ecrypta procedure before register in web
use sql query analizer
also need this file: WZ_MD5_MOD.dll
First Copy WZ_MD5_MOD.dll to Program Files\Microsoft SQL Server\MSSQL\Binn
its all in guides section next time try to use "search"
http://forum.ragezone.com/attachment...r?d=1149192850
first do this:
so that ur db use that dllCode:use master go sp_addextendedproc 'XP_MD5_EncodeKeyVal', 'WZ_MD5_MOD.dll' go sp_addextendedproc 'XP_MD5_CheckValue', 'WZ_MD5_MOD.dll' go exit
then use db memuonline on query analyzer
and type this
after this u can register accounts through ur webCode:if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[UFN_MD5_CHECKVALUE]') and xtype in (N'FN', N'IF', N'TF')) drop function [dbo].[UFN_MD5_CHECKVALUE] GO if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[UFN_MD5_ENCODEVALUE]') and xtype in (N'FN', N'IF', N'TF')) drop function [dbo].[UFN_MD5_ENCODEVALUE] GO SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO CREATE FUNCTION UFN_MD5_CHECKVALUE ( @btInStr VARCHAR(10), @btInStrIndex VARCHAR(10), @btInVal BINARY(16) ) RETURNS TINYINT AS BEGIN DECLARE @iOutResult TINYINT EXEC master..XP_MD5_CheckValue @btInStr, @btInVal, @btInStrIndex, @iOutResult OUT RETURN @iOutResult END GO SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO CREATE FUNCTION UFN_MD5_ENCODEVALUE ( @btInStr VARCHAR(10), @btInStrIndex VARCHAR(10) ) RETURNS BINARY(16) AS BEGIN DECLARE @btOutVal BINARY(16) EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT RETURN @btOutVal END GO SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO 7> Then Query it 8> After that del all line and copy these line to Query CREATE PROCEDURE Encripta @btInStr VARCHAR(10), @btInStrIndex VARCHAR(10) 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 END GO
credits are all from ragezoners, i dont remember names now only remember carcabot but there are some more
guys if you want the site 100% working in this verson, post the site you whant And i change it to work 100%.
For thouse who understand making sites I already posted the solution. i'll try to create the quary to make the extra collum Menb__pwd2. So its easy.
PS:post your sites. Sory for my bad english.
whats that column for?Originally Posted by mig1st4ck
u know how to migrate whole accts from 1.2d to this version tks man
In this verson Menb__pwd is encrypted so we can not use this in site. So i duplicated that colum and made memb_pwd2 Not encrypted, them i put all website links focos to menb_pwd2 .
thats all. I only put in regist.php a value to Memb__pwd2 so we can have the pass not encryped. and about change passe just run the encrypt procedure with the new pass. If you have a site you need to make this system work post it and I will change it.
About migrating contes, i have no idea but use seach there are some guides to do that already.
Could you modify the muweb ver 0.3 so that it will be compatible to 0.99.60+ ??guys if you want the site 100% working in this verson, post the site you whant And i change it to work 100%.
For thouse who understand making sites I already posted the solution. i'll try to create the quary to make the extra collum Menb__pwd2. So its easy.
PS:post your sites. Sory for my bad english.
Thanks! I'm counting on you...
i need a good php scripter / coder ..so i`ll edit the global html site ..and add some php on it like registration ..rankings..
If you want this register page to work properly you MUST follow the installation.txt.
If you don't you will not get it working, ignore any posts about people telling you stuff in this post and follow the guide!!!
The reason you get errors is because you dont read the guide!
I already done that. I have full working site all in PHP.with login an so on. All to this version. Check it hereOriginally Posted by Aszmhodeus
I'll start working in 0.3 website.