Answers for "phpmyadmin access denied after changing root password"

SQL
5

phpmyadmin password root

-- DEFAULT: Username:root , Password: –  (none)
mysql> SET PASSWORD FOR root@localhost=PASSWORD('mypassword');
mysql> GRANT ALL PRIVILEGES ON *.* TO root@localhost 
	IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
Posted by: Guest on May-20-2021
0

phpMyAdmin access denied message

Open the phpMyAdmin folder.

Open the config.inc.php file with any text editor.

Under “Authentication type and info,” and update the following lines:

On $cfg['Servers'][$i]['auth_type'] = 'config'; replace config for cookie.

On $cfg['Servers'][$i]['AllowNoPassword'] = true; replace true for false.
Posted by: Guest on October-15-2020

Code answers related to "phpmyadmin access denied after changing root password"

Code answers related to "SQL"

Browse Popular Code Answers by Language