diff --git a/core/install.php b/core/install.php index b18c14f8..8014bed6 100644 --- a/core/install.php +++ b/core/install.php @@ -114,9 +114,9 @@ function ask_questions() "; } + $db_s = in_array(DatabaseDriverID::SQLITE->value, $drivers) ? '' : ""; $db_m = in_array(DatabaseDriverID::MYSQL->value, $drivers) ? '' : ""; $db_p = in_array(DatabaseDriverID::PGSQL->value, $drivers) ? '' : ""; - $db_s = in_array(DatabaseDriverID::SQLITE->value, $drivers) ? '' : ""; $warn_msg = $warnings ? "
", $warnings) : ""; $err_msg = $errors ? "
", $errors) : ""; @@ -132,9 +132,9 @@ function ask_questions()
- For SQLite the database name will be a filename on disk, relative to - where shimmie was installed. + SQLite with default settings is fine for tens of users with thousands + of images. For thousands of users or millions of images, postgres is + recommended.
Drivers can generally be downloaded with your OS package manager;