FAQ > MySQL
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.
Please note that MAMP PRO includes two different versions of phpMyAdmin (for different PHP versions). Therefore, the change needs to be made twice, which is already accounted for in the following instructions.
- Open the file “/Library/Application Support/appsolute/MAMP PRO/phpMyAdmin5/config.inc.php” in your text editor.
- Add the following line at the end of the file:
$cfg['NavigationTreeEnableGrouping'] = false;
- Save the file.
- Open the file “/Library/Application Support/appsolute/MAMP PRO/phpMyAdmin/config.inc.php” in your text editor.
- Add the following line at the end of the file:
$cfg['NavigationTreeEnableGrouping'] = false;
- Save the file.
Databases will no longer be grouped based on a common prefix in their names.