]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-20693 new NO_DEBUG_DISPLAY define
authorPetr Skoda <skodak@moodle.org>
Sat, 31 Oct 2009 22:02:05 +0000 (22:02 +0000)
committerPetr Skoda <skodak@moodle.org>
Sat, 31 Oct 2009 22:02:05 +0000 (22:02 +0000)
16 files changed:
admin/dbperformance.php
admin/report/unittest/coveragefile.php
draftfile.php
file.php
filter/algebra/pix.php
filter/tex/pix.php
lib/setup.php
lib/setuplib.php
lib/weblib.php
mod/glossary/exportfile.php
pluginfile.php
question/file.php
rss/file.php
user/grouppix.php
user/pix.php
userfile.php

index f5f597b6225ecd3a196ea4647d7ffc9183c08c80..fb32a6557d2633088dafadea0530f2539703fe80 100644 (file)
@@ -1,12 +1,13 @@
 <?PHP
-       // dbperformance.php - shows latest ADOdb stats for the current server
+// dbperformance.php - shows latest ADOdb stats for the current server
 
-    require_once('../config.php');
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+
+require_once('../config.php');
 
 error('TODO: rewrite db perf code'); // TODO: rewrite
 
-    // disable moodle specific debug messages that would be breaking the frames
-    disable_debugging();
 
     $topframe    = optional_param('topframe', 0, PARAM_BOOL);
     $bottomframe = optional_param('bottomframe', 0, PARAM_BOOL);
index 982d128b21a6123a52ce5b642daa0b332b2bf9f4..aeaf6a7193d7948ba10e18f69137f5cfa54f2f25 100755 (executable)
@@ -29,6 +29,9 @@
  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+
 require_once(dirname(__FILE__) . '/../../../config.php');
 require_once($CFG->libdir . '/filelib.php');
 
@@ -36,9 +39,6 @@ require_once($CFG->libdir . '/filelib.php');
 require_login();
 require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM));
 
-// disable moodle specific debug messages
-disable_debugging();
-
 // get file requested
 $relativepath  = get_file_argument();
 
index f9c7d30909042a1df5504b4a8e0517270f2e9302..de82ca43ab9432a135223eefb7070f2a9d5f22e8 100644 (file)
@@ -24,6 +24,9 @@
  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+
 require_once('config.php');
 require_once('lib/filelib.php');
 
@@ -32,9 +35,6 @@ if (isguestuser()) {
     print_error('noguest');
 }
 
-// disable moodle specific debug messages
-disable_debugging();
-
 $relativepath = get_file_argument();
 
 // relative path must start with '/'
index c7f1fb8b28ea21c685e2cbd72623c2773009ac98..ddbdfd24226b2a66150642b2f3352795bd7ebd89 100644 (file)
--- a/file.php
+++ b/file.php
@@ -31,6 +31,9 @@
  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+
 require_once('config.php');
 require_once('lib/filelib.php');
 
@@ -40,9 +43,6 @@ if (!isset($CFG->filelifetime)) {
     $lifetime = $CFG->filelifetime;
 }
 
-// disable moodle specific debug messages
-disable_debugging();
-
 $relativepath  = get_file_argument();
 $forcedownload = optional_param('forcedownload', 0, PARAM_BOOL);
 
index f65c2ecab1fdef209dfb7ba78ab0cb0de55fbf98..5debd28829fbee0b719960ac1b63e27fb20a38a6 100644 (file)
@@ -1,19 +1,18 @@
-<?PHP // $Id$
+<?PHP
       // This function fetches math. images from the data directory
       // If not, it obtains the corresponding TeX expression from the cache_tex db table
       // and uses mimeTeX to create the image file
 
-    define('NO_MOODLE_COOKIES', true); // Because it interferes with caching
-
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+define('NO_MOODLE_COOKIES', true); // Because it interferes with caching
+    
     require_once('../../config.php');
 
     if (!filter_is_enabled('filter/algebra')) {
         print_error('filternotenabled');
     }
 
-    // disable moodle specific debug messages
-    disable_debugging();
-
     require_once($CFG->libdir.'/filelib.php');
     require_once($CFG->dirroot.'/filter/tex/lib.php');
 
@@ -61,4 +60,4 @@
             echo "Please turn on debug mode in site configuration to see more info here.";
         }
     }
