Fixes for MT_WORD vs. install vs. installed
[mailer.git] / inc / mysql-connect.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/16/2003 *
4  * ===============                              Last change: 12/13/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mysql-connect.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Connects to your database                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Verbindet zu Ihrer Datenbank                     *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // CFG: DEBUG-SQL (if enabled and DEBUG_MODE is enabled all SQL queries will be logged to debug.log)
41 define('DEBUG_SQL', false);
42
43 // Non-database functions
44 require("inc/functions.php");
45
46 // Load more function libraries or includes
47 foreach (array('request-functions', 'session-functions', 'config-functions', 'filters', 'mysql-manager', 'extensions', 'db/lib', 'handler', 'hooks', 'session') as $lib) {
48         // Load special functions
49         LOAD_INC_ONCE(sprintf("inc/%s.php", $lib));
50 } // END - foreach
51
52 // Set error handler
53 set_error_handler('__errorHandler');
54
55 // Register shutdown hook
56 register_shutdown_function('__SHUTDOWN_HOOK');
57
58 // Check if the user setups his MySQL stuff...
59 if ((empty($MySQL['login'])) && (!defined('mxchange_installing')) && (!REQUEST_ISSET_GET(('installing'))) && (isInstalled())) {
60         // No login entered and outside installation mode
61         OUTPUT_HTML("<strong>{--LANG_WARNING--}:</strong> ");
62         if (isInstalled()) {
63                 // You have changed my configuration file!
64                 mxchange_die("{--DIE_CONFIG_CHANGED_YOU--}");
65         } else {
66                 // Please run the installation script (maybe again)
67                 mxchange_die("{--DIE_RUN_INSTALL_MYSQL--}");
68         }
69 } elseif ((!isInstalling()) && (!REQUEST_ISSET_GET(('installing'))) && (empty($MySQL['password'])) && (isBooleanConstantAndTrue('warn_no_pass'))) {
70         // No database password entered!!!
71         OUTPUT_HTML("<div>{--LANG_WARNING--}:</div> {--WARN_NULL_PASSWORD--}");
72 }
73
74 // Set dummy $_CONFIG array
75 $_CONFIG = array(
76         'code_length' => 0,
77         'patch_level' => 0,
78         'last_update' => time()
79 );
80
81 // Set important header_sent
82 $GLOBALS['header_sent'] = 0;
83
84 // Init fatal messages
85 initFatalMessages();
86
87 // Check if this file is writeable or read-only and warn the user
88 if ((!isInstalling()) && (isInstalled())) {
89         // Check for write-permission for config.php and inc directory
90         if (empty($GLOBALS['module'])) $GLOBALS['module'] = "index";
91
92         // CSS array
93         EXT_INIT_CSS_FILES();
94
95         if ((!empty($MySQL['host'])) && (!empty($MySQL['login'])) && (!empty($MySQL['password'])) && (!empty($MySQL['dbase']))) {
96                 // Connect to DB
97                 SQL_CONNECT($MySQL['host'], $MySQL['login'], $MySQL['password'], __FILE__, __LINE__);
98
99                 // Is the link valid?
100                 if (SQL_IS_LINK_UP()) {
101                         // Is it a valid resource?
102                         if (SQL_SELECT_DB($MySQL['dbase'], __FILE__, __LINE__) === true) {
103                                 // This is required for extension 'optimize' to work
104                                 define('__DB_NAME', $MySQL['dbase']);
105
106                                 // Remove MySQL array from namespace
107                                 unset($MySQL);
108
109                                 // Load configuration stuff
110                                 mergeConfig(LOAD_CONFIG());
111
112                                 // Load "databases" aka static arrays
113                                 LOAD_INC_ONCE("inc/databases.php");
114
115                                 // Loading patching system is required here...
116                                 LOAD_INC_ONCE("inc/patch-system.php"); // Initialize patch system
117
118                                 // Run daily reset
119                                 LOAD_INC_ONCE("inc/check-reset.php");
120
121                                 // Load admin include file if he is admin
122                                 if (IS_ADMIN()) {
123                                         // Administrative functions
124                                         LOAD_INC_ONCE("inc/modules/admin/admin-inc.php");
125                                 } // END - if
126                                 //* DEBUG: */ ADD_POINTS_REFSYSTEM("test", 36, 1000);
127                                 //* DEBUG: */ die();
128
129                                 // Get all values
130                                 if (($GLOBALS['output_mode'] != 1) && ($GLOBALS['output_mode'] != -1)) {
131                                         if (empty($GLOBALS['module']))  $GLOBALS['module'] = "empty";
132                                         if (empty($GLOBALS['what']))    $GLOBALS['what']   = GET_WHAT($GLOBALS['module']);
133                                         if (empty($GLOBALS['action']))  $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);
134                                 } else {
135                                         // Set action/what to empty
136                                         $GLOBALS['action'] = "";
137                                         $GLOBALS['what']   = "";
138                                 }
139
140                                 // Run the init filter chain
141                                 RUN_FILTER('init');
142
143                                 // Set default 'what' value
144                                 //* DEBUG: */ OUTPUT_HTML("-".$GLOBALS['module']."/".$GLOBALS['what']."-<br />");
145                                 if ((empty($GLOBALS['what'])) && (empty($GLOBALS['action'])) && ($GLOBALS['output_mode'] != 1) && ($GLOBALS['output_mode'] != -1)) {
146                                         if ($GLOBALS['module'] == "admin") {
147                                                 // Set 'action' value to 'login' in admin menu
148                                                 $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);
149                                         } elseif (($GLOBALS['module'] == "index") || ($GLOBALS['module'] == "login")) {
150                                                 // Set 'what' value to 'welcome' in guest and member menu
151                                                 $GLOBALS['what'] = "welcome";
152                                                 if (getConfig('index_home') != "") $GLOBALS['what'] = getConfig('index_home');
153                                         } else {
154                                                 // Anything else like begging link
155                                                 $GLOBALS['what'] = "";
156                                         }
157                                 } // END - if
158
159                                 // Update sending pool
160                                 if (($GLOBALS['output_mode'] != "1") && ($GLOBALS['output_mode'] != "-1")) LOAD_INC_ONCE("inc/pool-update.php"); // Sends out mails in configureable steps
161
162                                 // Load all active extension including language files when not upgrading.
163                                 // Check module for testing and count one click
164                                 $dummy = CHECK_MODULE($GLOBALS['module']);
165                                 if ($dummy == "done") COUNT_MODULE($GLOBALS['module']);
166                                 unset($dummy);
167
168                                 // Shall we activate the exchange?
169                                 if (getConfig('activate_xchange') > 0) activateExchange();
170
171                                 // Is the extension sql_patches installed and at least 0.3.6?
172                                 if (GET_EXT_VERSION("sql_patches") >= "0.3.6") {
173                                         // Generate random number
174                                         if (isset($GLOBALS['userid'])) {
175                                                 define('RAND_NUMBER', GEN_RANDOM_CODE(10, mt_rand(10000,32766), $GLOBALS['userid'], ""));
176                                         } else {
177                                                 define('RAND_NUMBER', GEN_RANDOM_CODE(10, mt_rand(10000,32766), 0, ""));
178                                         }
179                                 } else {
180                                         // Generate weak (!!!) code
181                                         define('RAND_NUMBER', mt_rand(1000000, 9999999));
182                                 }
183                         } else {
184                                 // Add language system
185                                 LOAD_INC_ONCE("inc/language.php");
186
187                                 // Wrong database?
188                                 addFatalMessage(getMessage('WRONG_DB_SELECTED'));
189                         }
190                 } else {
191                         // Add language system
192                         LOAD_INC_ONCE("inc/language.php");
193
194                         // No link to database!
195                         addFatalMessage(getMessage('NO_DB_LINK'));
196                 }
197         } else {
198                 // Add language system
199                 LOAD_INC_ONCE("inc/language.php");
200
201                 // Maybe you forgot to enter your MySQL data?
202                 addFatalMessage(getMessage('MYSQL_DATA_MISSING'));
203         }
204 } else {
205         ///////////////////////////////////////////////////
206         // Include neccessary functions for installation //
207         ///////////////////////////////////////////////////
208
209         // Set other missing variables
210         if (!isset($GLOBALS['output_mode'])) $GLOBALS['output_mode'] = "0";
211
212         // Include databases.php
213         LOAD_INC_ONCE("inc/databases.php");
214
215         // Check if we are in installation routine
216         if ((basename($_SERVER['PHP_SELF']) != "install.php") && ($GLOBALS['output_mode'] != "1") && ($GLOBALS['output_mode'] != -1)) {
217                 // Redirect to the installation system
218                 LOAD_URL("install.php");
219         } // END - if
220
221         // Double-check installation mode
222         if ((!isInstalled()) || (!isAdminRegistered())) {
223                 // Check for file permissions
224                 if (!IS_INC_WRITEABLE("config")) {
225                         addFatalMessage(getMessage('CONFIG_IS_WRITE_PROTECTED'));
226                 } // END - if
227                 if (!IS_INC_WRITEABLE("dummy")) {
228                         addFatalMessage(getMessage('DUMMY_IS_WRITE_PROTECTED'));
229                 } // END - if
230                 if (!IS_INC_WRITEABLE(".secret/dummy")) {
231                         addFatalMessage(getMessage('SECRET_IS_WRITE_PROTECTED'));
232                 } // END - if
233         } // END - if
234
235         // Run the init filter chain
236         RUN_FILTER('init');
237 }
238
239 if ((getTotalFatalErrors() > 0) && (isInstalled()) && (!defined('mxchange_installing')) && ($GLOBALS['output_mode'] != "1")) {
240         // One or more fatal error(s) occur during connect...
241         LOAD_INC_ONCE("inc/header.php");
242         LOAD_INC_ONCE("inc/fatal_errors.php");
243         LOAD_INC_ONCE("inc/footer.php");
244 } // END - if
245
246 //
247 ?>