PDA

View Full Version : passwords


nitz
10-29-2007, 02:54 AM
Hey there, I got a small issue. I forgot my pass for the admin area and tried to reset it via phpmyadmin, however, I suppose it's hashed. Therefore, anything I display or insert will not work properly. Maybe someone can send me a hash for a basic password, 123? Unless there is another way around this issue?

Josh
10-29-2007, 06:05 AM
Try this, create a little PHP file and upload it to your server, use this code to print out a password:


<?php

print "Encrypted password: " . md5("password");

?>

Just change "password" to whatever you want your admin password to be, then insert it into the database.