From 6dc39fe39f44a57c7cf1f327e950334d89a2688d Mon Sep 17 00:00:00 2001 From: Shish Date: Wed, 6 Feb 2013 08:24:01 +0000 Subject: [PATCH] show some extra help if there are no DB engines available --- install.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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;