mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
renamed table notes -> phpgw_notes
This commit is contained in:
parent
c51f21db61
commit
20a4929ff5
@ -19,26 +19,26 @@
|
|||||||
* the absolute path to fit your site, and you should be up and running. *
|
* the absolute path to fit your site, and you should be up and running. *
|
||||||
\**************************************************************************/
|
\**************************************************************************/
|
||||||
|
|
||||||
define("PHPGW_SERVER_ROOT", "/usr/local/www/phpgroupware");
|
define("PHPGW_SERVER_ROOT", "{SERVER_ROOT}");
|
||||||
define("PHPGW_INCLUDE_ROOT", "/usr/local/www/phpgroupware");
|
define("PHPGW_INCLUDE_ROOT", "{INCLUDE_ROOT}");
|
||||||
$phpgw_info["server"]["header_admin_password"] = "bla";
|
$phpgw_info["server"]["header_admin_password"] = "{HEADER_ADMIN_PASSWORD}";
|
||||||
|
|
||||||
$phpgw_domain["default"] = array (
|
$phpgw_domain["default"] = array (
|
||||||
"db_host" => "localhost",
|
"db_host" => "{DB_HOST}",
|
||||||
"db_name" => "phpgw",
|
"db_name" => "{DB_NAME}",
|
||||||
"db_user" => "root",
|
"db_user" => "{DB_USER}",
|
||||||
"db_pass" => "",
|
"db_pass" => "{DB_PASS}",
|
||||||
/* Look at the README file */
|
/* Look at the README file */
|
||||||
"db_type" => "mysql",
|
"db_type" => "{DB_TYPE}",
|
||||||
/* This will limit who is allowed to make configuration modifcations */
|
/* This will limit who is allowed to make configuration modifcations */
|
||||||
"config_passwd" => "bla"
|
"config_passwd" => "{CONFIG_PASS}"
|
||||||
);
|
);
|
||||||
|
|
||||||
/* If you want to have your domains in a select box, change to True */
|
/* If you want to have your domains in a select box, change to True */
|
||||||
$phpgw_info["server"]["show_domain_selectbox"] = False;
|
$phpgw_info["server"]["show_domain_selectbox"] = {DOMAIN_SELECTBOX};
|
||||||
|
|
||||||
/* This is used to control mcrypt's use */
|
/* This is used to control mcrypt's use */
|
||||||
$phpgw_info["server"]["mcrypt_enabled"] = False;
|
$phpgw_info["server"]["mcrypt_enabled"] = {ENABLE_MCRYPT};
|
||||||
/* Set this to "old" for versions < 2.4, otherwise the exact mcrypt version you use. */
|
/* Set this to "old" for versions < 2.4, otherwise the exact mcrypt version you use. */
|
||||||
$phpgw_info["server"]["versions"]["mcrypt"] = "{MCRYPT_VERSION}";
|
$phpgw_info["server"]["versions"]["mcrypt"] = "{MCRYPT_VERSION}";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user