The default language is "C" / "POSIX" in FA
5,227 12/21/2013 03:22:42 am
Re: modification new company registration (1 replies, posted in FA Modifications)
That is a functionality of the apache config and possibly a setting in the config file.
5,228 12/21/2013 03:20:56 am
Re: Import Multiple Journal Entries results in "Internal Server Error" (3 replies, posted in Modules Add-on's)
Check your apache error logs for more info
5,229 12/21/2013 03:19:20 am
Re: Install/Update Languages&Install/Activate extensions: Could not open (2 replies, posted in Setup)
write permissions on the modules and tmp folder?
5,230 12/21/2013 03:18:12 am
Re: mageia3 (1 replies, posted in Setup)
The new Linux Distribution Mageia 3 - is it based on debian or RHEL or BSD?
5,231 12/21/2013 03:11:04 am
Re: Large number of items problem (3 replies, posted in Items and Inventory)
Probably just a browser cache issue.
5,232 12/21/2013 03:09:54 am
Re: Urgently Needed ! expert FA developer to solve issues in new module !! (3 replies, posted in Jobs wanted/offered, non-free offers)
Please fork my FA on GitHub (or the official one) and post your extension there. That way, the community will be able to help you and it can be improved by suggestions from the community besides many eyeballs on the testing front.
5,233 12/21/2013 03:06:02 am
Re: LDAP binding error. (1 replies, posted in Installation)
Please verify that you are using the latest LDAP - the individual files are available in my personal GitHub Repo.
5,234 12/21/2013 03:04:02 am
Re: attachments file view (7 replies, posted in Report Bugs here)
Thanks Joe - fixed in this commit.
5,235 12/10/2013 03:40:30 am
Re: openning balance (3 replies, posted in Banking and General Ledger)
Enter one Journal Voucher with all Balance Sheet Entries (amounts) in detail dated the beginning of the Fiscal Year (close of last Balance Sheet).
5,236 12/10/2013 03:33:33 am
Re: Indonesian Translation (13 replies, posted in Translations)
The current translation files are available at my GitHub Repo as of 2013-12-03 PKG file.
5,237 12/10/2013 03:28:59 am
Re: attachments file view (7 replies, posted in Report Bugs here)
My last post is not a new function but a rehash of the existing function to avoid redundant passes.
The diff patch for the latest Hg is:
--- old/admin/db/fiscalyears_db.inc Wed Nov 06 16:43:56 2013
+++ new/admin/db/fiscalyears_db.inc Tue Dec 10 08:53:50 2013
@@ -190,11 +190,15 @@
$sql = "SELECT * FROM ".TB_PREF."attachments WHERE type_no = $type_no AND trans_no = $trans_no";
$result = db_query($sql, "Could not retrieve attachments");
+ $delflag = false;
while ($row = db_fetch($result))
{
+ $delflag = true;
$dir = company_path(). "/attachments";
if (file_exists($dir."/".$row['unique_name']))
unlink($dir."/".$row['unique_name']);
+ }
+ if ($delflag) {
$sql = "DELETE FROM ".TB_PREF."attachments WHERE type_no = $type_no AND trans_no = $trans_no";
db_query($sql, "Could not delete attachment");
}
5,238 12/08/2013 10:05:23 am
Re: Missing system locale: nl_NL.iso-8859-1 (3 replies, posted in Translations)
Clearing the server and browser cache could well have had the same effect or atleast a restart of the webserver process. Hope you have your locale installed as well.
5,239 12/08/2013 10:03:07 am
Re: Validate fields: sales_order_entry.php modification (8 replies, posted in Accounts Receivable)
Instead of hidden names in the form, why not lookup the names from the db in the processing code?
5,240 12/08/2013 10:00:37 am
Re: Remove some items from setup tab (13 replies, posted in FA Modifications)
Can experiment with a separate restricted mysql username and password to use for all others, other than for super admin and use it by switching in the config file.......
5,241 12/08/2013 09:57:04 am
Re: internet explorer & ajax (2 replies, posted in Report Bugs here)
Methodology for module development on GitHub is in the Wiki.
5,242 12/08/2013 09:55:39 am
Re: Searching Modification (1 replies, posted in FA Modifications)
USe the tab key to get to the button and then press space or enter key
5,243 12/08/2013 09:51:14 am
Re: attachments file view (7 replies, posted in Report Bugs here)
Line 193 in admin/db/fiscalyears_db.inc :
while ($row = db_fetch($result))
will make sure that all pertinent ids will be deleted one at a time, but in the existing code, all pertinent ids will get deleted in the first pass and then be redundantly executed thereafter.
To truly benefit from a single pass deletion, the function would have to be structured thus:
function delete_attachments_and_comments($type_no, $trans_no)
{
$sql = "SELECT * FROM ".TB_PREF."attachments WHERE type_no = $type_no AND trans_no = $trans_no";
$result = db_query($sql, "Could not retrieve attachments");
$delflag = false;
while ($row = db_fetch($result))
{
$delflag = true;
$dir = company_path(). "/attachments";
if (file_exists($dir."/".$row['unique_name']))
unlink($dir."/".$row['unique_name']);
}
if ($delflag) {
$sql = "DELETE FROM ".TB_PREF."attachments WHERE type_no = $type_no AND trans_no = $trans_no";
db_query($sql, "Could not delete attachment");
}
$sql = "DELETE FROM ".TB_PREF."comments WHERE type = $type_no AND id = $trans_no";
db_query($sql, "Could not delete comments");
$sql = "DELETE FROM ".TB_PREF."refs WHERE type = $type_no AND id = $trans_no";
db_query($sql, "Could not delete refs");
}
5,244 12/08/2013 09:28:59 am
Re: Dashboard Module and Theme - 500 Internal Server Error (9 replies, posted in Installation)
Clear Cache in server and browser
5,245 12/08/2013 09:20:06 am
Re: Moved site - getting php errors, and claiming no customer branches (2 replies, posted in Installation)
FrontAccounting is available at Mojo Marketplace - hope the FA devs benefit from it.
5,246 12/08/2013 09:12:19 am
Re: New Swedish translation (4 replies, posted in Translations)
Dim - Dimensions
QOH - Quantity on Hand
PO - Purchase Order
SO - Sales Order
SI - Sales Invoice
WO - Work Order
CN - Credit Note
PI - Purchase Invoice
GJ - General Journal
Please try to take it from the context in which they are used.
5,247 12/08/2013 09:09:08 am
Re: Printing in FA (3 replies, posted in Setup)
The default language is "C" / "POSIX".
5,248 12/08/2013 09:07:44 am
Re: Remove Quantity Rounding Up (3 replies, posted in Accounts Receivable)
Wikied it.
5,249 12/08/2013 09:03:29 am
Re: FA shows 'Not Acceptable' when I try to log in (4 replies, posted in Installation)
What do the apache / php error logs say? Try setting debug variable in config file.
5,250 12/08/2013 09:00:32 am
Re: searching (1 replies, posted in Wish List)
Try the tab button and then space or enter