X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fphp_setup.inc;h=2901f8d2a6675e6a9109bcd967bc43111b21ddc3;hb=91db029a18ddebaba09292ae4e2ffcd011974d9e;hp=ec13459435faafcdfcb6492c3f538883d69db13b;hpb=04d9837e72728c01a0449760b158bd8616065d84;p=gosa.git diff --git a/include/php_setup.inc b/include/php_setup.inc index ec1345943..2901f8d2a 100644 --- a/include/php_setup.inc +++ b/include/php_setup.inc @@ -20,10 +20,10 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline) { - global $error_collector,$config; + global $error_collector,$config, $error_collector_mailto; - if(@class_exists("log")){ - new log("debug","all",$errfile,array(),"Type:".$errno.", Message:".$errstr.", File:".$errfile.", Line: ".$errline); + if(function_exists("gosa_log")){ + gosa_log($errno." ".$errstr." ".$errfile." ".$errline); } /* Return if error reporting is set to zero */ @@ -36,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)){ @@ -57,34 +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 */ - new log("view","error","",array(),"PHP error: $errstr ($errfile, line $errline)"); + 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 == ""){ + + /* 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!")."