Wiki-ed it.
301 03/28/2023 05:51:38 pm
Re: How to link dimension to user's setup (2 replies, posted in Dimensions)
302 03/28/2023 05:37:43 pm
Re: Thai language (9 replies, posted in Translations)
http://apmuthu.com/fautils/make_coa.php
will generate any FA Chart of Accounts.
Place the sql file from the attachment into your FA/sql folder and you are good to go.
303 03/28/2023 05:21:09 pm
Re: how to increase login user text length (3 replies, posted in Setup)
In FA 2.4.15+, the file access/login.php line 103 is:
text_row(_("User name"), "user_name_entry_field", $value, 20, 30);There is no restriction of 5 characters for username.
304 03/21/2023 07:44:57 am
Re: Add ability to manage documents associated with items (4 replies, posted in Wish List)
Instead of new fields, a nextcloud path can be stored in the sysprefs table and the sharelink can be computed from a derived format of the invoice (or any other asset) ID. If nextcloud provides for some random string then it's ID value can be leveraged as otherwise a reverse link would have to be stored in some FA table's field anew.
305 03/20/2023 11:48:47 am
Re: Add ability to manage documents associated with items (4 replies, posted in Wish List)
Better to manage with a separate Open Source Application for Document Management so that the backup of FA can remain small.
1. OpenDocMan - https://github.com/opendocman/opendocman - https://www.opendocman.com/free-download/
2 PaperMerge - https://papermerge.com/ - https://github.com/papermerge/papermerge-core
3. Alfresco - https://www.alfresco.com/ecm-software/alfresco-community-editions - https://github.com/Alfresco
4. OpenKM - https://www.openkm.com/en/open-source-document-management-system.html - https://github.com/openkm/document-management-system
5. Krystal DMS - https://www.krystaldms.in/products/community/ - https://www.github.com/primeleaf/krystaldms-community-edition
6. LogicalDOC - https://www.logicaldoc.us/en-us/download-logicaldoc-community - https://sourceforge.net/projects/logicaldoc/
7. Kimios - https://www.kimios.com/ - https://github.com/kimios/kimios
8. Mayan EDMS - https://www.mayan-edms.com/ - https://gitlab.com/mayan-edms/mayan-edms
9. SeedDMS - https://www.seeddms.org/ - https://sourceforge.net/projects/seeddms
10. OpenProduc - http://jhierrot.github.io/openprodoc/ - https://github.com/JHierrot/openprodoc
Attached is the notes of my failed experiment on installing Mayan EDMS on Debian 11 (bullseye) LXC VM where the redis server could not be started but workarounds for all else till then are listed.
306 03/18/2023 02:37:12 pm
Re: Add massive Terms and Conditions/import PDF (8 replies, posted in Reporting)
The ?? construct is for later versions of PHP alone and will fail in PHP 5.x.
Verify that $res[0] is set to 9 before the if check.
No code change is required at all for PHP 5.x.
Kindly state your PHP version.
307 03/18/2023 02:21:35 pm
Re: Add massive Terms and Conditions/import PDF (8 replies, posted in Reporting)
fpdi v1.2.1 is used in FA 2.4.x.
The warning may be safely ignored. The said line is:
if ($res[0] == PDF_TYPE_OBJECT)It can better be modified as:
if ((gettype($res[0] == 'boolean' || gettype($res[0]) == 'integer' ) && $res[0] == PDF_TYPE_OBJECT)Which version of PHP are you using?
The said constant is defined in reporting/includes/fpdi/pdf_parser lines 38, 39:
if (!defined ('PDF_TYPE_OBJECT'))
define ('PDF_TYPE_OBJECT', 9);It is probably expecting an 'integer' and not a 'boolean'.
Alternatively, the said line can be modified as:
$res[0] = $res[0]+0;
if ($res[0] == PDF_TYPE_OBJECT)308 03/15/2023 04:06:01 pm
Re: 403 Forbidden Access to this resource on the server - Version 2.4.11 (3 replies, posted in Report Bugs here)
Either your web host's php version has changed or you need to fix the includes/session.inc file.
309 03/15/2023 04:03:29 pm
Re: Add massive Terms and Conditions/import PDF (8 replies, posted in Reporting)
http://frontaccounting.com/punbb/viewtopic.php?id=4511
310 03/10/2023 03:36:07 pm
Re: TCPDF error: Unable to create output file (3 replies, posted in Installation)
This could be better resolved with file and folder ownership fixes.
Debian/Ubuntu by default uses ownership of www-data
Keeping it as 775 permissions is best.
chmod -R 775 ../company/
chown -R www-data:www-data ../company/311 03/05/2023 12:13:25 pm
Re: Supplier Payment db calls void_cust_allocations (1 replies, posted in Report Bugs here)
Committed. Thanks.
312 03/05/2023 12:10:07 pm
Re: Vietnamese lang package? (3 replies, posted in Translations)
@saosangmo: You are already a Vietnamese Language translator for FA in Transifex which is free for Open Source projects. Your 57 translations have been marked as "reviewed".
313 03/02/2023 04:09:55 pm
Re: Release 2.4.15 (3 replies, posted in Announcements)
Post Release Fixes attached.
Github Master (Bleeding Edge) Download Link
These fixes can be applied to (overwrite) the release version to be fully functional.
314 03/02/2023 03:41:53 pm
Re: Release 2.4.15 (3 replies, posted in Announcements)
Release date 2023-02-24 as of GitHub commit https://github.com/FrontAccountingERP/FA/commit/8f661801b2490ac38a65b94d07cda71491dcd8b9
SF Download Link
MD5: 435d036ff18ee109d7b243b5fa89bd84
Filesize: 1,881,330 bytes
315 03/02/2023 03:27:47 pm
Re: Approval System. (9 replies, posted in FA Modifications)
@joe: can implement in the core easily:
1. Create 1 new table to store all output (json) from various modules to store entries from lower level officers.
2. Submit button for each form submitted by low level officers can go into above table (maybe some changes in js in core forms or on_submit button logic)
3. Recursive hierarchy of roles and forms can be in another table.
316 03/02/2023 03:19:07 pm
Re: User Access for spesific COA (4 replies, posted in Wish List)
The COA is used to create a new company from the Default Company. Where does the end user get to choose the COA when logged into their company? The Admin of the company can set roles and permissions limited to those in FA only.
317 03/02/2023 03:09:29 pm
Re: Release 2.4.15 (3 replies, posted in Announcements)
No new translation strings.
Removed 2 unused translation strings.
318 02/10/2023 11:17:20 am
Re: A New Archive Category has been established. (5 replies, posted in Announcements)
Beware of Old version topics with current dated postings.
319 02/10/2023 05:53:27 am
Re: SMS Module (2 replies, posted in Modules Add-on's)
Get an SMS gateway / Service and that will provide an email address for a phone number that can be used instead of a regular email id.
kannel.org
nowsms.com
320 02/10/2023 05:51:37 am
Re: Download the frontaccounting-2.4.8.zip (3 replies, posted in Report Bugs here)
Why would anyone want to download FA v2.4.8 when v2.4.14+ is out now other than PHP/MySQL version availability and no such requirements have changed in the meanwhile.
321 02/10/2023 05:49:30 am
Re: PunBB (6 replies, posted in Wish List)
Beware there are many functions that worked in an "archived" version that do not now and some refactorisation may have to be done.
322 02/10/2023 05:14:26 am
Re: PURGE OLD FORUM POSTS (3 replies, posted in Wish List)
The 2017 issue has been fixed long ago. 2020 has been updated to 2021.
See:
https://github.com/FrontAccountingERP/FA/commit/cf82eee8eeb872796fcf2bc7f252403db4952247
New users are few but most users are long time ones.
323 01/29/2023 06:01:26 pm
Re: Opening Year - 2017 (10 replies, posted in FA Modifications)
Check the defaults for fiscal years in the CoA used for creating the new company. If no data is entered, then change the fiscal years in the database directly.
324 01/28/2023 04:36:52 pm
Re: Cannot download repo index file (57 replies, posted in Installation)
Check PHP version
325 01/28/2023 04:13:10 pm
Re: PURGE OLD FORUM POSTS (3 replies, posted in Wish List)
Some fixes are needed from reversions from those versions.
