@joe, @itronics: any updates?
2,326 12/06/2017 11:12:45 pm
Re: Handling, Shipping & Clearance (19 replies, posted in Accounts Payable)
2,327 12/06/2017 11:09:49 pm
Re: MariaDB fix - needs re-run (2 replies, posted in Installation)
@joe: Thanks. Commit Link.
2,328 12/06/2017 11:01:57 pm
Re: FA2.4.2 error getting exchange rate from Google (55 replies, posted in Report Bugs here)
Since it was among the construct/destruct changes it was not obvious. Thanks for the reference Joe.
2,329 12/06/2017 10:52:46 am
Re: Set Invoice address (1 replies, posted in Accounts Receivable)
The Customer Branch is set to be the charge to address. All non "cash only" direct invoices have the option to deliver from / to fields. There is a refresh issue with the direct invoice / sales order entry page is a non cash payment mode is chosen in one form and abandoned and then another is opened.
2,330 12/06/2017 10:48:16 am
Re: FA2.4.2 error getting exchange rate from Google (55 replies, posted in Report Bugs here)
Not yet.....
@joe: isn't it due?
2,331 12/06/2017 10:46:24 am
Re: Whats happened with Recurrent invoices? (24 replies, posted in Accounts Receivable)
This was changed in FA 2.3.5 as stated in the wiki.
2,332 12/06/2017 10:34:41 am
Topic: MariaDB fix - needs re-run (2 replies, posted in Installation)
The commit for allowing MariaDB uses an inline array reference on explode that is not accepted in PHP 5.3.1 and needs to be fixed as in the comment in it by replacing line 27 in includes/system_tests.inc:
$test['result'] = $test['test']>='4.1' || explode('-', $test['test'])[1] == 'MariaDB';
with:
if(!($test['result'] = ($test['test']>='4.1'))) {
$db_str = explode('-', $test['test']);
$test['result'] = ($db_str[1] == 'MariaDB');
}
2,333 12/03/2017 04:36:12 am
Re: Date Picker Returning Different Date Format as Defined in Preferences (7 replies, posted in Report Bugs here)
Clear the company/#/js_cache/*.js files and they will get re-created with the new preference settings on next login.
2,334 12/03/2017 04:34:21 am
Re: Not working: Automatic Increase of reference number fields in FA 2.4.2 (67 replies, posted in Setup)
@itronics: make something generic wherever there is a reference that clashes with existing ones.
2,335 12/02/2017 09:09:29 am
Re: Project Management Extension (24 replies, posted in Modules Add-on's)
The demo does not seem to have it installed.
All methods are skeleton templates only.
2,336 12/02/2017 04:13:31 am
Re: Spinner on download keeps spinning (3 replies, posted in Setup)
@itronics: That was a really involved fix indeed. The second if to test for a zip can be an elseif..... in admin/backups.php and a string somewhere to indicate that the file was successfully downloaded will complete it.
2,337 12/01/2017 04:42:15 pm
Re: Not working: Automatic Increase of reference number fields in FA 2.4.2 (67 replies, posted in Setup)
@itronics: Should this not be adjusted as you had done earlier and committed?
2,338 12/01/2017 04:40:45 am
Re: Wishlist (1 replies, posted in Wish List)
Core functions are included first. Only extra functions come in from the themes. Overrides in the company folder override similar files in the core path. Hooks are sequentially activated and they are generally class methods. Custom themes too can partake of it's class methods to override the default ones.
Trying to upload a module is available using the pkg extension and the ar method of archiving that is similar to the .deb Debian packaging.
Allowing any other means of upload will cause security issues if not taken heed to in the program construct.
2,339 11/30/2017 03:25:30 pm
Re: Arabic language (4 replies, posted in Translations)
I have the translated ones for FA 2.4.3 in the FA24extensions repo. Download and overwrite your .mo file
2,340 11/29/2017 05:00:33 pm
Re: UTF8 double encoding (5 replies, posted in Report Bugs here)
If your OS starts the MySQL server with the right default charset and collation and it matches that of the connection made from the php scripts, all should be well. This will affect both FA 2.3 and FA 2.4 as well.
2,341 11/29/2017 09:05:53 am
Re: UTF8 double encoding (5 replies, posted in Report Bugs here)
This is specific to the mysqli_query execution where the connection handle is passed.
2,342 11/29/2017 09:04:48 am
Re: Not able to load reports on localhost (9 replies, posted in Reporting)
Compare the php.ini files and the apache conf files.
2,343 11/29/2017 01:12:45 am
Re: UTF8 double encoding (5 replies, posted in Report Bugs here)
Make sure that the default / current session / connection are all of the same charset.
Check on the values of the concerned MySQL variables.
2,344 11/29/2017 01:10:33 am
Re: Not able to load reports on localhost (9 replies, posted in Reporting)
Make sure you have the appropriate font in the reporting/fonts folder.
2,345 11/28/2017 12:30:45 pm
Topic: Spinner on download keeps spinning (3 replies, posted in Setup)
When a backup is created and an attempt is made to download the backed-up file which downloads successfully, the spinner at the top keeps spinning and there is no message to state that the download was successful.
When a backed-up file is attempted to be viewed, there is no sql file extraction on archived backups before a view is attempted. If there is no intention of doing it for some reason, then a filter should be made before an attempt to allow a view like:
if (!preg_match("/\.sql$/", $fname))
display_error(_("You can only view *.sql backup files"));
else {
..
..
in admin/backups.php file.
2,346 11/28/2017 12:23:30 pm
Re: REST API (86 replies, posted in Modules Add-on's)
By end user I mean those who install, maintain and use FrontAccounting by themselves with the Slim API, not the FA application operatives using what someone else installs and maintains.
What is wrong with line 6 of index,php? Just a plain include of all php files in the src folder so that any function in any endpoint can use it. I am planning on working on it to make sure that native FA functions are used for the most part. It works for me.
If there is anyone for whom the code does not work, please let me know - I'd like to know why and will do what needs to be done. I am keeping it as backward compatible as is possible so that those on older PHP versions too can still keep their installs whilst leveraging the REST API.
If you put in some test access values in util.php, you can easily browse to say: http://localhost/fa24/modules/api24/category/1
I've been packaging the original submission from Andres Amaya Diaz for FA 2.3 and worked on it while it was being hammered out. You check the wiki history and the original threads too.
2,347 11/28/2017 08:01:20 am
Re: REST API (86 replies, posted in Modules Add-on's)
Mine is packaged to work without composer and it's dependencies by default. The community now has the options of using it
1. with composer (your default) or
2. editing your release to work without it or
3. using mine (default no composer) directly.
Also my version does not need the PHP 5.4+ dependency of the new array declaration []. The FA and API paths are hardcoded in mine though.
Hope these differences will help end users make their choice.
2,348 11/28/2017 07:45:10 am
Re: REST API (86 replies, posted in Modules Add-on's)
Have synched my repo. Standardised the braces. It continues to work without composer. Latest version attached.
2,349 11/27/2017 02:21:33 pm
Re: Forum Usage - best practices (5 replies, posted in Announcements)
With the release of every new version, interest in the community peaks and so do the spammers who wish to be seen by those crowding in.
Attached is the stats for user registrations and their posts during the 30 day period ending today.
Two-thirds are unwanted registrations.
One-fifth are such posters and posts.
Average visibility of spammers - 2 hours.
2,350 11/27/2017 06:31:21 am
Re: Account Class drill down (5 replies, posted in Banking and General Ledger)
Opening too many windows may confuse cookies / sessions. This is more of a drill down to create a new account / account group without having to choose in a select box - especially one that is too long.
It will also be helpful for mobile layouts.
If we are to drill up and display as popups for information purposes, it should be okay for that.