Posts: 49
Threads: 13
Joined: Jul 2010
Can I win an award for most ridiculous questions posted? Thought I saved the file with the password to login in to the admin. What's the easy way to recover it? Thanks.
Posts: 2,894
Threads: 59
Joined: Jun 2010
The admin panel password is stored in the database and it's encrypted for security.
What you need to do is open phpMyAdmin and navigate to the Settings table.
In the Settings table find a row named 'admin_password'.
Replace its value with this: 5f4dcc3b5aa765d61d8327deb882cf99
Now your admin panel password is 'password'.
Log in to your admin panel and change it to whatever you want in Settings -> Administrator.
I'll create an FAQ for this.
Have
you completed
the interview?
Posts: 535
Threads: 31
Joined: Jul 2010
Good idea for a new feature. A "lost your password?" link that adds a temporary password to the DB, and emails it to the admin. That password should be generated something like
PHP Code:
<?php
$temp_password = md5(md5("random value here"));
and should expire in ten minutes, or so.
What do you think?
I'm giving you three guesses...