X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=1259de248adfe95af50a0061ae9e8912a83d0e8a;hb=3385ff8d1dd47f62bc068191134bbf9406a8960f;hp=ba1c13413de97e483e4f1f8acc4e3222cae8c87d;hpb=737c1c686ce1d2aea5045a4ffa47b9cdba8d8792;p=fa-stable.git diff --git a/config.php b/config.php index ba1c1341..1259de24 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.1"; + $version = "2.1.2"; // Build for development purposes $build_version = date("d.m.Y", filemtime("$path_to_root/CHANGELOG.txt")); @@ -64,6 +74,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ /* use Audit Trails in GL */ $use_audit_trail = 0; + /* use old style convert (income and expense in BS, PL) */ + $use_oldstyle_convert = 0; + /* Integrated base Wiki Help URL or null if not used */ //$help_base_url = $path_to_root.'/modules/wiki/index.php?n='._('Help').'.'; $help_base_url = null;