Ralph (rad14701), on Oct 8 2004, 01:06 PM, said:
<?php # MD5 Password Creator # Usage: call this script, passing the textual passowrd you desire # Example: md5-password.php?password=new_password # echo md5($password); ?>
The script is fine but if you do not add
$password=$_GET['password'];
It will produce md5 for space ;)
So, this worked for me:
<?php # MD5 Password Creator # Usage: call this script, passing the textual passowrd you desire # Example: md5-password.php?password=new_password # $password=$_GET['password']; echo md5($password); ?>
Then copy the md5 string, go to table etomite_manager_user in database etomite and change the password field of the user of your choice to it. I suppose you can create new record for user in this table.


Help
Back to top
MultiQuote









