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

Random stuff about serendipity. Discussion, Questions, Paraphernalia.
Post Reply
bailey87
Regular
Posts: 72
Joined: Sun Dec 04, 2005 12:26 pm

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

Post by bailey87 »

Hi,

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

Thanks!
Sorry for bad english, I´m german :lol:
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!

Post 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
# 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/
Matthias
Regular
Posts: 47
Joined: Wed Mar 01, 2006 4:33 pm
Contact:

Post 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;

?>
Post Reply