diff --git a/install.php b/install.php index d6873df5..f2984e9e 100644 --- a/install.php +++ b/install.php @@ -197,7 +197,7 @@ function ask_questions() { // {{{ }); function update_qs() { $(".dbconf").hide(); - var seldb = $("#database_type").val(); + var seldb = $("#database_type").val() || "none"; $("."+seldb).show(); } @@ -213,6 +213,10 @@ function ask_questions() { // {{{ For SQLite the database name will be a filename on disk, relative to where shimmie was installed.

+

+ Drivers can generally be downloaded with your OS package manager; + for Debian / Ubuntu you want php5-pgsql, php5-mysql, or php5-sqlite. +

EOD;