MySQL/MariaDB Configuration =========================== By default Kanboard use Sqlite to stores its data. However it's possible to use MySQL or MariaDB instead of Sqlite. Requirements ------------ - MySQL server - The PHP extension `pdo_mysql` installed Note: Kanboard is tested with **MySQL >= 5.5 and MariaDB >= 10.0** MySQL configuration ------------------- ### Create a database The first step is to create a database on your MySQL server. By example, you can do that with the command line mysql client: ```sql CREATE DATABASE kanboard; ``` ### Create a config file The file `config.php` should contains those values: ```php