2 /************************************************************************
3 * MXChange v0.2.1 Start: 08/25/2003 *
4 * =============== Last change: 07/01/2005 *
6 * -------------------------------------------------------------------- *
8 * -------------------------------------------------------------------- *
9 * Short description : Main loader file. Loads our needed stuff *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Hauptladedatei. Laedt alle benoetigten Dateien *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
37 ************************************************************************/
40 //xdebug_start_trace();
42 // Load security stuff here
43 require('inc/libs/security_functions.php');
46 $GLOBALS['startTime'] = microtime(true);
48 // Init output mode and module
49 $GLOBALS['output_mode'] = 0;
50 $GLOBALS['module'] = '';
52 // Needed include files
53 require('inc/config-global.php');
55 // Fix missing module to 'index'
56 if (!REQUEST_ISSET_GET('module')) REQUEST_SET_GET('module', 'index');
59 loadIncludeOnce('inc/header.php');
61 // Modules are by default not valid!
62 $isModuleValid = false; $check = 'failed';
64 // Is the maintenance mode active or goes all well?
65 if ((EXT_IS_ACTIVE('maintenance')) && (getConfig('maintenance') == 'Y') && (!IS_ADMIN()) && (getModule() != 'admin')) {
66 // Maintain mode is active and you are no admin
67 addFatalMessage(__FILE__, __LINE__, getMessage('LANG_DOWN_MAINTAINCE'));
68 } elseif ((SQL_IS_LINK_UP()) && (getTotalFatalErrors() == 0)) {
69 // Construct module name
70 $GLOBALS['module_inc'] = sprintf("inc/modules/%s.php", SQL_ESCAPE(getModule()));
72 // Did we found the module listed in allowed modules and are we successfully connected?
73 $check = checkModulePermissions(getModule());
75 case 'cache_miss': // The cache is gone
76 case 'admin_only': // Admin-only access
77 case 'mem_only': // Member-only access
78 case 'done': // All fine!
79 // Does the module exists on local file system?
80 if ((isFileReadable($GLOBALS['module_inc'])) && (getTotalFatalErrors() == 0)) {
81 // Module is valid, active and located on the local disc...
82 $isModuleValid = true;
83 } elseif (!empty($URL)) {
84 // An URL was specified so we load the de-referrer module
85 redirectToUrl(DEREFERER($URL));
86 } elseif (getTotalFatalErrors() == 0) {
87 addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), getModule()));
92 addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), getModule()));
96 if (!isFileReadable($GLOBALS['module_inc'])) {
97 // Module does addionally not exists
98 addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), getModule()));
102 addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_LOCKED'), getModule()));
106 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s return from module check. Module=%s", $check, getModule()));
107 addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_UNKNOWN'), $check));
110 } elseif (getTotalFatalErrors() == 0) {
112 addFatalMessage(__FILE__, __LINE__, getMessage('MYSQL_ERRORS'));
115 if (($isModuleValid === true) && (isset($GLOBALS['module_inc']))) {
116 /////////////////////////////////////////////
117 // Main including line DO NOT REMOVE/EDIT! //
118 /////////////////////////////////////////////
120 // Everything is okay so we can load the module
121 loadIncludeOnce($GLOBALS['module_inc']);
124 // Next-to-end add the footer
125 loadIncludeOnce('inc/footer.php');