Admin Password Change or Retrieval
Moderator: Thorsten
Admin Password Change or Retrieval
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
TIA
Lance
I'll implement such a feature in phpMyFAQ 1.4.0. Do you have phpMyAdmin installed?
bye
Thorsten
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
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
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Yes, you're right, type, not variable. 
bye
Thorsten

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Need Help on this Topic... Having same problem.
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.
Re: Need Help on this Topic... Having same problem.
Hi,
Ciao,
Matteo
open phpMyAdmin, select the right database and execute the SQL query below:jaygee wrote:Any help is much appreciated.
Code: Select all
UPDATE
faquser
SET
pass = MD5('password')
WHERE
id = 1
Matteo
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Amazon.co.uk Wishlist
Thanks. I did that. What else am I missing?
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.
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.
Nevermind. I got it now. Thanks.
O.K., I see now. I was actually setting the password variable to be PASSWORD . That worked. Thanks very, very much.