removed
[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 (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40
41 // CFG: DEBUG-SQL (if enabled and DEBUG_MODE is enabled all SQL queries will be logged to debug.log)
42 define('DEBUG_SQL', false);
43
44 // Load library
45 require_once(PATH."inc/db/lib.php");
46
47 // Check if the user setups his MySQL stuff...
48 if ((empty($MySQL['login'])) && (!mxchange_installing) && (!isset($_GET['installing'])) && (mxchange_installed))
49 {
50         // No login entered and outside installation mode
51         echo "<STRONG>".LANG_WARNING.":</STRONG> ";
52         if (mxchange_installed)
53         {
54                 // You have changed my configuration file!
55                 die(DIE_CONFIG_CHANGED_YOU);
56         }
57          else
58         {
59                 // Please run the installation script (maybe again)
60                 die(DIE_RUN_INSTALL_MYSQL);
61         }
62 }
63  elseif ((!mxchange_installing) && (!isset($_GET['installing'])) && (empty($MySQL['password'])) && (warn_no_pass))
64 {
65         // No database password entered!!!
66         echo "<STRONG>".LANG_WARNING.":</STRONG> ".WARN_NULL_PASSWORD;
67 }
68
69 // Check if this file is writeable or read-only and warn the user
70 if ((!mxchange_installing) && (mxchange_installed))
71 {
72         // Check for write-permission for config.php and inc directory
73         if (empty($GLOBALS['module'])) $GLOBALS['module'] = "index";
74         if (($GLOBALS['module'] != "admin") && (admin_registered))
75         {
76                 if (is_INCWritable("config"))     ADD_FATAL(FATAL_CONFIG_WRITABLE);
77                 if (is_INCWritable("dummy"))      ADD_FATAL(FATAL_INC_WRITABLE);
78         }
79
80         // Init configuration arrays
81         $CONFIG = array(
82                 'code_length' => 0
83         );
84         $EXT_CSS_FILES = array();
85
86         // Load general stuff, like...
87         require_once(PATH."inc/extensions.php"); // Extension management
88         require_once(PATH."inc/functions.php");  // Non-database functions
89         require_once(PATH."inc/databases.php");     // Several hard-coded databases (arrays, constants)
90
91         if ((!empty($MySQL['host'])) && (!empty($MySQL['login'])) && (!empty($MySQL['password'])) && (!empty($MySQL['dbase'])))
92         {
93                 // Connect to DB
94                 $link = SQL_CONNECT($MySQL['host'], $MySQL['login'], $MySQL['password'], __FILE__, __LINE__);
95                 if ($link !== false)
96                 {
97                         $db = SQL_SELECT_DB($MySQL['dbase'], $link, __FILE__, __LINE__);
98                         if ($db !== false)
99                         {
100                                 // Load configuration stuff
101                                 $result = SQL_QUERY("SELECT pass_len, points_register, points_ref, least_cats, check_double_email, check_double_pass, admin_notify, url_tlock, test_text, max_tlength, test_subj, autosend_active, max_send, url_blacklist, auto_purge, auto_purge_active, last_update, unconfirmed, profile_lock, online_timeout, mad_timestamp, mad_count, profile_update, send_prof_update, resend_profile_update, code_length, patch_level, patch_ctime, guest_stats, ref_payout, activate_xchange, order_multi_page, display_refid, ip_timeout, allow_direct_pay, config FROM "._MYSQL_PREFIX."_config WHERE config='0' LIMIT 1", __FILE__, __LINE__);
102
103                                 if (SQL_NUMROWS($result) == 1) {
104                                         // Load data when previous SQL query did not fail
105                                         if (!$result) {
106                                                 // Something went wrong
107                                                 ADD_FATAL(FATAL_CANNOT_LOAD_CONFIG);
108                                                 return;
109                                         }
110
111                                         // Load the configuration
112                                         $CONFIG = array_merge($CONFIG, SQL_FETCHARRAY($result));
113
114                                         // Initialize include-file-pool
115                                         $INC_POOL = array();
116
117                                         // Load more include files
118                                         require_once(PATH."inc/mysql-manager.php"); // Functions which interact with the database
119
120                                         // Run daily reset
121                                         if ((date("d", $CONFIG['last_update']) != date("d", time()) || (DEBUG_MODE == true)) && (!mxchange_installing) && (mxchange_installed) && (admin_registered) && (!isset($_GET['register'])) && ($CSS != 1))
122                                         {
123                                                 // Do daily things in external PHP file but only when script is completely setup
124                                                 $INC_POOL[] = PATH."inc/reset/reset_daily.php";
125
126                                                 // Daily reset was run!
127                                                 define('__DAILY_RESET', "1");
128                                         }
129
130                                         // Load all extensions
131                                         require_once(PATH."inc/load_extensions.php");
132
133                                         // Loading patching system is required here...
134                                         require_once(PATH."inc/patch-system.php");      // Initialize patch system
135
136                                         // Functions which are related to themes
137                                         require_once(PATH."inc/theme-manager.php");
138
139                                         // Initialize session management
140                                         require_once(PATH."inc/session.php");
141
142                                         // Load admin include file if he is admin
143                                         if (IS_ADMIN())
144                                         {
145                                                 // Administrative functions
146                                                 require_once(PATH."inc/modules/admin/admin-inc.php");
147                                         }
148
149                                         // Get all values
150                                         if (($CSS != 1) && ($CSS != -1))
151                                         {
152                                                 if (empty($GLOBALS['module']))  $GLOBALS['module'] = "empty";
153                                                 if (empty($GLOBALS['what']))    $GLOBALS['what']   = GET_WHAT($GLOBALS['module']);
154                                                 if (empty($GLOBALS['action']))  $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);
155                                         }
156                                          else
157                                         {
158                                                 // Set action/what to empty
159                                                 $GLOBALS['action'] = "";
160                                                 $GLOBALS['what']   = "";
161                                         }
162
163                                         // Secure and validate user ID from cookie
164                                         UPDATE_LOGIN_DATA();
165
166                                         // Get session ID
167                                         if (empty($_COOKIE['PHPSESSID'])) $_COOKIE['PHPSESSID'] = session_id();
168
169                                         // Update online list
170                                         UPDATE_ONLINE_LIST($_COOKIE['PHPSESSID'], $GLOBALS['module'], $GLOBALS['action'], $GLOBALS['what']);
171
172                                         // Load theme name
173                                         $CurrTheme = GET_CURR_THEME();
174
175                                         // Set default 'what' value
176                                         //* DEBUG */ echo "-".$GLOBALS['module']."/".$GLOBALS['what']."-<br />\n";
177                                         if ((empty($GLOBALS['what'])) && (empty($GLOBALS['action'])) && ($CSS != 1) && ($CSS != -1))
178                                         {
179                                                 if ($GLOBALS['module'] == "admin")
180                                                 {
181                                                         // Set 'action' value to 'login' in admin menu
182                                                         $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);
183                                                 }
184                                                  elseif (($GLOBALS['module'] == "index") || ($GLOBALS['module'] == "login"))
185                                                 {
186                                                         // Set 'what' value to 'welcome' in guest and member menu
187                                                         $GLOBALS['what'] = "welcome";
188                                                         if (!empty($CONFIG['index_home'])) $GLOBALS['what'] = $CONFIG['index_home'];
189                                                 }
190                                                  else
191                                                 {
192                                                         // Anything else like begging link
193                                                         $GLOBALS['what'] = "";
194                                                 }
195                                         }
196
197                                         // Update sending pool
198                                         if (($CSS != "1") && ($CSS != "-1")) require_once(PATH."inc/pool-update.php"); // Sends out mails in configureable steps
199
200                                         // Load all active extension including language files when not upgrading.
201                                         // Check module for testing and count one click
202                                         $dummy = CHECK_MODULE($GLOBALS['module']);
203                                         if ($dummy == "done") COUNT_MODULE($GLOBALS['module']);
204                                         unset($dummy);
205                                         if ($CONFIG['activate_xchange'] > 0) activateExchange();
206                                 }
207                                  else
208                                 {
209                                         // If you will read following error message you probably need to contact me (webmaster@mxchange.org)
210                                         // and download the sql-upgrades extension from my server. Please ask me which SQL file(s) you need to
211                                         // import *BEFORE* you import them!
212                                         ADD_FATAL(FATAL_CANNOT_LOAD_CONFIG);
213                                 }
214
215                                 // Free memory
216                                 SQL_FREERESULT($result);
217                         }
218                          else
219                         {
220                                 // Wrong database?
221                                 ADD_FATAL(WRONG_DB_SELECTED);
222                         }
223                 }
224                  else
225                 {
226                         // No link to database!
227                         ADD_FATAL(NO_DB_LINK);
228                         $db = false;
229                 }
230         }
231          else
232         {
233                 // Maybe you forgot to enter your MySQL data?
234                 ADD_FATAL(MYSQL_DATA_MISSING);
235         }
236 }
237  else
238 {
239         ///////////////////////////////////////////////////
240         // Include neccessary functions for installation //
241         ///////////////////////////////////////////////////
242
243         // Set CONFIG array
244         $CONFIG = array(
245                 'code_length' => 0
246         );
247
248         // Set other missing variables
249         $link = false; // No database link by default
250
251         // Include required files
252         require_once(PATH."inc/databases.php");
253         require_once(PATH."inc/extensions.php");
254         require_once(PATH."inc/theme-manager.php");
255         require_once(PATH."inc/load_extensions.php");
256         require_once(PATH."inc/session.php");
257
258         // Check if we are in installation routine
259         $installPhp = basename($_SERVER['PHP_SELF']);
260         if (($installPhp != "install.php") && ($CSS != "1") && ($CSS != -1)) {
261                 // Redirect to the installation system
262                 LOAD_URL(URL."/install.php");
263         }
264
265         // Double-check installation mode
266         if ((!mxchange_installed) || (!admin_registered)) {
267                 // Check for file permissions
268                 if (!is_INCWritable("config")) {
269                         ADD_FATAL(CONFIG_IS_WRITE_PROTECTED);
270                 }
271                 if (!is_INCWritable("dummy")) {
272                         ADD_FATAL(DUMMY_IS_WRITE_PROTECTED);
273                 }
274                 if (!is_INCWritable(".secret/dummy")) {
275                         ADD_FATAL(SECRET_IS_WRITE_PROTECTED);
276                 }
277         }
278 }
279
280 // Any fatal messages?
281 if (!is_array($FATAL)) $FATAL = array();
282 if (((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) && (mxchange_installed) && (!mxchange_installing) && ($CSS != "1"))
283 {
284         // One or more fatal error(s) occur during connect...
285         include (PATH."inc/header.php");
286         include (PATH."inc/fatal_errors.php");
287         unset($FATAL);
288         include (PATH."inc/footer.php");
289         exit;
290 }
291
292 //
293 ?>