the directory the SQLite database is in must be writeable

pull/245/head
8ctopus 5 years ago
parent ceae3caa37
commit 4f2dab357c

@ -1496,6 +1496,11 @@ function db_connect_with_errors() {
return array($link, $error_text);
}
if (!is_writeable(dirname($db))) {
$error_text = 'The directory the SQLite database is in is not writeable: '. dirname($db);
return array($link, $error_text);
}
$dsn = "sqlite:{$db}";
$username_password = false;
} elseif (db_pgsql()) {

Loading…
Cancel
Save