diff --git a/setup/config.php b/setup/config.php new file mode 100644 index 0000000000..b3ff6d678f --- /dev/null +++ b/setup/config.php @@ -0,0 +1,140 @@ + True, "nonavbar" => True, "currentapp" => "home", "noapi" => True); + include("../header.inc.php"); + + $phpgw_info["server"]["api_dir"] = $phpgw_info["server"]["include_root"]."/phpgwapi"; + + /* Database setup */ + switch($phpgw_info["server"]["db_type"]){ + case "postgresql": + include($phpgw_info["server"]["api_dir"] . "/phpgw_db_pgsql.inc.php"); + break; + case "oracle": + include($phpgw_info["server"]["api_dir"] . "/phpgw_db_oracle.inc.php"); + break; + default: + include($phpgw_info["server"]["api_dir"] . "/phpgw_db_mysql.inc.php"); + } + + $db = new db; + $db->Host = $phpgw_info["server"]["db_host"]; + $db->Type = $phpgw_info["server"]["db_type"]; + $db->Database = $phpgw_info["server"]["db_name"]; + $db->User = $phpgw_info["server"]["db_user"]; + $db->Password = $phpgw_info["server"]["db_pass"]; + + $db->query("select * from config"); + while ($db->next_record()) { + $current_config[$db->f("config_name")] = $db->f("config_value"); + } +?> + phpGroupWare - setup +
phpGroupWare version setup

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Enter path for temporey files.">
Enter path for users and group files.">
Enter some random text for app_session
encryption (requires mcrypt)
">
Enter the title for your site.">
Enter the hostname of the machine this server is running on.
Enter the location of phpGroupWares URL.
Example: /phpGroupWare
">
Select which type of authentication you are using.
SQL is only support currently
+ +
LDAP host:">
LDAP context:">
Use cookies to pass sessionid:
Enter the location of your mail server:">
Select your mail server type: + +
IMAP server type: + +
Enter your mail sufix:">
+
\ No newline at end of file