egroupware_official/setup/config.php

100 lines
3.7 KiB
PHP
Raw Normal View History

<?php
/**************************************************************************\
2000-11-05 07:47:24 +01:00
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
include("./inc/functions.inc.php");
include("../header.inc.php");
// Authorize the user to use setup app and load the database
// Does not return unless user is authorized
if (!$phpgw_setup->auth("Config")){
Header("Location: index.php");
exit;
}
$phpgw_setup->loaddb();
2000-09-28 04:32:53 +02:00
/* Guessing default paths. */
$current_config["files_dir"] = ereg_replace("/setup","/files",dirname($SCRIPT_FILENAME));
if (is_dir("/tmp")){
$current_config["temp_dir"] = "/tmp";
}else{
$current_config["temp_dir"] = "/path/to/temp/dir";
}
2000-09-28 04:32:53 +02:00
if ($submit) {
2001-01-10 04:08:03 +01:00
@$phpgw_setup->db->query("delete from config");
// This is only temp.
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('useframes','never')");
while ($newsetting = each($newsettings)) {
if ($newsetting[0] == "nntp_server") {
$phpgw_setup->db->query("select config_value FROM config WHERE config_name='nntp_server'");
2001-01-10 04:08:03 +01:00
if ($phpgw_setup->db->num_rows()) {
$phpgw_setup->db->next_record();
if ($phpgw_setup->db->f("config_value") <> $newsetting[1]) {
$phpgw_setup->db->query("DELETE FROM newsgroups");
2001-01-01 00:46:55 +01:00
// $phpgw_setup->db->query("DELETE FROM users_newsgroups");
2001-01-10 04:08:03 +01:00
}
}
}
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('" . addslashes($newsetting[0])
. "','" . addslashes($newsetting[1]) . "')");
}
if ($newsettings["auth_type"] == "ldap") {
Header("Location: ldap.php");
exit;
} else {
//echo "<center>Your config has been updated<br><a href='".$newsettings["webserver_url"]."/login.php'>Click here to login</a>";
Header("Location: index.php");
exit;
}
}
if ($newsettings["auth_type"] != "ldap") {
$phpgw_setup->show_header("Configuration");
2000-09-28 04:32:53 +02:00
}
@$phpgw_setup->db->query("select * from config");
while (@$phpgw_setup->db->next_record()) {
$current_config[$phpgw_setup->db->f("config_name")] = $phpgw_setup->db->f("config_value");
}
if ($current_config["files_dir"] == "/path/to/dir/phpgroupware/files") {
$current_config["files_dir"] = $phpgw_info["server"]["server_root"] . "/files";
}
if ($error == "badldapconnection") {
// Please check the number and dial again :)
echo "<br><center><b>Error:</b> There was a problem tring to connect to your LDAP server, please "
. "check your config.</center>";
}
2000-09-28 04:32:53 +02:00
?>
<form method="POST" action="config.php">
<table border="0" align="center">
2001-01-07 11:43:48 +01:00
<?php
$phpgw_setup->execute_script("config",array("phpgwapi","admin", "preferences","email"));
2001-01-07 11:43:48 +01:00
?>
<tr bgcolor="FFFFFF">
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="submit" value="Submit"></td>
</tr>
</table>
</form>
</body></html>