Email archive is also not working without ext-sql_patches
[mailer.git] / debug.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/12/2008 *
4  * ===============                              Last change: 23/12/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : debug.php                                        *
8  * -------------------------------------------------------------------- *
9  * Short description : Receiver script for debug.log files              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Empfangsscript fuer debug.log Dateien            *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
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.                                  *
27  *                                                                      *
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.                         *
32  *                                                                      *
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,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Load security stuff here
40 require('inc/libs/security_functions.php');
41
42 // Set module and fake "CSS mode"
43 $GLOBALS['module'] = 'debug';
44 $GLOBALS['output_mode'] = -1;
45
46 // Load the required file(s)
47 require('inc/config-global.php');
48
49 // Redirect only to registration page when this script is installed
50 if ((isExtensionActive('debug')) && (getTotalFatalErrors() == 0)) {
51         // Is the request parameter set?
52         if (isPostRequestElementSet('request')) {
53                 // Handle the request
54                 if (DEBUG_HANDLE_REQUEST(postRequestElement('request'))) {
55                         // Construct FQFN for the module
56                         $inc = sprintf("inc/debug/%s/request_%s",
57                                 getConfig('debug_mode'),
58                                 SQL_ESCAPE(postRequestElement('request'))
59                         );
60
61                         // Is the module there? Else we log it!
62                         if (isIncludeReadable($inc)) {
63                                 // Load the request module
64                                 loadInclude($inc);
65                         } else {
66                                 // Missing request file, may happen while development
67                                 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_404', postRequestElement('request'));
68                         }
69                 } else {
70                         // Unhandled request detected
71                         DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_unhandled', postRequestElement('request'));
72                 }
73         } else {
74                 // Empty request
75                 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_empty', '');
76         }
77 } else {
78         // Not installed or fatal errors
79         DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_fatal', getTotalFatalErrors());
80 } // END - if
81
82 // Really all done here... ;-)
83 shutdown();
84
85 // [EOF]
86 ?>