2 /************************************************************************
3 * MXChange v0.2.1 Start: 10/12/2008 *
4 * =============== Last change: 23/12/2008 *
6 * -------------------------------------------------------------------- *
8 * -------------------------------------------------------------------- *
9 * Short description : Receiver script for debug.log files *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Empfangsscript fuer debug.log 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 ************************************************************************/
39 // Load security stuff here
40 require('inc/libs/security_functions.php');
42 // Set module and fake "CSS mode"
43 $GLOBALS['module'] = 'debug';
44 $GLOBALS['output_mode'] = -1;
46 // Load the required file(s)
47 require('inc/config-global.php');
49 // Redirect only to registration page when this script is installed
50 if ((isInstalled()) && (getTotalFatalErrors() == 0)) {
51 // Is the extension installed?
52 if (!EXT_IS_ACTIVE('debug')) {
57 // Is the request parameter set?
58 if (REQUEST_ISSET_POST('request')) {
60 if (DEBUG_HANDLE_REQUEST(REQUEST_POST('request'))) {
61 // Construct FQFN for the module
62 $INC = sprintf("inc/debug/%s/request_%s",
63 getConfig('debug_mode'),
64 SQL_ESCAPE(REQUEST_POST('request'))
67 // Is the module there? Else we log it!
68 if (isIncludeReadable($INC)) {
69 // Load the request module
72 // Missing request file, may happen while development
73 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_404', REQUEST_POST('request'));
76 // Unhandled request detected
77 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_unhandled', REQUEST_POST('request'));
81 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_empty', '');
84 // Not installed or fatal errors
85 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_fatal', getTotalFatalErrors());
88 // Really all done here... ;-)