X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=d6eeddf280e5daa2a902bb3e4f7ff2181178074b;hb=9b852b19c91b5af6400cf94a9ff65d37d1a730b4;hp=4b6422865d83acd8d7020300b15f88435d225447;hpb=2950cd50d2671d2648a4189461634c8c47f79eab;p=fa-stable.git diff --git a/config.php b/config.php index 4b642286..d6eeddf2 100644 --- a/config.php +++ b/config.php @@ -20,10 +20,14 @@ 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; + $go_debug = 1; $pdf_debug = 0; // set $sql_trail to 1 only if you want to perform bugtracking sql trail // Warning: this produces huge amount of data in sql_trail table. @@ -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.0 RC"; + $version = "2.2m4 CVS"; // 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; @@ -193,5 +206,7 @@ if (!defined('ICON_EDIT')) define("ICON_REMOVE", "remove.png"); define("ICON_REPORT", "report.png"); define("ICON_VIEW", "view.gif"); + define("ICON_SUBMIT", "ok.gif"); + define("ICON_ESCAPE", "escape.png"); } ?> \ No newline at end of file