X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fphp_setup.inc;h=6566da07f23bf6ca10880b25945d1c2a9a827fdd;hb=4b3498ae8e78a11c7c99663d45bab6a0a14df052;hp=f50097ec8c81ca59108e7cd5cc5f747edaf566db;hpb=ede91cea993d38464d47f6ef573ed70ce2cec357;p=gosa.git diff --git a/gosa-core/include/php_setup.inc b/gosa-core/include/php_setup.inc index f50097ec8..6566da07f 100644 --- a/gosa-core/include/php_setup.inc +++ b/gosa-core/include/php_setup.inc @@ -1,31 +1,31 @@ data))){ - if((isset($config->data['MAIN']['DISPLAYERRORS']))&&(!preg_match("/^true$/i",$config->data['MAIN']['DISPLAYERRORS']))){ - + if(isset($config->data) && $config->get_cfg_value("displayerrors") != "true"){ /* 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*/ @@ -66,12 +64,16 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline) /* Mailto body header */ if(function_exists("prepare4mailbody")){ + $version= "unknown"; + if(function_exists("get_gosa_version")){ + $version= get_gosa_version(); + } $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(). + "\nGOsa Version: $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 ?". @@ -97,7 +99,7 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline) - @@ -121,7 +123,7 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline) $error_collector_mailto .= prepare4mailbody("=== Trace ==="); /* Generate trace history */ - for ($index= 0; $index=")){ + echo "PHP version needs to be 5.2.0 or above to run GOsa. Aborted."; + exit(); +} /* Set timezone */ date_default_timezone_set("GMT"); @@ -259,14 +266,15 @@ error_reporting (E_ALL | E_STRICT); /* Register error handler */ $error_collector= ""; $error_collector_mailto= ""; -set_error_handler('gosaRaiseError'); + +set_error_handler('gosaRaiseError', E_WARNING | E_NOTICE | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE | E_STRICT) ; $variables_order= "ES"; ini_set("register_globals",0); ini_set("track_vars",1); ini_set("display_errors",1); ini_set("report_memleaks",1); -ini_set("include_path",".:$BASE_DIR/include:$BASE_DIR/include/php_writeexcel"); +ini_set("include_path",".:$BASE_DIR/include:$BASE_DIR/include/utils/excel"); /* Do smarty setup */ require("smarty/Smarty.class.php"); @@ -275,5 +283,6 @@ $smarty->template_dir = $BASE_DIR.'/ihtml/'; $smarty->caching= false; $smarty->php_handling= SMARTY_PHP_REMOVE; + // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>