inc/db/.htaccess -text
inc/db/lib-mysql3.php -text
inc/db/lib.php -text
+inc/debug/.htaccess -text
+inc/debug/client/.htaccess -text
+inc/debug/relay/.htaccess -text
+inc/debug/request_ -text
+inc/debug/server/.htaccess -text
inc/doubler_send.php -text
inc/extensions.php -text
inc/extensions/.htaccess -text
<?php
/************************************************************************
* MXChange v0.2.1 Start: 10/12/2008 *
- * =============== Last change: 10/12/2008 *
+ * =============== Last change: 23/12/2008 *
* *
* -------------------------------------------------------------------- *
* File : debug.php *
require_once("inc/libs/security_functions.php");
// Init "action" and "what"
-global $what, $action;
-$GLOBALS['what'] = ""; $GLOBALS['action'] = "";
+global $what, $action, $FATAL;
+$GLOBALS['what'] = "";
+$GLOBALS['action'] = "";
+$FATAL = array();
-// Set module
+// Set module and fake "CSS mode"
$GLOBALS['module'] = "debug"; $CSS = -1;
// Load the required file(s)
require("inc/config.php");
// Redirect only to registration page when this script is installed
-if (isBooleanConstantAndTrue('mxchange_installed')) {
- // TODO Do something useful here...
+if ((isBooleanConstantAndTrue('mxchange_installed')) && (count($FATAL) == 0)) {
+ // Is the request parameter set?
+ if (isset($_POST['request'])) {
+ // Handle the request
+ if (DEBUG_HANDLE_REQUEST($_POST['request'])) {
+ // Construct FQFN for the module
+ $fqfn = sprintf("%sinc/debug/%s/request_%s",
+ PATH,
+ getConfig('debug_mode'),
+ SQL_ESCAPE($_POST['request'])
+ );
+
+ // Is the module there? Else we log it!
+ if (FILE_READABLE($fqfn)) {
+ // Load the request module
+ require($fqfn);
+ } else {
+ // Missing request file, may happen while development
+ DEBUG_ABUSE_LOG(__FILE__, __LINE__, "request_404", $_POST['request']);
+ }
+ } else {
+ // Unhandled request detected
+ DEBUG_ABUSE_LOG(__FILE__, __LINE__, "request_unhandled", $_POST['request']);
+ }
+ } else {
+ // Empty request
+ DEBUG_ABUSE_LOG(__FILE__, __LINE__, "request_empty", "");
+ }
+} else {
+ // Not installed or fatal errors
+ DEBUG_ABUSE_LOG(__FILE__, __LINE__, "request_fatal", count($FATAL));
} // END - if
// Really all done here... ;-)
define('SERVER_URL', "http://www.mxchange.org");
// Current SVN revision
-define('CURR_SVN_REVISION', "702");
+define('CURR_SVN_REVISION', "703");
// Take a prime number which is long (if you know a longer one please try it out!)
define('_PRIME', 591623);
--- /dev/null
+Deny from all
\ No newline at end of file
--- /dev/null
+Deny from all
\ No newline at end of file
--- /dev/null
+Deny from all
\ No newline at end of file
--- /dev/null
+<?php
+/************************************************************************
+ * MXChange v0.2.1 Start: 12/23/2008 *
+ * =============== Last change: 12/23/2008 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : request_ *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+ require($INC);
+} // END - if
+
+//
+?>
--- /dev/null
+Deny from all
\ No newline at end of file
$SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `debug_new_log` ENUM('ACCEPT','FIRST','REG') NOT NULL DEFAULT 'FIRST'";
$SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `debug_new_client` ENUM('ACTIVE','NEW','REG') NOT NULL DEFAULT 'NEW'";
$SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `debug_reject_log` BIGINT(20) UNSIGNED NOT NULL DEFAULT ".(getConfig('one_day') * 30)."";
+ $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `debug_master_url` VARCHAR(255) NOT NULL DEFAULT '{!SERVER_URL!}'";
break;
case "remove": // Do stuff when removing extension