admin@example.com is the way to go as it cannot be sold.

4,027

(5 replies, posted in Misc. Charts of Accounts)

Nice template to start with. The devs can fashion one for the official repo.

4,028

(4 replies, posted in Accounts Receivable)

Make the Aircraft as the Customer and the Contact Person as the Real Customer to be billed. Better still, make the Aircraft RegNo and the Customer Name concatenated into being the FA Customer.

If you wish to mine the branch table, use, phpMyEdit.org / Adminer.org or some such CRUD program for a quick and effective job.

Try a fresh install of the latest snapshot and see if the problem persists.

4,030

(10 replies, posted in Announcements)

Although the function is now available in FA 2.4, the pre-requisites of having the extra fields added into the appropriate functions that return data arrays for use in reporting / forms has yet to be included. The wiki page on it is self-explanatory - look under the heading "Include the fields necessary in the functions / methods called".

Looks like your problem lies elsewhere. Check values of PHP options like open_basedir.
List versions of php, apache and mysql along with apache error logs (not just the FA error log).

Create an empty file in tmp/faillog.php under the webroot.

Hope you unzipped the master.zip file's contents into your webroot.

Please check if the pdfs are created in the company/# folder's subfolder.
Since you are on Windows XP (XAMPP ? which version?), permissions issues will not be there.

4,034

(13 replies, posted in Reporting)

This could be tricky - any copy that is printed out will possibly have the balance value (dynamically computed at print time) as on the print out date and not on the invoice creation date.

That is right. You are using the FA v2.3.24 release version. The code has since been fixed in the GitHub/Hg repos. Get the latest snapshot.

You're right, you need atleast one Customer and one item to generate an invoice....
After that try Direct Invoice....

4,037

(2 replies, posted in Reporting)

Checkout the ERDs in the FA Wiki.

4,038

(3 replies, posted in Setup)

Make it two parts:
Item 1: Supply Item / Cost 75 / VAT 5% - 3.75
Item 2: Service Item / Cost 25 / VAT 14% - 3.50

The offending lin 59 in includes/ui/ui_controls.inc is:

    if (is_array($hidden_fields))

It is possible that the global $hidden_fields variable may not have been created / visible at the time the error occurred.

Replace it with:

    if (isset($hidden_fields) && is_array($hidden_fields))

Since you are using the stock FA v2.3.24 you did not have the subsequent fixes incorporated.

4,040

(3 replies, posted in Banking and General Ledger)

Can your server download the currency rates file - any folder / permissions / php.ini settings - fopen(), etc issues?

4,041

(3 replies, posted in Banking and General Ledger)

try the exchange url manually

Try to tag Import Transactions.... and then filter in the report.

4,043

(10 replies, posted in Announcements)

@joe's post states it is so - just try it and let us know.

4,044

(3 replies, posted in Report Bugs here)

Check your lang/installed_languages.inc for Arabic's collation. Also make sure the Arabic fonts are installed and referred to in the reports files as in the wiki.

Try to allocate payments to customer instead of depositing in Banking and General Ledger.

You can print the balance sheet only in the home currency of the company in FA now. We will need the exchange rate for the day on which the Balance Sheet is prepared and make allowances for rounding off errors and create another report (or the same one with an extra currency field) based on the current one for multi currency by just factoring in the exchange rate given.

4,047

(1 replies, posted in FA Modifications)

Unless the sales invoice was "dimensioned" making a customer payment on a dimension would be orphaned.

4,048

(6 replies, posted in Setup)

Try  to optimise your database like from within phpMyAdmin.
Also check which tables are having huge number of records and/or are occupying huge space and delete records that are useless like SQL audit trails.
See if the database has some other tables not related to FA but having the same table prefix as the FA instance.

To make sure that the new trans_nr is 1 more than the maximum of any previously allocated trans_nr which may or may not have been voided.

4,050

(1 replies, posted in Reporting)

Looks like you are using some un-escaped character in your data that is not in the decoded list.