Is there any way to disable grouping databases in phpMyAdmin?
phpMyAdmin groups databases by default based on a common prefix in their names. If you do not want this behavior, follow these steps.
-
Open
/Library/Application Support/appsolute/MAMP PRO/phpMyAdmin6/config.inc.phpin a text editor. -
Add the following line at the end of the file:
$cfg['NavigationTreeEnableGrouping'] = false; -
Save the file.
-
Open
/Library/Application Support/appsolute/MAMP PRO/phpMyAdmin5/config.inc.phpin a text editor. -
Add the following line at the end of the file:
$cfg['NavigationTreeEnableGrouping'] = false; -
Save the file.
-
Open
/Library/Application Support/appsolute/MAMP PRO/phpMyAdmin/config.inc.phpin a text editor. -
Add the following line at the end of the file:
$cfg['NavigationTreeEnableGrouping'] = false; -
Save the file.
Databases will no longer be grouped by a common prefix.
← MySQL