Quote:
Originally Posted by Billspaintball
You cant.
The vB password is encripted.
If you try and change it outside of vB, then vB will not authenticate the new password.
|
This is not true, the password is _not_ encrypted, its hashed twice with a salt once.
[sql]
UPDATE user
set password = MD5(concat(MD5('<NEWPASSWORD>'), user.salt))
WHERE userid = <USERID>[/sql]
i believe I've got marco to thank for this one.