mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:29 +01:00
84 lines
3.8 KiB
Plaintext
84 lines
3.8 KiB
Plaintext
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare *
|
|
* http://www.phpgroupware.org *
|
|
* This file written by Dan Kuykendall <seek3r@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$ */
|
|
|
|
/**************************************************************************\
|
|
* !!!!!!! EDIT THESE LINES !!!!!!!! *
|
|
* This setting allows you to easily move the include directory and the *
|
|
* base of the phpGroupWare install. Simple edit the following 2 lines with *
|
|
* the absolute path to fit your site, and you should be up and running. *
|
|
\**************************************************************************/
|
|
|
|
define("PHPGW_SERVER_ROOT", "/usr/local/www/phpgroupware");
|
|
define("PHPGW_INCLUDE_ROOT", "/usr/local/www/phpgroupware");
|
|
$phpgw_info["server"]["header_admin_password"] = "bla";
|
|
|
|
$phpgw_domain["default"] = array (
|
|
"db_host" => "localhost",
|
|
"db_name" => "phpgw",
|
|
"db_user" => "root",
|
|
"db_pass" => "",
|
|
/* Look at the README file */
|
|
"db_type" => "mysql",
|
|
/* This will limit who is allowed to make configuration modifcations */
|
|
"config_passwd" => "bla"
|
|
);
|
|
|
|
/* If you want to have your domains in a select box, change to True */
|
|
$phpgw_info["server"]["show_domain_selectbox"] = False;
|
|
|
|
/* This is used to control mcrypt's use */
|
|
$phpgw_info["server"]["mcrypt_enabled"] = False;
|
|
/* Set this to "old" for versions < 2.4, otherwise the exact mcrypt version you use. */
|
|
$phpgw_info["server"]["versions"]["mcrypt"] = "{MCRYPT_VERSION}";
|
|
|
|
/* This is a random string used as the initilazation vector for mcrypt
|
|
feel free to change it when setting up phpgroupware on a clean database,
|
|
but you must not change it after that point!
|
|
It should be around 30 bytes in length.
|
|
*/
|
|
$phpgw_info["server"]["mcrypt_iv"] = "{MCRYPT_IV}";
|
|
|
|
/* Uncomment this out and use this for supporting different domains using this single install */
|
|
/* (ignore if you are only supporting a single domain)*/
|
|
/*
|
|
$phpgw_domain["domain2.com"] = array (
|
|
"db_host" => "localhost",
|
|
"db_name" => "phpgw_domain2",
|
|
"db_user" => "phpgroupware",
|
|
"db_pass" => "their_password",
|
|
"db_type" => "mysql",
|
|
"config_passwd" => "changeme"
|
|
);
|
|
*/
|
|
|
|
/* If you do not want phpGroupWare to be cached by proxy servers, uncomment the following */
|
|
/* This is recommended, but not required. */
|
|
//header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
|
|
//header("Pragma: no-cache"); // HTTP/1.0
|
|
|
|
/**************************************************************************\
|
|
* Do not edit these lines *
|
|
\**************************************************************************/
|
|
define("PHPGW_API_INC", PHPGW_INCLUDE_ROOT."/phpgwapi/inc");
|
|
include(PHPGW_SERVER_ROOT."/version.inc.php");
|
|
$phpgw_info["server"]["versions"]["header"] = "1.11";
|
|
// This is a fix for NT
|
|
if (!isset($phpgw_info["flags"]["noapi"]) ||
|
|
!$phpgw_info["flags"]["noapi"] == True){
|
|
include(PHPGW_API_INC . "/functions.inc.php");
|
|
}
|
|
|
|
// Leave off the final php closing tag, some editors will add
|
|
// a \n or space after which will mess up cookies later on
|