From 65355c6bb3c263d169d5e4908b5f7eb261d0651a Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Thu, 12 Nov 2009 14:43:47 -0800 Subject: Change the gallery3/index.php so there is a new option "install" which invokes the installer. --- index.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.php b/index.php index d0e12cfc..f6285257 100644 --- a/index.php +++ b/index.php @@ -50,6 +50,9 @@ define("SYSPATH", realpath("system") . "/"); // We only accept a few controllers on the command line if (PHP_SAPI == "cli") { switch ($arg_1 = $_SERVER["argv"][1]) { + case "install": + include("installer/index.php"); + exit(0); case "upgrade": case "package": $_SERVER["argv"] = array("index.php", "{$arg_1}r/$arg_1"); @@ -66,6 +69,7 @@ if (PHP_SAPI == "cli") { break; default: + print "To install:\n php index.php install -d database -h host -u user -p password -x table_prefix \n\n\n"; print "To upgrade:\n php index.php upgrade\n\n\n"; print "Developer-only features:\n ** CAUTION! THESE FEATURES -WILL- DAMAGE YOUR INSTALL **\n"; print " php index.php package # create new installer files\n"; -- cgit v1.2.3