In my website control panle, I can add/delete a database user, but can't change the password for a user. And in phpMyAdmin control panel, I can't the function to change password also. So currently what I do is to delete the current user, and then add the user with a new password. And under this case I have to reinstall the phpld link directory. So how to change the password for phpMyAdmin?
it should be simular to changing a users password in wordpress, see http://www.tamba2.org.uk/wordpress/phpmyadmin/ but do it on the table name for the program you are using.
do you mean change the password for phpmyadmin? or change the password from phpmyadmin? i cant seem to understand, what your describing is from, but what your saying is for?
I want to change the database user's password, it's also used for database connecting and logging to phpMyAdmin.
delete your users account for that db and recreate it on your webpanel and then reassign the user for that db that you have created. walla!
Can you run queries on your database? IF so you can do it using the built in Mysql commands. SET PASSWORD FOR 'username'@'%' = PASSWORD('newpass'); You will have to change the username part (to probably pma) and the % part (to probably localhost). So it becomes: SET PASSWORD FOR 'pma'@'localhost' = PASSWORD('newpass'); For information on the SET PASSWORD command see: dev.mysql.com/doc/refman/5.0/en/set-password.html To see exactly what user and domain (the localhost/% part) your account is using do: SELECT User, Host FROM mysql.user; That should show you all your mysql user accounts. Look for the one that looks like it's for PHPMyAdmin (probably pma).