PDA

View Full Version : forgot admin passwort


bking
04-20-2007, 02:17 PM
I have forgotten my admin passwort.
How do i find it again or change it?

I have tried to log in phpmyadmin to check the database were its saved but i found nothing.

Can someone tell me how to get it back? i dont want to install everything new.

Thank you.

renier
04-20-2007, 07:49 PM
Go into phpMyAdmin in your cpanel and run this query:


-------------------------------------------------------------------------------------------
UPDATE admins SET password = MD5('yourpassword') WHERE username = 'admin'
--------------------------------------------------------------------------------------------
After you did this you will be able to login with

username: admin
password: yourpassword

I had the same problem once and this is what ryan told me to do

Cheers

bking
04-21-2007, 09:35 AM
thank you :)

Ryan
04-22-2007, 06:13 PM
Thanks for the help renier.