X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fphp_setup.inc;h=3a047fd64417e367a643993bf0a299e02a19e853;hb=7da42021bacbd916f09c39b742509482c185c699;hp=6fafb2dcd9ca9cbacc0a3d395678d3e47760d1bd;hpb=4c11c97f3cdb417ab907bec8556fc439fd7c2288;p=gosa.git diff --git a/include/php_setup.inc b/include/php_setup.inc index 6fafb2dcd..3a047fd64 100644 --- a/include/php_setup.inc +++ b/include/php_setup.inc @@ -20,7 +20,11 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline) { - global $error_collector,$config; + 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,34 +43,89 @@ 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 */ - gosa_log ("PHP error: $errstr ($errfile, line $errline)"); + if(!preg_match("/No such object/",$message)){ + 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!")."