Skip to content

Commit

Permalink
improv. fix extension error for sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
nivcoo authored Aug 30, 2021
1 parent 81ea1c8 commit 90f14dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/webroot/verif-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class DATABASE_CONFIG {
} else if ($sql_type == 1) { // sqlite3
$sqlite_extension = in_array('pdo_sqlite', get_loaded_extensions());
if (!$sqlite_extension) {
echo json_encode(['status' => false, 'msg' => "Vous devez avoir l'extension PHP : php-sqlite"]);
echo json_encode(['status' => false, 'msg' => "Vous devez avoir l'extension PHP : sqlite3"]);
exit;
}

Expand Down

0 comments on commit 90f14dd

Please sign in to comment.