Click to See Complete Forum and Search --> : PhPMyAdmin Login


NZ_Kiwis
09-25-2009, 01:37 AM
I'm playing with a webserver on my own computer right now, i've somehow changed the password to phpMyAdmin, how can I reset this via the config files? i'm lost

rincewind456
09-25-2009, 01:44 PM
The phpmyadmin password is the MySQL user and password, at least it always was.

NZ_Kiwis
09-25-2009, 06:47 PM
where on the config file can i see what the current passwor is?

rincewind456
09-25-2009, 07:04 PM
As far as I can see from my own installation, you can't, the user and password for the PMA user is stored in the config.inc.php file but the root password for your MySQL installation isn't stored in phpmyadmin.

Kudose
09-27-2009, 05:34 PM
If you have CLI access, you can use mysqladmin to reset the root password

mysqladmin -u root password NEWPASSWORD

(If you are running XAMPP, there is no root password)

NZ_Kiwis
09-27-2009, 05:37 PM
I just downloaded WAMPSERVER how do I get CLI access?

Kudose
09-27-2009, 05:39 PM
Open the command prompt and change to the mysql bin directory

Run mysqladmin from there.