From 561deb921c97720014b40423f2838cf14ef672f3 Mon Sep 17 00:00:00 2001 From: seek3r Date: Sun, 19 Nov 2000 10:22:15 +0000 Subject: [PATCH] added supoprt for multiple domains. Still need to modify the setup auth to handle this --- header.inc.php.sample | 14 +++++++++++++- setup/inc/setup_auth.inc.php | 7 ++++++- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/header.inc.php.sample b/header.inc.php.sample index eb8b4b7379..92e24b5473 100644 --- a/header.inc.php.sample +++ b/header.inc.php.sample @@ -29,9 +29,10 @@ $phpgw_info["server"]["db_name"] = "phpgroupware"; $phpgw_info["server"]["db_user"] = "phpgroupware"; $phpgw_info["server"]["db_pass"] = "your_password"; + /* Look at the README file */ $phpgw_info["server"]["db_type"] = "mysql"; //mysql, pgsql (for postgresql), oracle, //msql (not tested), mssql (not tested), sybase (not tested), or odbc (not tested) - + /* This will limit who is allowed to make configuration modifcations */ $phpgw_info["server"]["config_passwd"] = "changeme"; @@ -47,6 +48,17 @@ */ $phpgw_info["server"]["mcrypt_iv"] = "cwjasud83l;la-0d.e/lc;[-%kl)ls,lf0;sa-;921kx;90flwl,skfcujd,wsodsp"; + /* Use this for supporting different domains using this single install */ + /* (ignore if you are only supporting a single domain)*/ + $phpgw_info["multiable_domains"] = False; //Set to True and create an array for each domain. + $domains["domain1.com"] = array ( + "db_host" => "localhost", + "db_name" => "phpgw_domain1", + "db_user" => "phpgroupware", + "db_pass" => "their_password", + "db_type" => "mysql", + "config_passwd" => "changeme" + ); /**************************************************************************\ * Do not edit these lines * diff --git a/setup/inc/setup_auth.inc.php b/setup/inc/setup_auth.inc.php index 309a0f015f..0d174f1f42 100644 --- a/setup/inc/setup_auth.inc.php +++ b/setup/inc/setup_auth.inc.php @@ -41,7 +41,12 @@ } echo " \n"; echo "
\n"; - echo " \n"; + if ($phpgw_info["multiable_domains"] == True){ + echo "
\n"; + echo "
\n"; + }else{ + echo " \n"; + } echo " \n"; echo "
\n"; echo " \n";