Hello. On one PC we have a problem with getting Dashboard working with connection to Firebird database. On the other two, where the installation is done exactly the same, it is without problems. If we create a standard site, there is no problem with the connection and the data is loaded. Anyone have any idea where the problem might be? What all connection to FB database in Dashboard affects? This is our connection string for test

<?php

use \koolreport\dashboard\sources\MySQL;

class AutoMaker extends MySQL
{
    protected function connection()
    {
        return [
            "connectionString"=>"firebird:host=localhost:;dbname=d:\!databaze\DB.FDB",
            "username"=>"sysdba",
            "password"=>"masterkey",
           // "charset"=>"utf8"
        ];
    }
}

Thans. Jan