X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fphp_setup.inc;h=2901f8d2a6675e6a9109bcd967bc43111b21ddc3;hb=91db029a18ddebaba09292ae4e2ffcd011974d9e;hp=08f75dfc1360279ca3ebdbc03822d41e030631f7;hpb=fcc078a3131b821697c17c5a3e912e210f75d715;p=gosa.git diff --git a/include/php_setup.inc b/include/php_setup.inc index 08f75dfc1..2901f8d2a 100644 --- a/include/php_setup.inc +++ b/include/php_setup.inc @@ -20,7 +20,11 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline) { - global $error_collector; + global $error_collector,$config, $error_collector_mailto; + + if(function_exists("gosa_log")){ + gosa_log($errno." ".$errstr." ".$errfile." ".$errline); + } /* Return if error reporting is set to zero */ if (error_reporting() == 0){ @@ -32,20 +36,6 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline) return; } - /* FIXME: Workaround for PHP5 error message flooding. The new OOM - code want's us to use public/protected/private instead of flat - var declarations. For now I can't workaround this - let's ignore - the messages till the next major release which may drop support - for PHP4. */ - if (preg_match('/var: Deprecated./', $errstr)){ - return; - } - - /* FIXME: Same as above. Compatibility does error flooding.*/ - if (preg_match('/zend.ze1_compatibility_mode/', $errstr)){ - return; - } - /* Hide ldap size limit messages */ if (preg_match('/ldap_error/', $errstr)){ if (preg_match('/sizelimit/', $errstr)){ @@ -53,24 +43,87 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline) } } + /* Error messages are hidden in GOsa, so we only send them to the logging class and abort here */ + if((isset($config->data))){ + if((isset($config->data['MAIN']['DISPLAYERRORS']))&&(!preg_match("/^true$/i",$config->data['MAIN']['DISPLAYERRORS']))){ + + + /* Write to syslog */ + if(class_exists("log") && !preg_match("/No such object/",$errstr)){ + new log("view","error","",array(),"PHP error: $errstr ($errfile, line $errline)"); + } + return; + } + } + + /* Send all errors to logging class, except "Ldap : No such object" messages*/ + if(class_exists("log") && !preg_match("/No such object/",$errstr)){ + new log("debug","all",$errfile,array(),"Type:".$errno.", Message:".$errstr.", File:".$errfile.", Line: ".$errline); + } + /* Create header as needed */ if ($error_collector == ""){ - if ($_SESSION['js']==FALSE){ + + /* Mailto body header */ + if(function_exists("prepare4mailbody")){ + $error_collector_mailto .=prepare4mailbody( + "Oups. Seems like you've catched some kind of bug inside GOsa/PHP. You may want to help ". + "us to improve the software stability. If so, please provide some more information below.". + "\n\n". + "*** GOsa bug report ***". + "\nGOsa Version: ".get_gosa_version(). + "\n\n". + "Please describe what you did to produce this error as detailed as possible. Can you ". + "reproduce this bug using the demo on http://www.gosa-project.org ?". + "\n\n". + "*** PHP error information ***\n\n"); + } + + if (isset($_SESSION['js']) && $_SESSION['js']==FALSE){ $error_collector= "
"; } else { - $error_collector= "
\"\" "._("Generating this page caused the PHP interpreter to raise some errors!")."