- obsolete templates/scripts removed
[mailer.git] / 0.2.1 / inc / mysql-connect.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 11/16/2003 *\r
4  * ===============                              Last change: 12/13/2004 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : mysql-connect.php                                *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : Connects to your database                        *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : Verbindet zu Ihrer Datenbank                     *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Some security stuff...\r
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
36 {\r
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
38         require($INC);\r
39 }\r
40 \r
41 // CFG: DEBUG-SQL (if enabled and DEBUG_MODE is enabled all SQL queries will be logged to debug.log)\r
42 define('DEBUG_SQL', false);\r
43 \r
44 // Load library\r
45 require_once(PATH."inc/db/lib.php");\r
46 \r
47 // Check if the user setups his MySQL stuff...\r
48 if ((empty($MySQL['login'])) && (!mxchange_installing) && (!isset($_GET['installing'])) && (mxchange_installed))\r
49 {\r
50         // No login entered and outside installation mode\r
51         echo "<STRONG>".LANG_WARNING.":</STRONG> ";\r
52         if (mxchange_installed)\r
53         {\r
54                 // You have changed my configuration file!\r
55                 die(DIE_CONFIG_CHANGED_YOU);\r
56         }\r
57          else\r
58         {\r
59                 // Please run the installation script (maybe again)\r
60                 die(DIE_RUN_INSTALL_MYSQL);\r
61         }\r
62 }\r
63  elseif ((!mxchange_installing) && (!isset($_GET['installing'])) && (empty($MySQL['password'])) && (warn_no_pass))\r
64 {\r
65         // No database password entered!!!\r
66         echo "<STRONG>".LANG_WARNING.":</STRONG> ".WARN_NULL_PASSWORD;\r
67 }\r
68 \r
69 // Check if this file is writeable or read-only and warn the user\r
70 if ((!mxchange_installing) && (mxchange_installed))\r
71 {\r
72         // Check for write-permission for config.php and inc directory\r
73         if (empty($GLOBALS['module'])) $GLOBALS['module'] = "index";\r
74         if (($GLOBALS['module'] != "admin") && (admin_registered))\r
75         {\r
76                 if (is_INCWritable("config"))     ADD_FATAL(FATAL_CONFIG_WRITABLE);\r
77                 if (is_INCWritable("dummy"))      ADD_FATAL(FATAL_INC_WRITABLE);\r
78         }\r
79 \r
80         // Init configuration arrays\r
81         $CONFIG = array(\r
82                 'code_length' => 0\r
83         );\r
84         $EXT_CSS_FILES = array();\r
85 \r
86         // Load general stuff, like...\r
87         require_once(PATH."inc/extensions.php"); // Extension management\r
88         require_once(PATH."inc/functions.php");  // Non-database functions\r
89         require_once(PATH."inc/databases.php");     // Several hard-coded databases (arrays, constants)\r
90 \r
91         if ((!empty($MySQL['host'])) && (!empty($MySQL['login'])) && (!empty($MySQL['password'])) && (!empty($MySQL['dbase'])))\r
92         {\r
93                 // Connect to DB\r
94                 $link = SQL_CONNECT($MySQL['host'], $MySQL['login'], $MySQL['password'], __FILE__, __LINE__);\r
95                 if ($link !== false)\r
96                 {\r
97                         $db = SQL_SELECT_DB($MySQL['dbase'], $link, __FILE__, __LINE__);\r
98                         if ($db !== false)\r
99                         {\r
100                                 // Load configuration stuff\r
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__);\r
102 \r
103                                 if (SQL_NUMROWS($result) == 1) {\r
104                                         // Load data when previous SQL query did not fail\r
105                                         if (!$result) {
106                                                 // Something went wrong
107                                                 ADD_FATAL(FATAL_CANNOT_LOAD_CONFIG);
108                                                 return;
109                                         }\r
110
111                                         // Load the configuration
112                                         $CONFIG = array_merge($CONFIG, SQL_FETCHARRAY($result));
113 \r
114                                         // Initialize include-file-pool\r
115                                         $INC_POOL = array();\r
116 \r
117                                         // Load more include files\r
118                                         require_once(PATH."inc/mysql-manager.php"); // Functions which interact with the database\r
119 \r
120                                         // Run daily reset\r
121                                         if ((date("d", $CONFIG['last_update']) != date("d", time()) || (DEBUG_MODE == true)) && (!mxchange_installing) && (mxchange_installed) && (admin_registered) && (!isset($_GET['register'])) && ($CSS != 1))\r
122                                         {\r
123                                                 // Do daily things in external PHP file but only when script is completely setup\r
124                                                 $INC_POOL[] = PATH."inc/reset/reset_daily.php";\r
125 \r
126                                                 // Daily reset was run!\r
127                                                 define('__DAILY_RESET', "1");\r
128                                         }\r
129 \r
130                                         // Load all extensions\r
131                                         require_once(PATH."inc/load_extensions.php");\r
132 \r
133                                         // Loading patching system is required here...\r
134                                         require_once(PATH."inc/patch-system.php");      // Initialize patch system\r
135 \r
136                                         // Functions which are related to themes\r
137                                         require_once(PATH."inc/theme-manager.php");\r
138 \r
139                                         // Initialize session management\r
140                                         require_once(PATH."inc/session.php");\r
141 \r
142                                         // Load admin include file if he is admin\r
143                                         if (IS_ADMIN())\r
144                                         {\r
145                                                 // Administrative functions\r
146                                                 require_once(PATH."inc/modules/admin/admin-inc.php");\r
147                                         }\r
148 \r
149                                         // Get all values\r
150                                         if (($CSS != 1) && ($CSS != -1))\r
151                                         {\r
152                                                 if (empty($GLOBALS['module']))  $GLOBALS['module'] = "empty";\r
153                                                 if (empty($GLOBALS['what']))    $GLOBALS['what']   = GET_WHAT($GLOBALS['module']);\r
154                                                 if (empty($GLOBALS['action']))  $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);\r
155                                         }\r
156                                          else\r
157                                         {\r
158                                                 // Set action/what to empty\r
159                                                 $GLOBALS['action'] = "";\r
160                                                 $GLOBALS['what']   = "";\r
161                                         }\r
162 \r
163                                         // Secure and validate user ID from cookie\r
164                                         UPDATE_LOGIN_DATA();\r
165 \r
166                                         // Get session ID\r
167                                         if (empty($_COOKIE['PHPSESSID'])) $_COOKIE['PHPSESSID'] = session_id();\r
168 \r
169                                         // Update online list\r
170                                         UPDATE_ONLINE_LIST($_COOKIE['PHPSESSID'], $GLOBALS['module'], $GLOBALS['action'], $GLOBALS['what']);\r
171 \r
172                                         // Load theme name\r
173                                         $CurrTheme = GET_CURR_THEME();\r
174 \r
175                                         // Set default 'what' value\r
176                                         //* DEBUG */ echo "-".$GLOBALS['module']."/".$GLOBALS['what']."-<br />\n";\r
177                                         if ((empty($GLOBALS['what'])) && (empty($GLOBALS['action'])) && ($CSS != 1) && ($CSS != -1))\r
178                                         {\r
179                                                 if ($GLOBALS['module'] == "admin")\r
180                                                 {\r
181                                                         // Set 'action' value to 'login' in admin menu\r
182                                                         $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']);\r
183                                                 }\r
184                                                  elseif (($GLOBALS['module'] == "index") || ($GLOBALS['module'] == "login"))\r
185                                                 {\r
186                                                         // Set 'what' value to 'welcome' in guest and member menu\r
187                                                         $GLOBALS['what'] = "welcome";\r
188                                                         if (!empty($CONFIG['index_home'])) $GLOBALS['what'] = $CONFIG['index_home'];\r
189                                                 }\r
190                                                  else\r
191                                                 {\r
192                                                         // Anything else like begging link\r
193                                                         $GLOBALS['what'] = "";\r
194                                                 }\r
195                                         }\r
196 \r
197                                         // Update sending pool\r
198                                         if (($CSS != "1") && ($CSS != "-1")) require_once(PATH."inc/pool-update.php"); // Sends out mails in configureable steps\r
199 \r
200                                         // Load all active extension including language files when not upgrading.\r
201                                         // Check module for testing and count one click\r
202                                         $dummy = CHECK_MODULE($GLOBALS['module']);\r
203                                         if ($dummy == "done") COUNT_MODULE($GLOBALS['module']);\r
204                                         unset($dummy);\r
205                                         if ($CONFIG['activate_xchange'] > 0) activateExchange();\r
206                                 }\r
207                                  else\r
208                                 {\r
209                                         // If you will read following error message you probably need to contact me (webmaster@mxchange.org)\r
210                                         // and download the sql-upgrades extension from my server. Please ask me which SQL file(s) you need to\r
211                                         // import *BEFORE* you import them!\r
212                                         ADD_FATAL(FATAL_CANNOT_LOAD_CONFIG);\r
213                                 }\r
214 \r
215                                 // Free memory\r
216                                 SQL_FREERESULT($result);\r
217                         }\r
218                          else\r
219                         {\r
220                                 // Wrong database?\r
221                                 ADD_FATAL(WRONG_DB_SELECTED);\r
222                         }\r
223                 }\r
224                  else\r
225                 {\r
226                         // No link to database!\r
227                         ADD_FATAL(NO_DB_LINK);\r
228                         $db = false;\r
229                 }\r
230         }\r
231          else\r
232         {\r
233                 // Maybe you forgot to enter your MySQL data?\r
234                 ADD_FATAL(MYSQL_DATA_MISSING);\r
235         }\r
236 }\r
237  else\r
238 {\r
239         ///////////////////////////////////////////////////\r
240         // Include neccessary functions for installation //\r
241         ///////////////////////////////////////////////////\r
242 \r
243         // Set CONFIG array\r
244         $CONFIG = array(\r
245                 'code_length' => 0\r
246         );\r
247 \r
248         // Set other missing variables\r
249         $link = false; // No database link by default\r
250 \r
251         // Include required files\r
252         require_once(PATH."inc/databases.php");\r
253         require_once(PATH."inc/extensions.php");\r
254         require_once(PATH."inc/theme-manager.php");\r
255         require_once(PATH."inc/load_extensions.php");\r
256         require_once(PATH."inc/session.php");\r
257 \r
258         // Check if we are in installation routine\r
259         $installPhp = basename($_SERVER['PHP_SELF']);\r
260         if (($installPhp != "install.php") && ($CSS != "1") && ($CSS != -1)) {\r
261                 // Redirect to the installation system\r
262                 LOAD_URL(URL."/install.php");\r
263         }\r
264 \r
265         // Double-check installation mode\r
266         if ((!mxchange_installed) || (!admin_registered)) {\r
267                 // Check for file permissions\r
268                 if (!is_INCWritable("config")) {\r
269                         ADD_FATAL(CONFIG_IS_WRITE_PROTECTED);\r
270                 }\r
271                 if (!is_INCWritable("dummy")) {\r
272                         ADD_FATAL(DUMMY_IS_WRITE_PROTECTED);\r
273                 }\r
274                 if (!is_INCWritable(".secret/dummy")) {\r
275                         ADD_FATAL(SECRET_IS_WRITE_PROTECTED);\r
276                 }\r
277         }\r
278 }\r
279 \r
280 // Any fatal messages?\r
281 if (!is_array($FATAL)) $FATAL = array();\r
282 if (((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) && (mxchange_installed) && (!mxchange_installing) && ($CSS != "1"))\r
283 {\r
284         // One or more fatal error(s) occur during connect...\r
285         include (PATH."inc/header.php");\r
286         include (PATH."inc/fatal_errors.php");\r
287         unset($FATAL);\r
288         include (PATH."inc/footer.php");\r
289         exit;\r
290 }\r
291 \r
292 //\r
293 ?>\r