From facccbd66a258549554de3fa87386223c3bf8852 Mon Sep 17 00:00:00 2001 From: pedro_morgan <pedro_morgan@ispconfig3> Date: Sun, 19 Aug 2007 21:37:44 -0400 Subject: [PATCH] * Tidiied up teh configure_fatabases() * Made parts php5 * Other minor tweaks --- install/install.php | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/install/install.php b/install/install.php index 8228971..40bb450 100644 --- a/install/install.php +++ b/install/install.php @@ -66,10 +66,13 @@ //TODO: this is not there ???? $conf['dist'] = $dist; -//** Lets go ! +//**************************************************************************************************** +//** Installer Interface +//**************************************************************************************************** $inst = new installer(); swriteln($inst->lng(' Following will be a few questions for primary configuration so be careful.')); -swriteln($inst->lng(' Default values are in [brackets] and can be accepted with <ENTER>'."\n\n")); +swriteln($inst->lng(' Default values are in [brackets] and can be accepted with <ENTER>.')); +swriteln($inst->lng(' Tap in "quit" (without the quotes) to stop the installer.'."\n\n")); //** Select the language $conf['language'] = $inst->simple_query('Select language', array('en','de'), 'en'); @@ -89,6 +92,7 @@ $tmp_mysql_server_host = $inst->free_query('MySQL server hostname', $conf['mysql']['host']); $tmp_mysql_server_admin_user = $inst->free_query('MySQL root username', $conf['mysql']['admin_user']); $tmp_mysql_server_admin_password = $inst->free_query('MySQL root password', $conf['mysql']['admin_password']); + //TODO: it does not ask for which database ? //* Initialize the MySQL server connection if(@mysql_connect($tmp_mysql_server_host, $tmp_mysql_server_admin_user, $tmp_mysql_server_admin_password)) { -- Gitblit v1.9.1