Admin Password Change or Retrieval

In this board you can talk about general questions about phpMyFAQ

Moderator: Thorsten

Post Reply
lschuler
Posts: 5
Joined: Wed Mar 31, 2004 7:28 pm

Admin Password Change or Retrieval

Post by lschuler »

Is there a way to recover the admin password that I set up when I installed it. or a way to change it. I forgot what it was.

TIA
Lance
Thorsten
Posts: 15725
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Post by Thorsten »

I'll implement such a feature in phpMyFAQ 1.4.0. Do you have phpMyAdmin installed?

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
lschuler
Posts: 5
Joined: Wed Mar 31, 2004 7:28 pm

Post by lschuler »

yup, sure do. PHPAdmin that is.
Thorsten
Posts: 15725
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Post by Thorsten »

Okay, open phpMyAdmin, look for the table faquser and open it. Then edit it and change the password for the user "admin" with the variable MD5().

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
lschuler
Posts: 5
Joined: Wed Mar 31, 2004 7:28 pm

Post by lschuler »

With the variable MD5()? You mean actually type MD5() in the password field? Including brackets? Then what.
Thorsten
Posts: 15725
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Post by Thorsten »

Yes, you're right, type, not variable. :-)

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
jaygee
Posts: 3
Joined: Wed Mar 14, 2007 3:46 pm

Need Help on this Topic... Having same problem.

Post by jaygee »

I am having the same problem as lschuler did. I need to reset my admin password, because the email functionality is not working to send my password to me. I reset the admin password to MD5() . But when I try to login, it doesn't authenticate and I cant get in. Any help is much appreciated.
matteo
Posts: 572
Joined: Sun Nov 20, 2005 6:53 pm
Location: Italy

Re: Need Help on this Topic... Having same problem.

Post by matteo »

Hi,
jaygee wrote:Any help is much appreciated.
open phpMyAdmin, select the right database and execute the SQL query below:

Code: Select all

UPDATE
    faquser
SET
    pass = MD5('password')
WHERE
    id = 1
Ciao,
Matteo
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
jaygee
Posts: 3
Joined: Wed Mar 14, 2007 3:46 pm

Thanks. I did that. What else am I missing?

Post by jaygee »

Matteo,

I did what you said, and the table updated. However, I don't know what I just did. Did that reset the password to admin? How do I login after making that UPDATE?

Thanks again.
jaygee
Posts: 3
Joined: Wed Mar 14, 2007 3:46 pm

Nevermind. I got it now. Thanks.

Post by jaygee »

O.K., I see now. I was actually setting the password variable to be PASSWORD . That worked. Thanks very, very much.
Post Reply