Fix for order module
[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         $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 require_once(PATH."inc/extensions.php");
53 require_once(PATH."inc/language.php");
54
55 // Check if the user setups his MySQL stuff...
56 if ((empty($MySQL['login'])) && (!isBooleanConstantAndTrue('mxchange_installing')) && (!isset($_GET['installing'])) && (isBooleanConstantAndTrue('mxchange_installed'))) {
57         // No login entered and outside installation mode
58         echo "<STRONG>".LANG_WARNING.":</STRONG> ";
59         if (isBooleanConstantAndTrue('mxchange_installed')) {
60                 // You have changed my configuration file!
61                 die(DIE_CONFIG_CHANGED_YOU);
62         } else {
63                 // Please run the installation script (maybe again)
64                 die(DIE_RUN_INSTALL_MYSQL);
65         }
66 } elseif ((!isBooleanConstantAndTrue('mxchange_installing')) && (!isset($_GET['installing'])) && (empty($MySQL['password'])) && (isBooleanConstantAndTrue('warn_no_pass'))) {
67         // No database password entered!!!
68         echo "<STRONG>".LANG_WARNING.":</STRONG> ".WARN_NULL_PASSWORD;
69 }
70
71 // Check if this file is writeable or read-only and warn the user
72 if ((!isBooleanConstantAndTrue('mxchange_installing')) && (isBooleanConstantAndTrue('mxchange_installed'))) {
73         // Check for write-permission for config.php and inc directory
74         if (empty($GLOBALS['module'])) $GLOBALS['module'] = "index";
75         if (($GLOBALS['module'] != "admin") && (isBooleanConstantAndTrue('admin_registered')) && (!isset($_SERVER['WINDIR']))) {
76                 if (is_INCWritable("config"))     ADD_FATAL(FATAL_CONFIG_WRITABLE);
77                 if (is_INCWritable("dummy"))      ADD_FATAL(FATAL_INC_WRITABLE);
78         }
79         $EXT_CSS_FILES = array();
80
81         if ((!empty($MySQL['host'])) && (!empty($MySQL['login'])) && (!empty($MySQL['password'])) && (!empty($MySQL['dbase']))) {
82                 // Connect to DB
83                 global $link;
84                 $link = SQL_CONNECT($MySQL['host'], $MySQL['login'], $MySQL['password'], __FILE__, __LINE__);
85
86                 // Is the link valid?
87                 if (is_resource($link)) {
88                         // Choose the database
89                         global $db;
90                         $db = SQL_SELECT_DB($MySQL['dbase'], $link, __FILE__, __LINE__);
91
92                         // Is it a valid resource?
93                         if ($db === true) {
94                                 // Load more include files
95                                 require_once(PATH."inc/mysql-manager.php"); // Functions which interact with the database
96
97                                 // Load configuration stuff
98                                 $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
99 FROM "._MYSQL_PREFIX."_config
100 WHERE config=0
101 LIMIT 1", __FILE__, __LINE__);
102
103                                 if (SQL_NUMROWS($result) == 1) {
104                                         // Load data when previous SQL query did not fail
105                                         if (!is_resource($result)) {
106                                                 // Something went wrong
107                                                 ADD_FATAL(FATAL_CANNOT_LOAD_CONFIG);
108                                                 return;
109                                         } // END - if
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 "databases" aka static arrays
118                                         require_once(PATH."inc/databases.php");
119
120                                         // Loading patching system is required here...
121                                         require_once(PATH."inc/patch-system.php"); // Initialize patch system
122
123                                         // Functions which are related to themes
124                                         require_once(PATH."inc/theme-manager.php");
125
126                                         // Run daily reset
127                                         // 01    2                            2        2         3321    1                         2                     21    1                        2                    21    1                        2                  21    1      2                 21    1         10
128                                         if ((date("d", $_CONFIG['last_update']) != date("d", time())) && (!isBooleanConstantAndTrue('mxchange_installing')) && (isBooleanConstantAndTrue('mxchange_installed')) && (isBooleanConstantAndTrue('admin_registered')) && (!isset($_GET['register'])) && ($CSS != 1)) {
129                                                 // Do daily things in external PHP file but only when script is completely setup
130                                                 $INC_POOL = array();
131                                                 $INC_POOL[] = sprintf("%sinc/reset/reset_daily.php", PATH);
132
133                                                 // Daily reset was run!
134                                                 define('__DAILY_RESET', true);
135
136                                                 // Add more includes
137                                                 RESET_ADD_INCLUDES();
138
139                                                 // Run the full reset scripts
140                                                 foreach ($INC_POOL as $incFile) {
141                                                         require_once($incFile);
142                                                 } // END - foreach
143                                         } // END - if
144
145                                         // Load admin include file if he is admin
146                                         if (IS_ADMIN()) {
147                                                 // Administrative functions
148                                                 require_once(PATH."inc/modules/admin/admin-inc.php");
149                                         } // END - if
150
151                                         // Get all values
152                                         if (($CSS != 1) && ($CSS != -1)) {
153                                                 if (empty($GLOBALS['module']))  $GLOBALS['module'] = "empty";
154                                                 if (empty($GLOBALS['what']))    $GLOBALS['what']   = GET_WHAT($GLOBALS['module']);
155                                                 if (empty($GLOBALS['action']))  $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);
156                                         } else {
157                                                 // Set action/what to empty
158                                                 $GLOBALS['action'] = "";
159                                                 $GLOBALS['what']   = "";
160                                         }
161
162                                         // Secure and validate user ID from cookie
163                                         UPDATE_LOGIN_DATA();
164
165                                         // Update online list
166                                         UPDATE_ONLINE_LIST(get_session('PHPSESSID'), $GLOBALS['module'], $GLOBALS['action'], $GLOBALS['what']);
167
168                                         // Load theme name
169                                         $currTheme = GET_CURR_THEME();
170
171                                         // Set default 'what' value
172                                         //* DEBUG */ echo "-".$GLOBALS['module']."/".$GLOBALS['what']."-<br />\n";
173                                         if ((empty($GLOBALS['what'])) && (empty($GLOBALS['action'])) && ($CSS != 1) && ($CSS != -1)) {
174                                                 if ($GLOBALS['module'] == "admin") {
175                                                         // Set 'action' value to 'login' in admin menu
176                                                         $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);
177                                                 } elseif (($GLOBALS['module'] == "index") || ($GLOBALS['module'] == "login")) {
178                                                         // Set 'what' value to 'welcome' in guest and member menu
179                                                         $GLOBALS['what'] = "welcome";
180                                                         if (!empty($_CONFIG['index_home'])) $GLOBALS['what'] = $_CONFIG['index_home'];
181                                                 } else {
182                                                         // Anything else like begging link
183                                                         $GLOBALS['what'] = "";
184                                                 }
185                                         }
186
187                                         // Update sending pool
188                                         if (($CSS != "1") && ($CSS != "-1")) require_once(PATH."inc/pool-update.php"); // Sends out mails in configureable steps
189
190                                         // Load all active extension including language files when not upgrading.
191                                         // Check module for testing and count one click
192                                         $dummy = CHECK_MODULE($GLOBALS['module']);
193                                         if ($dummy == "done") COUNT_MODULE($GLOBALS['module']);
194                                         unset($dummy);
195
196                                         // Shall we activate the exchange?
197                                         if ($_CONFIG['activate_xchange'] > 0) activateExchange();
198                                 } else {
199                                         // If you will read following error message you probably need to contact me (webmaster@mxchange.org)
200                                         // and download the sql-upgrades extension from my server. Please ask me which SQL file(s) you need to
201                                         // import *BEFORE* you import them!
202                                         ADD_FATAL(FATAL_CANNOT_LOAD_CONFIG);
203
204                                         // Reset link and db here, close database first
205                                         SQL_CLOSE($link, __FILE__, __LINE__);
206                                         $link = false; $db = false;
207                                 }
208
209                                 // Free memory
210                                 SQL_FREERESULT($result);
211
212                                 // Generate random number
213                                 if (isset($GLOBALS['userid'])) {
214                                         define('RAND_NUMBER', GEN_RANDOM_CODE(10, mt_rand(10000,32766), $GLOBALS['userid'], ""));
215                                 } else {
216                                         define('RAND_NUMBER', GEN_RANDOM_CODE(10, mt_rand(10000,32766), 0, ""));
217                                 }
218                         } else {
219                                 // Wrong database?
220                                 ADD_FATAL(WRONG_DB_SELECTED);
221                         }
222                 } else {
223                         // No link to database!
224                         ADD_FATAL(NO_DB_LINK);
225                         $db = false;
226                 }
227         } else {
228                 // Maybe you forgot to enter your MySQL data?
229                 ADD_FATAL(MYSQL_DATA_MISSING);
230         }
231 } else {
232         ///////////////////////////////////////////////////
233         // Include neccessary functions for installation //
234         ///////////////////////////////////////////////////
235
236         // Set CONFIG array
237         $_CONFIG = array(
238                 'code_length' => 0
239         );
240
241         // Set other missing variables
242         $link = false; // No database link by default
243
244         // Include required files
245         require_once(PATH."inc/databases.php");
246         require_once(PATH."inc/theme-manager.php");
247
248         // Check if we are in installation routine
249         $installPhp = basename($_SERVER['PHP_SELF']);
250         if (($installPhp != "install.php") && ($CSS != "1") && ($CSS != -1)) {
251                 // Redirect to the installation system
252                 LOAD_URL("install.php");
253         }
254
255         // Double-check installation mode
256         if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndTrue('admin_registered'))) {
257                 // Check for file permissions
258                 if (!is_INCWritable("config")) {
259                         ADD_FATAL(CONFIG_IS_WRITE_PROTECTED);
260                 }
261                 if (!is_INCWritable("dummy")) {
262                         ADD_FATAL(DUMMY_IS_WRITE_PROTECTED);
263                 }
264                 if (!is_INCWritable(".secret/dummy")) {
265                         ADD_FATAL(SECRET_IS_WRITE_PROTECTED);
266                 }
267         }
268 }
269
270 // Any fatal messages?
271 if (!is_array($FATAL)) $FATAL = array();
272 if (((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) && (isBooleanConstantAndTrue('mxchange_installed')) && (!isBooleanConstantAndTrue('mxchange_installing')) && ($CSS != "1"))
273 {
274         // One or more fatal error(s) occur during connect...
275         include (PATH."inc/header.php");
276         include (PATH."inc/fatal_errors.php");
277         unset($FATAL);
278         include (PATH."inc/footer.php");
279         exit;
280 }
281
282 //
283 ?>