admin@example.com is the way to go as it cannot be sold.
4,026 06/30/2015 11:24:52 am
Re: New installation and default Admin email address (3 replies, posted in Installation)
4,027 06/30/2015 11:23:38 am
Re: COA Canadian non-profit (5 replies, posted in Misc. Charts of Accounts)
Nice template to start with. The devs can fashion one for the official repo.
4,028 06/30/2015 11:20:02 am
Re: Search by Branch (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.
4,029 06/30/2015 11:15:19 am
Re: PDF Print, Print & Email are non-functional on a new install (22 replies, posted in Reporting)
Try a fresh install of the latest snapshot and see if the problem persists.
4,030 06/28/2015 04:15:00 pm
Re: Release 2.4 beta (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".
4,031 06/28/2015 04:09:12 pm
Re: PDF Print, Print & Email are non-functional on a new install (22 replies, posted in Reporting)
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).
4,032 06/26/2015 04:06:13 pm
Re: PDF Print, Print & Email are non-functional on a new install (22 replies, posted in Reporting)
Create an empty file in tmp/faillog.php under the webroot.
4,033 06/25/2015 08:27:07 pm
Re: PDF Print, Print & Email are non-functional on a new install (22 replies, posted in Reporting)
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 06/25/2015 02:48:00 am
Re: Print Customer Balance On Invoice (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.
4,035 06/25/2015 02:44:46 am
Re: PDF Print, Print & Email are non-functional on a new install (22 replies, posted in Reporting)
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.
4,036 06/25/2015 02:41:33 am
Re: Easiest way to enter a sale invoice (3 replies, posted in Accounts Receivable)
You're right, you need atleast one Customer and one item to generate an invoice....
After that try Direct Invoice....
4,037 06/25/2015 02:40:02 am
Re: export clients addresses to a .csv file (2 replies, posted in Reporting)
Checkout the ERDs in the FA Wiki.
4,038 06/19/2015 12:38:25 pm
Re: Facing New Problem regarding Taxation (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
4,039 06/19/2015 12:29:33 pm
Re: PDF Print, Print & Email are non-functional on a new install (22 replies, posted in Reporting)
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 06/19/2015 12:22:03 pm
Re: Currency Update problem (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 06/17/2015 03:53:17 am
Re: Currency Update problem (3 replies, posted in Banking and General Ledger)
try the exchange url manually
4,042 06/14/2015 06:09:43 am
Re: Report: Local Purchases and External Purchases (3 replies, posted in Reporting)
Try to tag Import Transactions.... and then filter in the report.
4,043 06/14/2015 06:08:20 am
Re: Release 2.4 beta (10 replies, posted in Announcements)
@joe's post states it is so - just try it and let us know.
4,044 06/09/2015 02:37:02 am
Re: beta 2.4 PDF error (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.
4,045 06/09/2015 02:35:05 am
Re: All FA version's having issue on Customer Payments (3 replies, posted in Accounts Receivable)
Try to allocate payments to customer instead of depositing in Banking and General Ledger.
4,046 06/09/2015 02:33:44 am
Re: Balance sheet/Trial Balance report with multiple currency (2 replies, posted in Reporting)
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 06/06/2015 02:04:01 am
Re: Dimensions and customer payments (1 replies, posted in FA Modifications)
Unless the sales invoice was "dimensioned" making a customer payment on a dimension would be orphaned.
4,048 06/06/2015 02:02:37 am
Re: Backup not done (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.
4,049 06/06/2015 01:59:51 am
Re: trans_no in 0_debtor_trans table (4 replies, posted in Items and Inventory)
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 06/06/2015 01:57:57 am
Re: Unable to Launch report in PDF format (1 replies, posted in Reporting)
Looks like you are using some un-escaped character in your data that is not in the decoded list.