I'm trying to open my PhpMyAdmin by using this address because my port in xampp is 8080.
But the page won't load and after a while, it will give time out error. In my config.inc file,
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '1234';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
/* Bind to the localhost ipv4 address and tcp */
$cfg['Servers'][$i]['host'] = 'localhost:8080';
what i did so far was changing
$cfg['Servers'][$i]['auth_type'] = 'http';
to
$cfg['Servers'][$i]['auth_type'] = 'config';'
and changing
$cfg['Servers'][$i]['host'] = 'localhost:8080';
to
$cfg['Servers'][$i]['host'] = '127.0.0.1';
as well as changing my password to ' ' but still no luck