diff --git a/install.php b/install.php index 7a368e0..63ccda7 100644 --- a/install.php +++ b/install.php @@ -88,6 +88,13 @@ DatabaseAdapterRegistry::register( function_exists('pg_query'), null, 'The pgsql PHP extension is not available. Please install or enable it and refresh this page.'); +DatabaseAdapterRegistry::register( + 'SQLite3Database', + 'SQLite 3.3+', + 'sqlite3/code/SQLiteDatabaseConfigurationHelper.php', + class_exists('SQLite3') || class_exists('PDO'), + null, + 'The SQLite3 and PDO classes are not available. Please install or enable them and refresh this page.'); // Discover any 3rd party ones DatabaseAdapterRegistry::autodiscover();