Hello, I couldn't find a dedicated forum for bug reports, so I'm posting the bug here. After the last update, the button for PHPMyAdmin was no longer displayed in ISPConfig. The reason for this was that the following query was in /usr/local/ispconfig/interface/web/sites/database_list.php in the function prepareDataRow($rec) contained the following query: if($db_type == ‘mysql’ && $this->global_config[‘dblist_phpmyadmin_link’] == ‘y’) but the variable $db_type contained “MySQL.” This caused the check to fail and the button to be hidden. An adjustment to if($db_type == ‘MySQL’ && $this->global_config[‘dblist_phpmyadmin_link’] == ‘y’) fixed the problem. We use MariaDB as our database. Best regards, Richard Westebbe
That's already fixed in the development branch: https://git.ispconfig.org/ispconfig/ispconfig3/-/issues/6981