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