X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.default.php;h=a5a8920e0e12d895c151658b664b29b0e624e3c5;hb=c75b19a492e4b9ad53c9c0a47b87ad0abb687921;hp=a039fc20e4311c8951e3b528f969bf66c2e34dcb;hpb=e372cc12091663d268b7ec9947df02567466a428;p=fa-stable.git diff --git a/config.default.php b/config.default.php index a039fc20..a5a8920e 100644 --- a/config.default.php +++ b/config.default.php @@ -68,6 +68,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $power_by = "FrontAccounting"; $power_url = "http://frontaccounting.com"; + /* No check on edit conflicts. Maybe needed to be set to 1 in certains Windows Servers */ + $no_check_edit_conflicts = 0; + /* Do not print zero lines amount of 0.00 in Sales Documents if service item. 1 = do not */ $no_zero_lines_amount = 1; @@ -91,7 +94,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ /* $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; @@ -135,8 +138,11 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ /* suppress tax rates on documents. 0 = no, 1 = yes. */ $suppress_tax_rates = 0; - - $dateformats = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD"); + + /* allow reopening closed transactions */ + $allow_gl_reopen = 0; + + $dateformats = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD","MmmDDYYYY", "DDMmmYYYY", "YYYYMmmDD"); $dateseps = array("/", ".", "-", " "); $thoseps = array(",", ".", " "); $decseps = array(".", ","); @@ -219,32 +225,54 @@ if(isset($_SESSION["wa_current_user"])) { if (!defined('ICON_EDIT')) { - define("ICON_EDIT", "edit.gif"); - define("ICON_DELETE", "delete.gif"); - define("ICON_ADD", "ok.gif"); - define("ICON_UPDATE", "ok.gif"); - define("ICON_OK", "ok.gif"); - define("ICON_CANCEL", "cancel.png"); - define("ICON_GL", "gl.png"); - define("ICON_PRINT", "print.png"); - define("ICON_PDF", "pdf.gif"); - define("ICON_DOC", "invoice.gif"); - define("ICON_CREDIT", "credit.gif"); - define("ICON_RECEIVE", "receive.gif"); - define("ICON_DOWN", "download.gif"); - define("ICON_MONEY", "money.png"); - define("ICON_REMOVE", "remove.png"); - define("ICON_REPORT", "report.png"); - define("ICON_VIEW", "view.gif"); + define("ICON_EDIT", "edit.gif"); + define("ICON_DELETE", "delete.gif"); + define("ICON_ADD", "ok.gif"); + define("ICON_UPDATE", "ok.gif"); + define("ICON_OK", "ok.gif"); + define("ICON_CANCEL", "cancel.png"); + define("ICON_GL", "gl.png"); + define("ICON_PRINT", "print.png"); + define("ICON_PDF", "pdf.gif"); + define("ICON_DOC", "invoice.gif"); + define("ICON_CREDIT", "credit.gif"); + define("ICON_RECEIVE", "receive.gif"); + define("ICON_DOWN", "download.gif"); + define("ICON_MONEY", "money.png"); + 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"); + define("ICON_ESCAPE", "escape.png"); + define("ICON_CLOSED", "closed.png"); } /* - Display a dropdown select box for choosing Company to login if true. - Show a blank editbox only if false where the Company NickName + Display a dropdown select box for choosing Company to login if false. + Show a blank editbox only if true where the Company NickName will have to be manually entered. This is when privacy is needed. */ - $AllowCompanySelectionBox = true; +$text_company_selection = false; + +/* Should FA hide menu items (Applications, Modules, and Actions) from the user if they don't have access to them? + 0 for no 1 for yes +*/ + + $hide_inaccessible_menu_items = 0; + +/* + Brute force prevention. + $login_delay seconds delay is required between login attempts after $login_max_attemps failed logins. + Set $login_delay to 0 to disable the feature (not recommended) +*/ +$login_delay = 30; +$login_max_attempts = 10; + +/* + Choose Exchange Rate Provider + Default is ECB for backwards compatibility +*/ +$xr_providers = array("ECB", "YAHOO", "GOOGLE", "BLOOMBERG"); +$dflt_xr_provider = 0; ?> \ No newline at end of file