PHPMyAdmin Link Bug

Discussion in 'Developers' Forum' started by rwestebbe, Feb 3, 2026 at 1:52 PM.

  1. rwestebbe

    rwestebbe New Member

    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
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    ahrasis likes this.
  3. rwestebbe

    rwestebbe New Member

    Ah, thanks. I didn't know this.
     

Share This Page