No databases showing in phpMyAdmin
- by Thein Hla Maw
My website is hosted in shared hosting service and is working fine with updated news stored in MySQL database. To manage the database of website, I install phpMyAdmin in a sub-folder with the same username and password used in website.
When I login to phpMyAdmin, I don't see my database. phpMyAdmin is showing "No databases" in left pane.
Is there any thing I need to configure in phpMyAdmin?
Edited:
This is the settings in config.inc.php. I can login to phpMyAdmin successfully.
$cfg['Servers'][$i]['host'] = 'hostname';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'dbuser';
$cfg['Servers'][$i]['password'] = 'password';