Thursday 27 March 2003 5:50:30 am
To generate a new password you need to do the following:
Create a new md5 hash. This can be done with the command (linux):
echo "mypassword" | md5sum
Which will print the md5sum: d84c7934a7a786d26da3d34d5f7c6c86
You then need to reset the values in the SQL database for your user.
update ezuser
set
password_hash_type='1' , password_hash='d84c7934a7a786d26da3d34d5f7c6c86'
where contentobject_id= 10; Replace 10 with the id of your user. PS: take backup of your database before you start. --bård
Documentation: http://ez.no/doc
|