Unparenthesized `a ? b : c ? d : e` is deprecated. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in file: gl/includes/db/gl_db_trans.inc at line 464
152 04/21/2020 06:51:38 am
Re: Interest in Magento Integration or Shopify Integration (5 replies, posted in Modules Add-on's)
@bkort, yes you can sell it commercially. Since FA has no marketplace so you make a free version and then paid version. Free users can then migrate to paid one.
Free version can then be made available at FA forum.
Can you do the same for WooCommerce? I have few clients who may be interested in that.
153 04/17/2020 06:32:42 pm
Topic: Edit Multiple Bank Payments in Multiple Tabs (0 replies, posted in Banking and General Ledger)
I just want to give a bundle of thanks to @BraathWate for his work in this commit that has solved a great problem for me.
Hats off for you @Braath.
154 03/22/2020 10:46:16 am
Re: The Header option from module itself (19 replies, posted in Modules Add-on's)
can u provide a sample template to test?
155 03/22/2020 10:37:15 am
Re: Added Functionality to Manufacture Multiple Products with One WO (6 replies, posted in Manufactoring)
hello I am travelling now so couldn't check earlier. I will send you the demo soon once reached.
156 02/24/2020 06:50:04 pm
Re: Data Migration from Another Accounting Software (6 replies, posted in Jobs wanted/offered, non-free offers)
This is the modified import_items that takes care of opening stock.
157 01/22/2020 03:40:37 am
Re: Theme with chat (7 replies, posted in Wish List)
you can use tawk.to. Its totally free and can be easily integrated in FA theme. Just add the JavaScript code you get from tawk.to on includes/page/footer.inc before the last line.
158 01/14/2020 05:09:01 pm
Re: System being logged out (7 replies, posted in Accounts Receivable)
I have debugged the issue in detail and found that calling the below function is making the system being logout.
function regenerateSession()
When in one session.inc call the above function is called and regenerates the new session id
On the next call when
function validateSession() is called it returns false on following condition
if (isset($_SESSION['EXPIRES']) && $_SESSION['EXPIRES'] < time()) {
return false;
}
Any idea? Why regenerate is important? and this condition is failing?
159 01/05/2020 03:56:22 am
Re: GL Account Transactions (1 replies, posted in Reporting)
You need to modify the report rep704.php
160 01/04/2020 04:02:29 am
Re: Direct Invoice Issue (2 replies, posted in Items and Inventory)
Probably in Company Setup >> User Interface Options >> Search Item List is checked.
161 01/04/2020 04:00:04 am
Re: One domain's database on another domain (1 replies, posted in Setup)
FA has nothing to do with domain. If the table prefix is same on both domains then you can restore it.
162 01/02/2020 06:01:47 am
Re: The Future of FrontAccounting (6 replies, posted in Development)
What about Future of FrontAccounting? Long awaited 2.5 is taking time I think due to work load with Jansuz. Are you still with the plan to get further developers involved.
163 01/01/2020 11:03:00 am
Topic: Amendment Required in rep601.php (1 replies, posted in Reporting)
On Line # 50 Please add following code
AND amount != 0
Otherwise all voided transactions are shown in Bank STatement.
164 12/20/2019 12:34:39 pm
Re: Server Being Crashed (3 replies, posted in Installation)
2 Core Server with 4 GB RAM, Debian Linux, DigitalOcean
165 12/19/2019 12:40:11 pm
Re: Modularizing the Dashboard (82 replies, posted in FA Modifications)
Ok, your explanation given in Post#10 is enough to create a sample module. Except nothing should be done in dashboards folder instead reporting folder shall be used in module to create the file custom_dashboards.php.
Thanks for this great feature.
166 12/19/2019 10:10:40 am
Topic: Server Being Crashed (3 replies, posted in Installation)
I have checked the Logs of my server when It Crashes as CPU Usage reaches 100%.
I found few core pages and my module pages with a query string /modules/container/containers.php?JsHttpRequest=0-xml
Is this an Ajax Call?
This is a simple Page to add Containers against Jobs (Dimensions).
This client have more than 3000 open Jobs (Dimensions).
Is this Ajax Call taking so much resources is due to the Dimensions Being Loaded in the Drop Down List?
Or there is any other reason for this resource consumption.
@All Gurus please guide me.
Regards.
167 12/19/2019 09:31:08 am
Re: Modularizing the Dashboard (82 replies, posted in FA Modifications)
Hello @notrinos I am working on this dashboard system. In Post # 19 you have given a link of Sample Dashboard Module. That link is not working. Can you share that sample again.
Regards.
168 12/17/2019 05:30:42 am
Re: Opening Balance entry for Customers and Suppliers (6 replies, posted in FA Modifications)
With patch files it will be easy to test.
169 12/17/2019 05:28:56 am
Re: System being logged out (7 replies, posted in Accounts Receivable)
@Braath, thanks. The logout is not "Authorization Timeout". Suddenly the main login screen appears. I have increased the session timeout to 36000 secs in both php.ini and company setup.
How can I set a monitoring on Session. Any hint?
170 12/16/2019 01:41:45 pm
Topic: System being logged out (7 replies, posted in Accounts Receivable)
One of my clients have 300-400 invoices on daily basis.
While punching invoices, he is facing abnormally system being logged out.
No particular behavior or error is recorded.
Sometimes it logs out after 2 invoices and sometimes after 8 invoices.
Any ideas?
171 12/01/2019 02:37:54 am
Re: Editable db pager table (4 replies, posted in FA Modifications)
The feature is good. But can't help.
172 11/30/2019 02:21:37 pm
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
This error also come when Line endings are not correct. It should be LF with Linux . On PHP 7 if line endings are not correct then the said file will be ignored in inclusion.
173 11/19/2019 04:12:23 pm
Re: Data Migration from Another Accounting Software (6 replies, posted in Jobs wanted/offered, non-free offers)
If you want to import Journal Transactions and Bank Related Transactions then you can use import_multijournalentries extension. If you want to import Inventory Transactions you can use import_items extension
174 11/19/2019 02:40:39 am
Re: Data Migration from Another Accounting Software (6 replies, posted in Jobs wanted/offered, non-free offers)
Which one?
175 11/12/2019 02:33:54 pm
Re: Creating Invoice through REST API (14 replies, posted in Accounts Receivable)
It is composer based. How can I install composer for this API?