X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=7ab4f10f267b1f829a044655f192f042dfdd48a0;hb=ebc600101ceab69c06eac4b1bd4d1782af45de05;hp=c3e0d689add15b74e2039cae9763f327a0709716;hpb=b558c8b9d4f710ffb1c3d2722a850fd394f4d939;p=fa-stable.git diff --git a/config.php b/config.php index c3e0d689..7ab4f10f 100644 --- a/config.php +++ b/config.php @@ -20,7 +20,11 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_to_root'])) die("Restricted access"); - + // Log file for error/warning messages. Should be set to any location + // writable by www server. When set to empty string logging is switched off. + // Special value 'syslog' can be used for system logger usage (see php manual). + $error_logfile = ''; + //$error_logfile = dirname(__FILE__).'/tmp/errors.log'; $debug = 1; $show_sql = 0; $go_debug = 0; @@ -43,10 +47,16 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ // ini_alter("error_reporting","E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR|E_PARSE"); ini_set("display_errors", "On"); } + + if($error_logfile != '') { + ini_set("error_log", $error_logfile); + ini_set("ignore_repeated_errors", "On"); + ini_set("log_errors", "On"); + } // Main Title $app_title = "FrontAccounting"; // application version - $version = "2.1.2"; + $version = "2.1.7"; // Build for development purposes $build_version = date("d.m.Y", filemtime("$path_to_root/CHANGELOG.txt"));