Help ! How to change someone's password !

01/11/2011 23:10 fsfsto#1
Hello ...
how to change someone's password , what i mean is .. if someone lost his account password how can i change his password to a new one ? or just to know what that password is ??
don't tell me use the search and all that stuff cause i already searched all forums and didn't find any thing about it so how ???:confused:
01/11/2011 23:24 Nolimitation#2
Make a new account with the a password he wants, go into account in your database and copy the code from the new account (in password) straight over his old one.
01/12/2011 03:41 stedabest321#3
Quote:
Originally Posted by fsfsto View Post
Hello ...
how to change someone's password , what i mean is .. if someone lost his account password how can i change his password to a new one ? or just to know what that password is ??
don't tell me use the search and all that stuff cause i already searched all forums and didn't find any thing about it so how ???:confused:
Orrr you can just add a change password to a xampp httdocsand use the website , but if your only doing it for your self, then do what he said above me
Just create an account again then take all the random numbers and where it says password just replace them there and done ...

And please give that other guy a thanks for trying to help you
its always respected even if it didnt work you should always thank some one for trying.
01/13/2011 14:40 King_Arthur#4
or...

Code:
UPDATE account SET password = md5(concat('PASSWORD',char(0xA3,0xAC,0xA1,0xA3),"fdjf,jkgfkl")) WHERE id = 123456789;
You could also use name instead of id, but id is safer. Just make sure you double check your queries or you could end up changing everybody's password.
01/13/2011 19:48 fsfsto#5
whats the ,"fdjf,jkgfkl")) ?
01/14/2011 04:28 stedabest321#6
Personaly i would just set a webup lol be alot easyer and people can do it and you dont have to do it for every one lmao makes life less stressfull
01/14/2011 16:00 King_Arthur#7
Quote:
Originally Posted by fsfsto View Post
whats the ,"fdjf,jkgfkl")) ?
It's part of the hashing process. Don't touch it. Only change the password or stuff after the WHERE keyword.

Quote:
Originally Posted by stedabest321 View Post
Personaly i would just set a webup lol be alot easyer and people can do it and you dont have to do it for every one lmao makes life less stressfull
Maybe he doesn't want to do it "the easy way" and actually wants learn a little.