How to change md5_encrypt to pwdcompare
Hi guyz...can u help me on how to change md5_encrypt to pwdcompare to login in cabaltoolz
Code:
$user_auth = new securelogin;
$user_auth->handler['checklogin'] = 'admin_checklogin';
$user_auth->handler['encode'] = 'md5_encrypt';
$user_auth->post_index = array( 'user' => 'user' ,'pass' => 'pass' );
$user_auth->use_cookie = true;
$user_auth->use_session = false;
Re: How to change md5_encrypt to pwdcompare
Quote:
Originally Posted by
JemCanoy
Hi guyz...can u help me on how to change md5_encrypt to pwdcompare to login in cabaltoolz
Code:
$user_auth = new securelogin;
$user_auth->handler['checklogin'] = 'admin_checklogin';
$user_auth->handler['encode'] = 'md5_encrypt';
$user_auth->post_index = array( 'user' => 'user' ,'pass' => 'pass' );
$user_auth->use_cookie = true;
$user_auth->use_session = false;
I Think EMI Knows About This... Coz' I Think They Are Using It... MMOWEBZ Cabal Online: Episode 8 :: Register
Or He Just Integrated Chumps Simple Reg. Page To Cabaltoolz?...
Re: How to change md5_encrypt to pwdcompare
Quote:
Originally Posted by
4pLay
well thats only a reg page and its easy to make.....
Re: How to change md5_encrypt to pwdcompare
Take look in procedures of account. You will see something like check login by id. Check it and you'll see that you can make an easy register page and so and editing the controlpanel of cabaltoolz.
Re: How to change md5_encrypt to pwdcompare
Quote:
Originally Posted by
allocen
Take look in procedures of account. You will see something like check login by id. Check it and you'll see that you can make an easy register page and so and editing the controlpanel of cabaltoolz.
hey bro..... do u know how to change the md5_encrypt to pwdcompare?
Re: How to change md5_encrypt to pwdcompare
god i just told you early.... What you see there 'md5_encrypt' is a function in cabaltoolz which checks the md5 of the password from your account. You have to create a new function or edit the current one 'md5_encrypt' to be able to get the binary pw from db. And you can do that if you use a procedure called check login pwd by id, something like that from database account. Just take a look and you'll see what is about. Is simple, oh and if you dont know php, im afraid you have to learn.
Re: How to change md5_encrypt to pwdcompare
Quote:
Originally Posted by
allocen
god i just told you early.... What you see there 'md5_encrypt' is a function in cabaltoolz which checks the md5 of the password from your account. You have to create a new function or edit the current one 'md5_encrypt' to be able to get the binary pw from db. And you can do that if you use a procedure called check login pwd by id, something like that from database account. Just take a look and you'll see what is about. Is simple, oh and if you dont know php, im afraid you have to learn.
Im learning....:D:
Re: How to change md5_encrypt to pwdcompare
Quote:
Originally Posted by
JemCanoy
Hi guyz...can u help me on how to change md5_encrypt to pwdcompare to login in cabaltoolz
Code:
$user_auth = new securelogin;
$user_auth->handler['checklogin'] = 'admin_checklogin';
$user_auth->handler['encode'] = 'md5_encrypt';
$user_auth->post_index = array( 'user' => 'user' ,'pass' => 'pass' );
$user_auth->use_cookie = true;
$user_auth->use_session = false;
well, emi know's about this problem .. :thumbup1:
Re: How to change md5_encrypt to pwdcompare
God, its that hard to make another function to check the pwd binary from db using that procedure that i told you guys early? :O
Re: How to change md5_encrypt to pwdcompare
Quote:
Originally Posted by
allocen
God, its that hard to make another function to check the pwd binary from db using that procedure that i told you guys early? :O
well..... mybe u can share the procedures....
Re: How to change md5_encrypt to pwdcompare
God, do you even understood what i said at least?
Re: How to change md5_encrypt to pwdcompare
Actually is not so hard, but first you need to thinking from where exactly is this md5 checker? are u sure that is the correct files to make it with pwdcompare? Check first MSSQL procedures about logins, then try to edit your web :)