X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=61d2c0c0298c4c2c2635bd30be57bd47350450bd;hb=e68c17647abf110864dbf53e246b102d3a95f041;hp=7c3d6410e2c4884495f7284fd6f85f9177bd38a2;hpb=6a13d7354fc0c67f3964cbf0e59ea5d1f9f1a53b;p=fa-stable.git diff --git a/config.php b/config.php index 7c3d6410..61d2c0c0 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.2 CVS"; + $version = "2.2m5 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; @@ -159,9 +172,6 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,20), ); - /* default start-up tab (orders/AP/stock/manuf/proj/GL/system) */ - $def_app = "orders"; - //MySQL Backup and Restore Settings if(isset($_SESSION["wa_current_user"])) {