Phpmyadmin Xampp Error

xampp phpmyadmin access denied error(#2002)

Try this.

Go to the directory where Xampp is installed. Lets call it xampp. Now open the file xampp/phpMyAdmin/config.inc.php in any text editor.

Now find this line

$cfg['Servers'][$i]['host'] = 'localhost';

and change it to

$cfg['Servers'][$i]['host'] = 'localhost:3307';

Note: If you are on Windows, xampp is by default installed in C:\xampp

Phpmyadmin is not working in xampp

MySQL runs on port 3306 and not on port 8080, so you have to change the port inside config.inc.php.

$cfg['Servers'][$i]['host'] = '127.0.0.1:8080' to   $cfg['Servers'][$i]['host'] = '127.0.0.1:3306'


Related Topics



Leave a reply



Submit