Utworzyłem w phpLiteAdmin bazę danych sqlite, następnie wrzuciłem ją do głównego katalogu Kohany (nadałem jemu i bazie chmody 777) i otrzymuje błąd: "SQLSTATE[HY000] [14] unable to open database file" (http://helid.vipower.pl/cms/).
<?php defined('SYSPATH') or
die('No direct access allowed.');
(
'type' => 'pdo',
'dsn' => "sqlite:/database.sqlite",
'persistent' => FALSE,
),
'table_prefix' => '',
'charset' => NULL, /* IMPORTANT- charset 'utf8' breaks sqlite(?) */
'caching' => FALSE,
'profiling' => TRUE,
),
);
W czym tkwi problem?