Hello, I want to buy the developer license to export data to PDF, but before I want to try the basic edition of records. I have firebird 2.5. When I try to connect to the database I get this error, what’s the error?
“Please check your database connection configuration. Connection attempt failed: could not find driver”
https://gist.github.com/pepeluis111/a7df1e2d3d6d64b7c425ad3b7f84e870#file-gistfile1-txt
Thank you
2 Answers
Apparently you forgot to enable the extension of the firebird for pdo. Check php.ini for
;extension=pdo_firebird <- this driver is disabled, so Firebird will not work. remove ; to enable.
If you are already using firebird with php in other application, send me that sample connection code and i’ll update you connection settings for grid.
Your Answer