Page 1 of 1

I forgot my Login-Information to the admin-interface!

Posted: Sat Apr 08, 2006 4:36 pm
by bailey87
Hi,

How can I find out my (admin) login-name and password?

Thanks!

Re: I forgot my Login-Information to the admin-interface!

Posted: Sat Apr 08, 2006 5:47 pm
by garvinhicking
Hi!

You can check your admin login name by browsing the serendipity_authors DB table.

You cannot find out your password; it is MD5 encrypted. You can only re-set it by setting a new MD5 encrypted string.

Regards,
Garvin

Posted: Sat Apr 08, 2006 8:54 pm
by Matthias
To set a md5 encrypted password create a new php file (password.php) with this content:

Code: Select all

<?php
$password = "YourPassword";      //hier gewünschtes Passwort eintragen - set your password
$encrypt = md5($password);

echo $password;
echo "<br>";
echo $encrypt;

?>