Till Brehm
2014-10-28 8348c8143be4775eccb5c24edebf7f7215a6f90a
commit | author | age
6c9b8b 1 <?php
T 2
3 /*
4 Copyright (c) 2007, Till Brehm, projektfarm Gmbh
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without modification,
8 are permitted provided that the following conditions are met:
9
10     * Redistributions of source code must retain the above copyright notice,
11       this list of conditions and the following disclaimer.
12     * Redistributions in binary form must reproduce the above copyright notice,
13       this list of conditions and the following disclaimer in the documentation
14       and/or other materials provided with the distribution.
15     * Neither the name of ISPConfig nor the names of its contributors
16       may be used to endorse or promote products derived from this software without
17       specific prior written permission.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
26 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 //** Web-only
32 if( !empty($_SERVER['DOCUMENT_ROOT']) ) {
33
7fe908 34     header("Pragma: no-cache");
MC 35     header("Cache-Control: no-store, no-cache, max-age=0, must-revalidate");
36     header("Content-Type: text/html; charset=utf-8");
6c9b8b 37
7fe908 38     ini_set('register_globals', 0);
6c9b8b 39 }
T 40
41 //** SVN Revision
42 $svn_revision = '$Revision: 1525 $';
7fe908 43 $revision = str_replace(array('Revision:', '$', ' '), '', $svn_revision);
6c9b8b 44
T 45 //** Application
46 define('ISPC_APP_TITLE', 'ISPConfig');
8348c8 47 define('ISPC_APP_VERSION', '3.0.5.4p5');
8cf78b 48 define('DEVSYSTEM', 0);
6c9b8b 49
T 50
51 //** Database
52 $conf['db_type'] = 'mysql';
53 $conf['db_host'] = 'localhost';
c3d8a8 54 $conf['db_database'] = 'ispconfig3_305';
6c9b8b 55 $conf['db_user'] = 'root';
T 56 $conf['db_password'] = '';
57 $conf['db_charset'] = 'utf8'; // same charset as html-charset - (HTML --> MYSQL: "utf-8" --> "utf8", "iso-8859-1" --> "latin1")
c84a6d 58 $conf['db_new_link'] = false;
T 59 $conf['db_client_flags'] = 0;
6c9b8b 60
7fe908 61 define('DB_TYPE', $conf['db_type']);
MC 62 define('DB_HOST', $conf['db_host']);
63 define('DB_DATABASE', $conf['db_database']);
64 define('DB_USER', $conf['db_user']);
65 define('DB_PASSWORD', $conf['db_password']);
66 define('DB_CHARSET', $conf['db_charset']);
6c9b8b 67
T 68
69 //** Database settings for the master DB. This setting is only used in multiserver setups
7fe908 70 $conf['dbmaster_type']   = 'mysql';
MC 71 $conf['dbmaster_host']   = '{mysql_master_server_host}';
72 $conf['dbmaster_database']  = '{mysql_master_server_database}';
73 $conf['dbmaster_user']   = '{mysql_master_server_ispconfig_user}';
74 $conf['dbmaster_password']  = '{mysql_master_server_ispconfig_password}';
75 $conf['dbmaster_new_link']   = false;
c84a6d 76 $conf['dbmaster_client_flags']  = 0;
6c9b8b 77
T 78
79 //** Paths
80 $conf['ispconfig_log_dir'] = '/var/log/ispconfig';
81 define('ISPC_ROOT_PATH', realpath(dirname(__FILE__).'/../')); // The main ROOT is the parent directory to this file, ie Interface/. NO trailing slashes.
82 define('ISPC_LIB_PATH', ISPC_ROOT_PATH.'/lib');
83 define('ISPC_CLASS_PATH', ISPC_ROOT_PATH.'/lib/classes');
84 define('ISPC_WEB_PATH', ISPC_ROOT_PATH.'/web');
85 define('ISPC_THEMES_PATH', ISPC_ROOT_PATH.'/web/themes');
86 define('ISPC_WEB_TEMP_PATH', ISPC_WEB_PATH.'/temp'); // Path for downloads, accessible via browser
87 define('ISPC_CACHE_PATH', ISPC_ROOT_PATH.'/cache');
88
89 //** Paths (Do not change!)
7fe908 90 $conf['rootpath'] = substr(dirname(__FILE__), 0, -4);
6c9b8b 91 $conf['fs_div'] = '/'; // File system separator (divider), "\\" on Windows and "/" on Linux and UNIX
T 92 $conf['classpath'] = $conf['rootpath'].$conf['fs_div'].'lib'.$conf['fs_div'].'classes';
93 $conf['temppath'] = $conf['rootpath'].$conf['fs_div'].'temp';
94
7fe908 95 define('FS_DIV', $conf['fs_div']);
MC 96 define('SERVER_ROOT', $conf['rootpath']);
97 define('INCLUDE_ROOT', SERVER_ROOT.FS_DIV.'lib');
98 define('CLASSES_ROOT', INCLUDE_ROOT.FS_DIV.'classes');
6c9b8b 99
T 100
101 //** Server
102 $conf['app_title'] = ISPC_APP_TITLE;
103 $conf['app_version'] = ISPC_APP_VERSION;
104 $conf['app_link'] = 'http://www.howtoforge.com/forums/showthread.php?t=26988';
105 $conf['modules_available'] = 'admin,mail,sites,monitor,client,dns,help';
106 $conf['server_id'] = '1';
107
108
109 //** Interface
110 $conf['interface_modules_enabled'] = 'dashboard,mail,sites,dns,tools';
111
112 //** Demo mode
7fe908 113 /* The demo mode is an option to restrict certain actions in the interface like
MC 114 *  changing the password of users with sys_userid < 3 etc. to be
6c9b8b 115 *  able to run the ISPConfig interface as online demo. It does not
T 116 *  affect the server part. The demo mode should be always set to false
117 *  on every normal installation
118 */
119 $conf['demo_mode'] = false;
120
121
122 //** Logging
123 $conf['log_file'] = $conf['ispconfig_log_dir'].'/ispconfig.log';
124 $conf['log_priority'] = 0; // 0 = Debug, 1 = Warning, 2 = Error
125
126
127 //** Allow software package installations
128 $conf['software_updates_enabled'] = false;
129
130
131 //** Themes
132 $conf['theme'] = 'default';
133 $conf['html_content_encoding'] = 'utf-8'; // example: utf-8, iso-8859-1, ...
02bf99 134 $conf['logo'] = 'themes/default/images/header_logo.png';
6c9b8b 135
T 136 //** Templates
137 $conf['templates'] = '/usr/local/ispconfig/server/conf';
138
139 //** Default Language
140 $conf['language'] = 'en';
141 $conf['debug_language'] = false;
ccbf14 142 $conf['language_file_import_enabled'] = true; // Bool value: true / false
6c9b8b 143
T 144 //** Default Country
145 $conf['country'] = 'DE';
146
147
148 //** Misc.
149 $conf['interface_logout_url'] = ''; // example: http://www.domain.tld/
150
151
152 //** Auto Load Modules
153 $conf['start_db'] = true;
154 $conf['start_session'] = true;
155
156
157 //** Constants
7fe908 158 define('LOGLEVEL_DEBUG', 0);
MC 159 define('LOGLEVEL_WARN', 1);
160 define('LOGLEVEL_ERROR', 2);
6c9b8b 161
T 162 ?>