| | |
| | | <?php |
| | | |
| | | /* |
| | | Copyright (c) 2008, Till Brehm, Falko Timme, projektfarm Gmbh |
| | | Copyright (c) 2007, Till Brehm, projektfarm Gmbh |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without modification, |
| | |
| | | ini_set('register_globals',0); |
| | | } |
| | | |
| | | //** SVN Revision |
| | | $svn_revision = '$Revision$'; |
| | | $revision = str_replace(array('Revision:','$',' '), '', $svn_revision); |
| | | |
| | | //** Application |
| | | define('ISPC_APP_TITLE', 'ISPConfig'); |
| | | define('ISPC_APP_VERSION', '3.0.0.8 beta'); |
| | | define('ISPC_APP_VERSION', '3.0.0.8'); |
| | | |
| | | |
| | | //** Database |
| | |
| | | define("DB_USER",$conf["db_user"]); |
| | | define("DB_PASSWORD",$conf["db_password"]); |
| | | define("DB_CHARSET",$conf["db_charset"]); |
| | | |
| | | |
| | | //** Database settings for the master DB. This setting is only used in multiserver setups |
| | | $conf["dbmaster_type"] = 'mysql'; |
| | | $conf["dbmaster_host"] = '{mysql_master_server_host}'; |
| | | $conf["dbmaster_database"] = '{mysql_master_server_database}'; |
| | | $conf["dbmaster_user"] = '{mysql_master_server_ispconfig_user}'; |
| | | $conf["dbmaster_password"] = '{mysql_master_server_ispconfig_password}'; |
| | | |
| | | |
| | | //** Paths |
| | |
| | | define("LOGLEVEL_WARN",1); |
| | | define("LOGLEVEL_ERROR",2); |
| | | |
| | | ?> |
| | | ?> |