-?>
+
index efb6eb2b8934964abe9b66250b1ba175c138d4bb..bbfe1c8fbc161402823da479248198878e169e1c 100644 (file)
@@ -1,8 +1,10 @@
-<?PHP // $Id$
+<?PHP
       // This function fetches math. images from the data directory
       // If not, it obtains the corresponding TeX expression from the cache_tex db table
       // and uses mimeTeX to create the image file
 
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
 define('NO_MOODLE_COOKIES', true); // Because it interferes with caching
 
     require_once('../../config.php');
@@ -11,9 +13,6 @@ define('NO_MOODLE_COOKIES', true); // Because it interferes with caching
         print_error('filternotenabled');
     }
 
-    // disable moodle specific debug messages
-    disable_debugging();
-
     require_once($CFG->libdir.'/filelib.php');
     require_once($CFG->dirroot.'/filter/tex/lib.php');
     require_once($CFG->dirroot.'/filter/tex/latex.php');
@@ -75,4 +74,3 @@ define('NO_MOODLE_COOKIES', true); // Because it interferes with caching
             echo "Please turn on debug mode in site configuration to see more info here.";
         }
     }
-?>
index 23a4175f162f0dc14c61ee5022c744501115ad13..18eb6c28e276faddd922cde6c819eca0a168231b 100644 (file)
@@ -161,6 +161,14 @@ global $FULLSCRIPT;
  */
 global $SCRIPT;
 
