Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't see created databases

I've got two problems with EasyPHP (probably related).

1) If I create the database in PhpMyAdmin I can't see it in the navigation panel or in the "Database" page. the database exists because I can make query on it and it conflicts with other CREATE instructions (using the same name). I supposed it was a configuration (permission?) problem so...

2) Going to tray icon, right click on easyPHP icon, then "Configuration->PhpMyAdmin" I obtain "Object not found" error for the URL http://127.0.0.1/home/mysql/.

I use win8.

Thank you.

EDIT: I tried to update to PhpMyAdmin 4.1.12, but nothing happened.

like image 271
ufo Avatar asked Feb 14 '23 02:02

ufo


1 Answers

I finally found the solution! In config.inc.php configuration file, I changed this line:

$cfg['Servers'][$i]['hide_db'] = '(mysql|information_schema|performance_schema|test|phpmyadmin)';

With:

$cfg['Servers'][$i]['hide_db'] = '^(mysql|information_schema|performance_schema|test|phpmyadmin)$';

Now it works fine!

like image 176
ufo Avatar answered Feb 27 '23 14:02

ufo