PDA

View Full Version : change password and change email


Blackmagic
01-19-2009, 09:24 AM
me again :D

in the script account.php are two links "change email" and "change passwort".
but I miss the "changepassword.php" and "changeemail.php" in the download.

Could you please post the script here ?

thank you very much :)

BMR777
01-19-2009, 09:37 AM
I'll have to create those. The script is still in beta so some things are still missing. :)

Look for them in a future release.

Quillink
01-21-2009, 06:15 PM
I will be. ;)

It gets crazy annoying when you have to change some forgetful user's password manually each day - can't wait till they can do it themselves!

Blackmagic
03-04-2009, 05:48 AM
I will be. ;)

It gets crazy annoying when you have to change some forgetful user's password manually each day - can't wait till they can do it themselves!


How can I change the password manually?
I've a user, who forgott his password.
I want to give him a new one ... but how ????

BMR777
03-04-2009, 04:27 PM
Passwords are stored as MD5 hashes. Go to this webpage (http://www.adamek.biz/md5-generator.php) and type the user's new password in and it will spit out a MD5 hash of that new password. Then copy that hash to the windows clipboard.

In PHPMyAdmin run the following query on your database:

UPDATE users SET password='NEWPASSWORD' WHERE username='USERNAME'

Replace NEWPASSWORD with the MD5 code you copy / pasted and replace USERNAME with the user's username of whose password you want to change. :)

Blackmagic
03-05-2009, 03:13 AM
aaaaaaaah great !!! :D

thankx very much