+// Scripts may request no debug and error messages in output
+// please note it must be defined before including the config.php script
+// and in some cases you also need to set custom default exception handler
+if (!defined('NO_DEBUG_DISPLAY')) {
+    define('NO_DEBUG_DISPLAY', false);
+}
+
+/// wwwroot is mandatory
     if (!isset($CFG->wwwroot)) {
         trigger_error('Fatal: $CFG->wwwroot is not configured! Exiting.');
         die;
@@ -354,27 +362,26 @@ global $SCRIPT;
     unset($originaldatabasedebug);
     error_reporting($CFG->debug);
 
-/// find out if PHP cofigured to display warnings
+    // find out if PHP cofigured to display warnings,
+    // this is a security problem because some moodle scripts may
+    // disclose sensitive information 
     if (ini_get_bool('display_errors')) {
         define('WARN_DISPLAY_ERRORS_ENABLED', true);
     }
-/// If we want to display Moodle errors, then try and set PHP errors to match
+    // If we want to display Moodle errors, then try and set PHP errors to match
     if (!isset($CFG->debugdisplay)) {
-        //keep it as is during installation
+        // keep it "as is" during installation
+    } else if (NO_DEBUG_DISPLAY) {
+        // some parts of Moodle cannot display errors and debug at all.
+        @ini_set('display_errors', '0');
+        @ini_set('log_errors', '1');
     } else if (empty($CFG->debugdisplay)) {
         @ini_set('display_errors', '0');
         @ini_set('log_errors', '1');
     } else {
+        // This is very problematic in XHTML strict mode!
         @ini_set('display_errors', '1');
     }
-// Even when users want to see errors in the output,
-// some parts of Moodle cannot display them at all.
-// (Once we are XHTML strict compliant, debugdisplay
-//  _must_ go away).
-    if (defined('MOODLE_SANE_OUTPUT')) {
-        @ini_set('display_errors', '0');
-        @ini_set('log_errors', '1');
-    }
 
 /// detect unsupported upgrade jump as soon as possible - do not change anything, do not use system functions
     if (!empty($CFG->version) and $CFG->version < 2007101509) {
@@ -685,6 +692,6 @@ global $SCRIPT;
 
     }
 
-/// note: we can not block non utf-8 installatrions here, because empty mysql database
+/// note: we can not block non utf-8 installations here, because empty mysql database
 /// might be converted to utf-8 in admin/index.php during installation
 
index a76ea1ae8ee137907a5ed9070580f2525fc77920..2dcbdc3bca92dd1682cf1edbeae7502c0fc2dabe 100644 (file)
@@ -187,7 +187,7 @@ function default_exception_handler($ex) {
     $info = get_exception_info($ex);
 
     if (debugging('', DEBUG_MINIMAL)) {
-        $logerrmsg = "Default exception handler: ".$info->message.' Debug: '.$info->debuginfo."\n".format_backtrace($info->backtrace);
+        $logerrmsg = "Default exception handler: ".$info->message.' Debug: '.$info->debuginfo."\n".format_backtrace($info->backtrace, true);
         error_log($logerrmsg, 0);
     }
 
@@ -198,7 +198,7 @@ function default_exception_handler($ex) {
             echo $OUTPUT->fatal_error($info->message, $info->moreinfourl, $info->link, $info->backtrace, $info->debuginfo);
         } catch (Exception $out_ex) {
             // default exception handler MUST not throw any exceptions!!
-            // the problem here is we do not know if page already started or not, we only know that somebody messed up in outputlib or theme 
+            // the problem here is we do not know if page already started or not, we only know that somebody messed up in outputlib or theme
             // so we just print at least something instead of "Exception thrown without a stack frame in Unknown on line 0":-(
             echo bootstrap_renderer::early_error_content($info->message, $info->moreinfourl, $info->link, $info->backtrace, $info->debuginfo);
             $outinfo = get_exception_info($out_ex);
index 24927cebf8e21c4e0f238408bcfff5e43aee5260..3046547a8ea9c24c56bbf8f6c3c677d0ab723757 100644 (file)
@@ -3140,8 +3140,8 @@ function get_docs_url($path) {
  * trigger_error() or error_log(). Using echo or print will break XHTML
  * JS and HTTP headers.
  *
+ * It is also possible to define NO_DEBUG_DISPLAY which redirects the message to error_log.
  *
- * @global object
  * @uses DEBUG_NORMAL
  * @param string $message a message to print
  * @param int $level the level at which this debugging statement should show
@@ -3164,16 +3164,25 @@ function debugging($message = '', $level = DEBUG_NORMAL, $backtrace = null) {
             $backtrace = debug_backtrace();
         }
         $from = format_backtrace($backtrace, CLI_SCRIPT);
-        if ($CFG->debugdisplay || isset($UNITTEST->running)) {
-               // When the unit tests are running, any call to trigger_error
-               // is intercepted by the test framework and reported as an exception.
-               // Therefore, we cannot use trigger_error during unit tests.
-               // At the same time I do not think we should just discard those messages,
-               // so displaying them on-screen seems like the only option. (MDL-20398)
+        if (!empty($UNITTEST->running)) {
+            // When the unit tests are running, any call to trigger_error
+            // is intercepted by the test framework and reported as an exception.
+            // Therefore, we cannot use trigger_error during unit tests.
+            // At the same time I do not think we should just discard those messages,
+            // so displaying them on-screen seems like the only option. (MDL-20398)
+            echo '<div class="notifytiny">' . $message . $from . '</div>';
+
+        } else if (NO_DEBUG_DISPLAY) {
+            // script does not want any errors or debugging in output,
+            // we send the info to error log instead
+            error_log('Debugging: ' . $message . $from);
+
+        } else if ($CFG->debugdisplay) {
             if (!defined('DEBUGGING_PRINTED')) {
                 define('DEBUGGING_PRINTED', 1); // indicates we have printed something
             }
             echo '<div class="notifytiny">' . $message . $from . '</div>';
+
         } else {
             trigger_error($message . $from, E_USER_NOTICE);
         }
@@ -3181,17 +3190,6 @@ function debugging($message = '', $level = DEBUG_NORMAL, $backtrace = null) {
     return true;
 }
 
-/**
- * Disable debug messages from debugging(), while keeping PHP error reporting level as is.
- *
- * @global object
- */
-function disable_debugging() {
-    global $CFG;
-    $CFG->debug = $CFG->debug | 0x80000000; // switch the sign bit in integer number ;-)
-}
-
-
 /**
  *  Returns string to add a frame attribute, if required
  *
index 5589bbf48b064817af8a91e0c23eb23057824827..9df8ddd60633b590ede834be4ae7c1e7581af071 100644 (file)
@@ -1,11 +1,11 @@
 <?php
 
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+
 require_once("../../config.php");
 require_once("lib.php");
 
-// disable moodle specific debug messages
-disable_debugging();
-
 $id = required_param('id', PARAM_INT);      // Course Module ID
 
 $l   = optional_param('l','', PARAM_ALPHANUM);
@@ -42,4 +42,3 @@ $content = glossary_generate_export_file($glossary,$l,$cat);
 
 send_file($content, $filename, 0, 0, true, true);
 
-?>
\ No newline at end of file
index c98058754d41ecb0b11d12e0258d95fee4b0eafd..d47b5c47309aa7e9737ea48e4863eaec6b0bb47a 100644 (file)
  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+
 require_once('config.php');
 require_once('lib/filelib.php');
 
-// disable moodle specific debug messages
-disable_debugging();
-
 $relativepath = get_file_argument();
 $forcedownload = optional_param('forcedownload', 0, PARAM_BOOL);
 
index b2d3681548001678e85fa434b0604a7825caf570..b6ea0470473eb6630c07f98e5b012731b5c5e8b4 100644 (file)
@@ -1,4 +1,4 @@
-<?php  // $Id$
+<?php
       // This script fetches files from the dataroot/questionattempt directory
       // It is based on the top-level file.php
       //
@@ -8,12 +8,12 @@
       // Syntax:      question/file.php/attemptid/questionid/filename.ext
       // Workaround:  question/file.php?file=/attemptid/questionid/filename.ext
 
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+
     require_once('../config.php');
     require_once('../lib/filelib.php');
 
-    // disable moodle specific debug messages
-    disable_debugging();
-
     $relativepath = get_file_argument();
     // force download for any student-submitted files to prevent XSS attacks.
     $forcedownload = 1;
@@ -83,4 +83,4 @@
         header('HTTP/1.0 404 not found');
         print_error('filenotfound', 'error', $CFG->wwwroot); //this is not displayed on IIS??
     }
-?>
+
index 35cac5fe7408504e92fac2429a1444ea0c9ebd95..e13d664e13ef807b84561c4cbeb3e982d5828d17 100644 (file)
@@ -1,4 +1,4 @@
-<?PHP //$Id$
+<?PHP
     //This file returns the required rss feeds
     //The URL format MUST include:
     //    course: the course id
@@ -13,7 +13,9 @@
     //to correct users. It isn't unbreakable,
     //obviously, but its the best I've thought!!
 
-    define('NO_MOODLE_COOKIES', true); // session not used here
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+define('NO_MOODLE_COOKIES', true); // session not used here
 
     require_once('../config.php');
     require_once($CFG->libdir.'/filelib.php');
@@ -24,9 +26,6 @@
     // this is a big one big hack - NO_MOODLE_COOKIES is not compatible with capabilities MDL-7243
     // it should be replaced once we get to codes in urls 
 
-    // disable moodle specific debug messages
-    disable_debugging();
-
     $relativepath = get_file_argument();
 
 
         global $lifetime, $filename;
         send_file(rss_geterrorxmlfile(), $filename, $lifetime, false, true);
     }
-?>
+
index ebe032f42db17c356a5cb276a6478135730188b3..f74669d191ac775ca1c875260ce10840f2040e10 100644 (file)
@@ -1,16 +1,15 @@
-<?php // $Id$
+<?php
       // This function fetches group pictures from the data directory
       // Syntax:   pix.php/groupid/f1.jpg or pix.php/groupid/f2.jpg
       //     OR:   ?file=groupid/f1.jpg or ?file=groupid/f2.jpg
 
-    define('NO_MOODLE_COOKIES', true);                  // session not used here
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+define('NO_MOODLE_COOKIES', true);                  // session not used here
 
     require_once('../config.php');
     require_once($CFG->libdir.'/filelib.php');
 
-    // disable moodle specific debug messages
-    disable_debugging();
-
     $relativepath = get_file_argument();
 
     $args = explode('/', trim($relativepath, '/'));
@@ -30,4 +29,3 @@
         header('HTTP/1.0 404 not found');
         print_error('filenotfound', 'error'); //this is not displayed on IIS??
     }
-?>
index bcea1e4702614fa118d03a46a906d6f4a1e952d8..b333fd9753684faf043a5e85d27e8e269e1b908d 100644 (file)
@@ -1,8 +1,11 @@
-<?PHP // $Id$
+<?PHP
       // This function fetches user pictures from the data directory
       // Syntax:   pix.php/userid/f1.jpg or pix.php/userid/f2.jpg
       //     OR:   ?file=userid/f1.jpg or ?file=userid/f2.jpg
 
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+
     require_once('../config.php');
     require_once($CFG->libdir.'/filelib.php');
 
@@ -12,9 +15,6 @@
         redirect($OUTPUT->old_icon_url('u/f1'));
     }
 
-    // disable moodle specific debug messages
-    disable_debugging();
-
     $relativepath = get_file_argument();
 
     $args = explode('/', trim($relativepath, '/'));
@@ -33,4 +33,3 @@
 
     // picture was deleted - use default instead
     redirect($OUTPUT->old_icon_url('u/f1'));
-?>
index 04784ae4dd2688250983dbc005b271fcb6ec3ec0..3f8f6571165c36328da5bd14efe20c1dcc5cd21a 100644 (file)
  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
+// disable moodle specific debug messages and any errors in output
+define('NO_DEBUG_DISPLAY', true);
+
 require_once('config.php');
 require_once('lib/filelib.php');
 
-// disable moodle specific debug messages
-disable_debugging();
 
 $relativepath = get_file_argument();
 $forcedownload = optional_param('forcedownload', 0, PARAM_BOOL);