Error handler activated
[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 // Default is not a frameset
44 global $isFrameset;
45 $isFrameset = false;
46
47 // Load library
48 require_once(PATH."inc/db/lib.php");
49
50 // Load general functions
51 require_once(PATH."inc/functions.php");  // Non-database functions
52
53 // Load more include files
54 require_once(PATH."inc/mysql-manager.php"); // Functions which interact with the database
55
56 // Load extensions and language
57 require_once(PATH."inc/extensions.php");
58 require_once(PATH."inc/language.php");
59
60 // Init error handler
61 function __errorHandler ($errno, $errstr, $errfile, $errline) {
62         $msg = sprintf("errno=%s,errstr=%s,errfile=%s,errline=%s",
63                 $errno,
64                 $errstr,
65                 basename($errfile),
66                 $errline
67         );
68         DEBUG_LOG(__FUNCTION__.":".$msg, true);
69         print "Please report this error:<pre>";
70         debug_print_backtrace();
71         die("</pre>");
72 }
73
74 // Set error handler
75 set_error_handler('__errorHandler');
76
77 // Check if the user setups his MySQL stuff...
78 if ((empty($MySQL['login'])) && (!defined('mxchange_installing')) && (!isset($_GET['installing'])) && (isBooleanConstantAndTrue('mxchange_installed'))) {
79         // No login entered and outside installation mode
80         echo "<STRONG>".LANG_WARNING.":</STRONG> ";
81         if (isBooleanConstantAndTrue('mxchange_installed')) {
82                 // You have changed my configuration file!
83                 die(DIE_CONFIG_CHANGED_YOU);
84         } else {
85                 // Please run the installation script (maybe again)
86                 die(DIE_RUN_INSTALL_MYSQL);
87         }
88 } elseif ((!defined('mxchange_installing')) && (!isset($_GET['installing'])) && (empty($MySQL['password'])) && (isBooleanConstantAndTrue('warn_no_pass'))) {
89         // No database password entered!!!
90         echo "<STRONG>".LANG_WARNING.":</STRONG> ".WARN_NULL_PASSWORD;
91 }
92
93 // Check if this file is writeable or read-only and warn the user
94 if ((!isBooleanConstantAndTrue('mxchange_installing')) && (isBooleanConstantAndTrue('mxchange_installed'))) {
95         // Check for write-permission for config.php and inc directory
96         if (empty($GLOBALS['module'])) $GLOBALS['module'] = "index";
97
98         // CSS array
99         $EXT_CSS_FILES = array();
100
101         if ((!empty($MySQL['host'])) && (!empty($MySQL['login'])) && (!empty($MySQL['password'])) && (!empty($MySQL['dbase']))) {
102                 // Connect to DB
103                 global $link;
104                 $link = SQL_CONNECT($MySQL['host'], $MySQL['login'], $MySQL['password'], __FILE__, __LINE__);
105
106                 // Is the link valid?
107                 if (is_resource($link)) {
108                         // Choose the database
109                         global $db;
110                         $db = SQL_SELECT_DB($MySQL['dbase'], $link, __FILE__, __LINE__);
111
112                         // Is it a valid resource?
113                         if ($db === true) {
114                                 // Remove MySQL array from namespace
115                                 unset($MySQL);
116
117                                 // Load configuration stuff
118                                 $_CONFIG = LOAD_CONFIG();
119
120                                 // Initialize include-file-pool
121                                 $INC_POOL = array();
122
123                                 // Load "databases" aka static arrays
124                                 require_once(PATH."inc/databases.php");
125
126                                 // Loading patching system is required here...
127                                 require_once(PATH."inc/patch-system.php"); // Initialize patch system
128
129                                 // Functions which are related to themes
130                                 require_once(PATH."inc/theme-manager.php");
131
132                                 // Run daily reset
133                                 require_once(PATH."inc/check-reset.php");
134
135                                 // Load admin include file if he is admin
136                                 if (IS_ADMIN()) {
137                                         // Administrative functions
138                                         require_once(PATH."inc/modules/admin/admin-inc.php");
139                                 } // END - if
140
141                                 // Get all values
142                                 if (($CSS != 1) && ($CSS != -1)) {
143                                         if (empty($GLOBALS['module']))  $GLOBALS['module'] = "empty";
144                                         if (empty($GLOBALS['what']))    $GLOBALS['what']   = GET_WHAT($GLOBALS['module']);
145                                         if (empty($GLOBALS['action']))  $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);
146                                 } else {
147                                         // Set action/what to empty
148                                         $GLOBALS['action'] = "";
149                                         $GLOBALS['what']   = "";
150                                 }
151
152                                 // Secure and validate user ID from cookie
153                                 UPDATE_LOGIN_DATA();
154
155                                 // Update online list
156                                 UPDATE_ONLINE_LIST($PHPSESSID, $GLOBALS['module'], $GLOBALS['action'], $GLOBALS['what']);
157
158                                 // Set default 'what' value
159                                 //* DEBUG */ echo "-".$GLOBALS['module']."/".$GLOBALS['what']."-<br />\n";
160                                 if ((empty($GLOBALS['what'])) && (empty($GLOBALS['action'])) && ($CSS != 1) && ($CSS != -1)) {
161                                         if ($GLOBALS['module'] == "admin") {
162                                                 // Set 'action' value to 'login' in admin menu
163                                                 $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);
164                                         } elseif (($GLOBALS['module'] == "index") || ($GLOBALS['module'] == "login")) {
165                                                 // Set 'what' value to 'welcome' in guest and member menu
166                                                 $GLOBALS['what'] = "welcome";
167                                                 if (!empty($_CONFIG['index_home'])) $GLOBALS['what'] = $_CONFIG['index_home'];
168                                         } else {
169                                                 // Anything else like begging link
170                                                 $GLOBALS['what'] = "";
171                                         }
172                                 } // END - if
173
174                                 // Update sending pool
175                                 if (($CSS != "1") && ($CSS != "-1")) require_once(PATH."inc/pool-update.php"); // Sends out mails in configureable steps
176
177                                 // Load all active extension including language files when not upgrading.
178                                 // Check module for testing and count one click
179                                 $dummy = CHECK_MODULE($GLOBALS['module']);
180                                 if ($dummy == "done") COUNT_MODULE($GLOBALS['module']);
181                                 unset($dummy);
182
183                                 // Shall we activate the exchange?
184                                 if ($_CONFIG['activate_xchange'] > 0) activateExchange();
185
186                                 // Is the extension sql_patches installed and at least 0.3.6?
187                                 if (GET_EXT_VERSION("sql_patches") >= "0.3.6") {
188                                         // Generate random number
189                                         if (isset($GLOBALS['userid'])) {
190                                                 define('RAND_NUMBER', GEN_RANDOM_CODE(10, mt_rand(10000,32766), $GLOBALS['userid'], ""));
191                                         } else {
192                                                 define('RAND_NUMBER', GEN_RANDOM_CODE(10, mt_rand(10000,32766), 0, ""));
193                                         }
194                                 } else {
195                                         // Generate weak (!!!) code
196                                         define('RAND_NUMBER', mt_rand(1000000, 9999999));
197                                 }
198                         } else {
199                                 // Wrong database?
200                                 ADD_FATAL(WRONG_DB_SELECTED);
201                         }
202                 } else {
203                         // No link to database!
204                         ADD_FATAL(NO_DB_LINK);
205                         $db = false;
206                 }
207         } else {
208                 // Maybe you forgot to enter your MySQL data?
209                 ADD_FATAL(MYSQL_DATA_MISSING);
210         }
211 } else {
212         ///////////////////////////////////////////////////
213         // Include neccessary functions for installation //
214         ///////////////////////////////////////////////////
215
216         // Set CONFIG array
217         $_CONFIG = array(
218                 'code_length' => 0
219         );
220
221         // Set other missing variables
222         $link = false; // No database link by default
223
224         // Include required files
225         require_once(PATH."inc/databases.php");
226         require_once(PATH."inc/theme-manager.php");
227
228         // Check if we are in installation routine
229         $installPhp = basename($_SERVER['PHP_SELF']);
230         if (($installPhp != "install.php") && ($CSS != "1") && ($CSS != -1)) {
231                 // Redirect to the installation system
232                 LOAD_URL("install.php");
233         } // END - if
234
235         // Double-check installation mode
236         if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndTrue('admin_registered'))) {
237                 // Check for file permissions
238                 if (!is_INCWritable("config")) {
239                         ADD_FATAL(CONFIG_IS_WRITE_PROTECTED);
240                 }
241                 if (!is_INCWritable("dummy")) {
242                         ADD_FATAL(DUMMY_IS_WRITE_PROTECTED);
243                 }
244                 if (!is_INCWritable(".secret/dummy")) {
245                         ADD_FATAL(SECRET_IS_WRITE_PROTECTED);
246                 }
247         } // END - if
248 }
249
250 // Any fatal messages?
251 if (!is_array($FATAL)) $FATAL = array();
252 if (((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) && (isBooleanConstantAndTrue('mxchange_installed')) && (!defined('mxchange_installing')) && ($CSS != "1"))
253 {
254         // One or more fatal error(s) occur during connect...
255         include (PATH."inc/header.php");
256         include (PATH."inc/fatal_errors.php");
257         unset($FATAL);
258         include (PATH."inc/footer.php");
259         exit;
260 }
261
262 //
263 ?>