Hi,
How can I find out my (admin) login-name and password?
Thanks!
I forgot my Login-Information to the admin-interface!
I forgot my Login-Information to the admin-interface!
Sorry for bad english, I´m german 
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: I forgot my Login-Information to the admin-interface!
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
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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
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;
?>