Feature 5388: Print Invoices (documents) list gets too long. Fixed by default 180...
[fa-stable.git] / config.default.php
index 02075ef5691ffb7f21740036d1e85a9b268e53c1..acd3ddc62b4d6bec2a5ea0b3539bcc78d5b71627 100644 (file)
 if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_to_root']))
        die("Restricted access");
 
-       // Server time zone. If leaved empty the time zone set in php init file will be used.
-       // If timezone is not set in this file nor in php.ini, Europe/Berlin' is used as defualt.
-       $server_time_zone = '';
+       // Server time zone. Since php 5.3.0 time zone have to be set either here or in server php ini file
+       if (!ini_get('date.timezone'))
+               ini_set('date.timezone', 'Europe/Berlin');
 
        // 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 = $path_to_root.'/tmp/errors.log';
+       $error_logfile = VARLOG_PATH.'/errors.log';
        $debug                  = 1;    // show sql on database errors
 
        $show_sql               = 0;    // show all sql queries in page footer for debugging purposes
@@ -56,7 +56,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        /* No check on edit conflicts. Maybe needed to be set to 1 in certains Windows Servers */
        $no_check_edit_conflicts = 0;
        
-       /* Use icon for editkey (=true) right of combobox. 1 = use, 0 = do not use */
+       /* Use additional icon for supplier/customer edition right of combobox. 1 = use, 0 = do not use */
        $use_icon_for_editkey = 0;
 
        /* Creates automatic a default branch with contact. Value 0 do not create auto branch */
@@ -70,9 +70,6 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        /* This has been superseded with built in Audit Trail */
        $use_audit_trail = 0;
 
-       /* $show_voiced_gl_trans = 0, setting this to 1 will show the voided gl trans */
-       $show_voided_gl_trans = 0;
-
        /* use old style convert (income and expense in BS, PL) */
        $use_oldstyle_convert = 0;
 
@@ -86,14 +83,14 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        //      locally installed wiki module
        // $help_base_url = $path_to_root.'/modules/wiki/index.php?n='._('Help').'.';
        //      context help feed from frontaccounting.com
-       // $help_base_url = 'http://frontaccounting.com/fawiki/index.php?n=Help.';
-       //      not used
-       $help_base_url = null;
+       $help_base_url = 'http://frontaccounting.com/fawiki/index.php?n=Help.';
+       //      set to null if not used:
+       //      $help_base_url = null;
 
        /* per user data/cache directory */
        $comp_path = $path_to_root.'/company';
 
-       /* Date systems. 0 = traditional, 1 = Jalali used by Iran, nabour countries, Afghanistan and some other Central Asian nations,
+       /* Date systems. 0 = traditional, 1 = Jalali used by Iran, Afghanistan and some other Central Asian nations,
        2 = Islamic used by other arabic nations. 3 = traditional, but where non-workday is Friday and start of week is Saturday */
        $date_system = 0;
 
@@ -123,12 +120,12 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
           If this parameter is checked the proportion by which the purchase invoice is an overcharge
           referred to before reporting an error */
 
-       $check_price_charged_vs_order_price = True;
+       $check_price_charged_vs_order_price = true;
 
        $config_allocation_settled_allowance = 0.005;
 
        /* Show average costed values instead of fixed standard cost in report, Inventory Valuation Report */
-       $use_costed_values = 0
+       $use_costed_values = 1
        
        /* Show menu category icons in core themes */
        $show_menu_category_icons = 1;
@@ -154,6 +151,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
 
        /* UTF-8 font for Business Graphics. Copy it to /reporting/fonts/ folder. */
        $UTF8_fontfile  = "FreeSans.ttf";
+       //$UTF8_fontfile        = "zarnormal.ttf"; // for Arabic Dashboard
 
 /* 
        Display a dropdown select box for choosing Company to login if false.
@@ -180,7 +178,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        Choose Exchange Rate Provider
        Default is ECB for backwards compatibility
 */
-       $xr_providers = array("ECB", "YAHOO", "GOOGLE", "BLOOMBERG");
+       $xr_providers = array("ECB", "EXCHANGE-RATES.ORG", "GOOGLE", "YAHOO", "BLOOMBERG");
        $dflt_xr_provider = 0;
 
 /*
@@ -200,3 +198,15 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
 */
        $clear_trial_balance_opening = false;
 
+/*
+       Optional backup path. Use %s in place of company number.
+       If not defined $comp_path/%s/backup/ is used.
+*/
+//     $backup_path = dirname(__FILE__).'/company/%s/backup/';
+
+/*
+       Optional popup search enabled if this is true.
+       $max_rows_in_search = 10 is used for maximum rows in search
+*/
+       $use_popup_search = true;
+       $max_rows_in_search = 10;