Reputation: 97
I'm just having some trouble setting up Adminer in XAMPP. I'm doing something with databases for the first time, so please bear with me if this is an amateur mistake.
So I dropped the adminer.php file into the htdocs folder of XAMPP and started both Apache and MySQL servers from the XAMPP control panel. But when I try to log in after going to localhost/adminer.php, I get the error:
Access denied for user 'abc'@'localhost' (using password: YES)
What should I do to fix this?
Upvotes: 1
Views: 4921
Reputation: 1809
Fastest and easiest way
Upvotes: 0
Reputation: 79
Replace - $cfg['Servers'][$i]['auth_type'] = 'config'; - $cfg['Servers'][$i]['password'] = '';
To - $cfg['Servers'][$i]['auth_type'] = 'cookie'; - $cfg['Servers'][$i]['password'] = '123456';
Now
Open database
Upvotes: 3