Brad, Great software. I continue to use and appreciate it. However, I have forgotten my admin login. Here's what the MySql output looks like. How can I reset it so that I can login? I'd love to not loose all my current hosts/configuration. Nathan
mysql> select * from users
-> ;
+--------+----------+----------------------------------+-------+
| userid | username | password | admin |
| 1 | admin | 5ebe2294ecd0e0f08eab7690d2a6ee69 | 1 |
The password value is just an md5 hash of your password. So you'll have to create a new hash and replace the value within the database.
Here is a site that will calculate a new hash for you:
http://md5-hash-online.waraxe.us/
--Brad Fears
Thank you! It worked - I'm back in!
Log in to post a comment.
Brad,
Great software. I continue to use and appreciate it. However, I have forgotten my admin login. Here's what the MySql output looks like. How can I reset it so that I can login? I'd love to not loose all my current hosts/configuration.
Nathan
mysql> select * from users
-> ;
+--------+----------+----------------------------------+-------+
| userid | username | password | admin |
+--------+----------+----------------------------------+-------+
| 1 | admin | 5ebe2294ecd0e0f08eab7690d2a6ee69 | 1 |
+--------+----------+----------------------------------+-------+
The password value is just an md5 hash of your password. So you'll have to create a new hash and replace the value within the database.
Here is a site that will calculate a new hash for you:
http://md5-hash-online.waraxe.us/
--Brad Fears
Thank you! It worked - I'm back in!