5ad12fcb5d8f163413c9f72ee902cc89cf5fe141
[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::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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 // Non-database functions
46 require('inc/functions.php');
47
48 // Wrapper functions
49 require('inc/wrapper-functions.php');
50
51 // Load more function libraries or includes
52 foreach (array('request-functions', 'session-functions', 'config-functions', 'code-functions', 'inc-functions', 'language-functions', 'filters', 'mysql-manager', 'extensions', 'db/lib', 'handler', 'hooks') as $lib) {
53         // Load special functions
54         loadIncludeOnce('inc/' . $lib . '.php');
55 } // END - foreach
56
57 // Set error handler
58 set_error_handler('__errorHandler');
59
60 // Init error handler
61 initErrorHandler();
62
63 // Init request
64 initRequest();
65
66 // Set important header_sent
67 $GLOBALS['header_sent'] = 0;
68
69 // Init fatal messages
70 initFatalMessages();
71
72 // Check if this file is writeable or read-only and warn the user
73 if ((!isInstalling()) && (isInstalled())) {
74         // Load "databases" aka static arrays
75         loadIncludeOnce('inc/databases.php');
76
77         // Load configuration file(s) here
78         loadIncludeOnce('inc/load_config.php');
79
80         // Check for write-permission for config.php and inc directory
81         if (empty($GLOBALS['module'])) $GLOBALS['module'] = REQUEST_GET('module');
82         if (empty($GLOBALS['module'])) $GLOBALS['module'] = 'index';
83
84         // CSS array
85         EXT_INIT_CSS_FILES();
86
87         if ((!empty($GLOBALS['mysql']['host'])) && (!empty($GLOBALS['mysql']['login'])) && (!empty($GLOBALS['mysql']['password'])) && (!empty($GLOBALS['mysql']['dbase']))) {
88                 // Connect to DB
89                 SQL_CONNECT($GLOBALS['mysql']['host'], $GLOBALS['mysql']['login'], $GLOBALS['mysql']['password'], __FILE__, __LINE__);
90
91                 // Is the link valid?
92                 if (SQL_IS_LINK_UP()) {
93                         // Enable exit on error
94                         enableExitOnError();
95
96                         // Is it a valid resource?
97                         if (SQL_SELECT_DB($GLOBALS['mysql']['dbase'], __FILE__, __LINE__) === true) {
98                                 // This is required for extension 'optimize' to work
99                                 define('__DB_NAME', $GLOBALS['mysql']['dbase']);
100
101                                 // Remove MySQL array from namespace
102                                 unset($GLOBALS['mysql']);
103
104                                 // Load configuration stuff
105                                 loadConfiguration();
106
107                                 // Init session
108                                 loadIncludeOnce('inc/session.php');
109
110                                 // Load versions
111                                 loadIncludeOnce('inc/versions.php');
112
113                                 // Loading patching system is required here...
114                                 loadIncludeOnce('inc/patch-system.php');
115
116                                 // Run daily reset
117                                 loadIncludeOnce('inc/check-reset.php');
118
119                                 // Load admin include file if he is admin
120                                 if (IS_ADMIN()) {
121                                         // Administrative functions
122                                         loadIncludeOnce('inc/modules/admin/admin-inc.php');
123                                 } // END - if
124                                 //* DEBUG: */ ADD_POINTS_REFSYSTEM('test', 36, 1000);
125                                 //* DEBUG: */ die();
126
127                                 // Get all values
128                                 if (($GLOBALS['output_mode'] != 1) && ($GLOBALS['output_mode'] != -1)) {
129                                         if (empty($GLOBALS['module']))  $GLOBALS['module'] = 'empty';
130                                         if (empty($GLOBALS['what']))    $GLOBALS['what']   = getWhatFromModule($GLOBALS['module']);
131                                         if (empty($GLOBALS['action']))  $GLOBALS['action'] = getModeAction($GLOBALS['module'], $GLOBALS['what']);
132                                 } else {
133                                         // Set action/what to empty
134                                         $GLOBALS['action'] = '';
135                                         $GLOBALS['what']   = '';
136                                 }
137
138                                 // Run the init filter chain
139                                 runFilterChain('init');
140
141                                 // Set default 'what' value
142                                 //* DEBUG: */ OUTPUT_HTML('-'.$GLOBALS['module'].'/'.$GLOBALS['what']."-<br />");
143                                 if ((empty($GLOBALS['what'])) && (empty($GLOBALS['action'])) && ($GLOBALS['output_mode'] != 1) && ($GLOBALS['output_mode'] != -1)) {
144                                         if ($GLOBALS['module'] == 'admin') {
145                                                 // Set 'action' value to 'login' in admin menu
146                                                 $GLOBALS['action'] = getModeAction($GLOBALS['module'], $GLOBALS['what']);
147                                         } elseif (($GLOBALS['module'] == 'index') || ($GLOBALS['module'] == 'login')) {
148                                                 // Set 'what' value to 'welcome' in guest and member menu
149                                                 $GLOBALS['what'] = 'welcome';
150                                                 if (getConfig('index_home') != '') $GLOBALS['what'] = getConfig('index_home');
151                                         } else {
152                                                 // Anything else like begging link
153                                                 $GLOBALS['what'] = '';
154                                         }
155                                 } // END - if
156
157                                 // Update sending pool
158                                 if (($GLOBALS['output_mode'] != '1') && ($GLOBALS['output_mode'] != '-1')) loadIncludeOnce('inc/pool-update.php'); // Sends out mails in configureable steps
159
160                                 // Load all active extension including language files when not upgrading.
161                                 // Check module for testing and count one click
162                                 if (checkModulePermissions($GLOBALS['module']) == 'done') countModuleHit($GLOBALS['module']);
163
164                                 // Shall we activate the exchange?
165                                 if (getConfig('activate_xchange') > 0) activateExchange();
166
167                                 // Is the extension sql_patches installed and at least 0.3.6?
168                                 if (GET_EXT_VERSION('sql_patches') >= '0.3.6') {
169                                         // Generate random number
170                                         define('RAND_NUMBER', generateRandomCode(10, mt_rand(10000,32766), getUserId(), ''));
171                                 } else {
172                                         // Generate weak (!!!) code
173                                         define('RAND_NUMBER', mt_rand(1000000, 9999999));
174                                 }
175                         } else {
176                                 // Wrong database?
177                                 addFatalMessage(__FILE__, __LINE__, getMessage('WRONG_DB_SELECTED'));
178                         }
179                 } else {
180                         // No link to database!
181                         addFatalMessage(__FILE__, __LINE__, getMessage('NO_DB_LINK'));
182                 }
183         } else {
184                 // Maybe you forgot to enter your MySQL data?
185                 addFatalMessage(__FILE__, __LINE__, getMessage('MYSQL_DATA_MISSING'));
186         }
187 } else {
188         ///////////////////////////////////////////////////
189         // Include neccessary functions for installation //
190         ///////////////////////////////////////////////////
191
192         // Default output is 'direct' for HTML output
193         setConfigEntry('OUTPUT_MODE', 'direct');
194
195         // This hack prevents a backtrace in CSS output
196         if ($GLOBALS['output_mode'] == '1') {
197                 // Problem with config so set output mode
198                 setConfigEntry('OUTPUT_MODE', 'render');
199         } // END - if
200
201         // Set other missing variables
202         if (!isset($GLOBALS['output_mode'])) $GLOBALS['output_mode'] = '0';
203
204         // Include databases.php
205         loadIncludeOnce('inc/databases.php');
206
207         // Init session
208         loadIncludeOnce('inc/session.php');
209
210         // Load versions
211         loadIncludeOnce('inc/versions.php');
212
213         // Check if we are in installation routine
214         if ((!isInstalling()) && ($GLOBALS['output_mode'] != '1') && ($GLOBALS['output_mode'] != -1)) {
215                 // Redirect to the installation system
216                 redirectToUrl('install.php');
217         } // END - if
218
219         // Double-check installation mode
220         if ((!isInstalled()) || (!isAdminRegistered())) {
221                 // Check for file permissions
222                 if (!isIncludeWriteable('config')) {
223                         addFatalMessage(__FILE__, __LINE__, getMessage('CONFIG_IS_WRITE_PROTECTED'));
224                 } // END - if
225                 if (!isIncludeWriteable('dummy')) {
226                         addFatalMessage(__FILE__, __LINE__, getMessage('DUMMY_IS_WRITE_PROTECTED'));
227                 } // END - if
228                 if (!isIncludeWriteable('.secret/dummy')) {
229                         addFatalMessage(__FILE__, __LINE__, getMessage('SECRET_IS_WRITE_PROTECTED'));
230                 } // END - if
231         } // END - if
232
233         // Run the init filter chain
234         runFilterChain('init');
235
236         // Load extension 'sql_patches'
237         LOAD_EXTENSION('sql_patches');
238
239         // Load configuration file(s) here
240         loadIncludeOnce('inc/load_config.php');
241 }
242
243 // Init session
244 loadIncludeOnce('inc/session.php');
245
246 // Load versions
247 loadIncludeOnce('inc/versions.php');
248
249 if ((getTotalFatalErrors() > 0) && (isInstalled()) && (!isInstalling()) && ($GLOBALS['output_mode'] != '1')) {
250         // One or more fatal error(s) occur during connect...
251         loadIncludeOnce('inc/header.php');
252         loadIncludeOnce('inc/fatal_errors.php');
253         loadIncludeOnce('inc/footer.php');
254 } // END - if
255
256 //
257 ?>