The question is, what can I do for this definition?.
I see that in GL configuration, but I have no idea when the account is affected or where.
Is useful? for what?
26 02/13/2019 01:43:21 pm
Re: Bank Account Charges (5 replies, posted in Banking and General Ledger)
27 02/12/2019 09:20:09 pm
Topic: Bank Account Charges (5 replies, posted in Banking and General Ledger)
Hi, I need to know how to use Bank Account Charge.
Thank you.
28 11/02/2018 04:33:41 pm
Re: Accounting Standard in Front accounting (9 replies, posted in Setup)
Go to the Option "fiscal years" into "setup" main options.
29 10/31/2018 08:27:43 pm
Re: reports_classes.inc:40: count() (26 replies, posted in Reporting)
I think, into /includes/ui/ one file named like that. In this add all functions to fix issues of deprecated functions or fix others.
And then, add include into /includes/ui.inc
30 10/30/2018 06:12:46 pm
Re: reports_classes.inc:40: count() (26 replies, posted in Reporting)
But, if parameter is a string? is_array() is useful to stop that error condition.
31 10/30/2018 04:39:51 pm
Re: I want to export a chart (13 replies, posted in Misc. Charts of Accounts)
fiscal_year
32 10/30/2018 01:41:12 pm
Re: FA consultant or partner company (1 replies, posted in Jobs wanted/offered, non-free offers)
FA is a very easy and useful ERP, could you try to install and testing. The only problem is the time you need to learn.
33 10/30/2018 01:35:56 pm
Re: I want to export a chart (13 replies, posted in Misc. Charts of Accounts)
I think you need, attachments, bank_accounts, bank_trans, comments, dimensions, gl_trans and journal
34 10/30/2018 01:29:14 pm
Re: reports_classes.inc:40: count() (26 replies, posted in Reporting)
In my personal experiment, I added this function into ui_globals.inc
function count_array($array){
return (is_array($array)) ? count($array) : 0;
}
and replace in all php files "count(" by "count_array("
At this moment, its working for me.
Let me know if my solution works for all.
35 10/29/2018 05:55:27 pm
Re: reports_classes.inc:40: count() (26 replies, posted in Reporting)
I checked it and not in all cases have to be made changes.
36 10/26/2018 03:47:42 pm
Re: reports_classes.inc:40: count() (26 replies, posted in Reporting)
I got a solution:
in reports_classes.inc change on line 40.
$class_id = count($this->ar_classes);
to
$class_id = is_array($this->ar_classes) ? count($this->ar_classes) : 0;
What do you think?
37 10/26/2018 03:35:46 pm
Topic: reports_classes.inc:40: count() (26 replies, posted in Reporting)
I have this error when users access to report area, the error log said:
reports_classes.inc:40: count(): Parameter must be an array or an object that implements Countable
Anybody has an idea?
Thank you
38 10/26/2018 01:20:12 pm
Re: The each() function is deprecated TCPDF (7 replies, posted in Reporting)
Thank you for that tip, I already made the change.
39 10/25/2018 09:58:33 pm
Re: Session error (5 replies, posted in Report Bugs here)
This solution works fine!
40 10/25/2018 09:49:44 pm
Re: ini_set(): A session is active. You cannot change the session module's (10 replies, posted in Report Bugs here)
That solution works fine!
41 10/25/2018 09:23:19 pm
Re: ini_set(): A session is active. You cannot change the session module's (10 replies, posted in Report Bugs here)
@poncho1234 in 7.1.12 works fine, then the problem for me is PHP 7.2.11. Deprecated functions maybe? or something else.... I don't know.
42 10/25/2018 09:00:49 pm
Re: ini_set(): A session is active. You cannot change the session module's (10 replies, posted in Report Bugs here)
I have the error in errors.log, everything else works fine.
43 10/25/2018 08:10:07 pm
Re: ini_set(): A session is active. You cannot change the session module's (10 replies, posted in Report Bugs here)
I already have a new installation, the problem persist. What can I do? or, what see in FA?.
0::session.inc:432:[before upgrade] ini_set(): A session is active. You cannot change the session module's ini settings at this time
FA works fine, but that is the only issue.
44 10/25/2018 05:30:06 pm
Re: ini_set(): A session is active. You cannot change the session module's (10 replies, posted in Report Bugs here)
I am using FA 243, Xampp under windows and PHP 7.2.11
45 10/25/2018 04:27:10 pm
Re: The each() function is deprecated TCPDF (7 replies, posted in Reporting)
Now works without errors!
Thank you...
46 10/25/2018 04:23:49 pm
Topic: ini_set(): A session is active. You cannot change the session module's (10 replies, posted in Report Bugs here)
Hi!
I have this error:
session.inc:455:[before upgrade] ini_set(): A session is active. You cannot change the session module's ini settings at this time
I tried differente solutions, but neither is useful.
Someone have an idea?
Thank you
47 10/25/2018 02:26:08 pm
Re: The each() function is deprecated TCPDF (7 replies, posted in Reporting)
Thank you so much!!!
Very useful.
48 10/25/2018 01:36:59 pm
Topic: The each() function is deprecated TCPDF (7 replies, posted in Reporting)
When I try to create reports, I have the error
tcpdf.php:4707: The each() function is deprecated. This message will be suppressed on further calls
I tried to implement new versión of TCPDF, but I failed. Someone have the same problem? or How I fix that.
Thanks.