The easiest way is just prescalling your img file in GIMP or similar program to proper dimensions before you upload it to use in application.
Janusz
651 08/26/2012 06:46:35 pm
Re: Enlarging the logo in quotations/invoices (6 replies, posted in Reporting)
652 08/26/2012 06:33:21 pm
Re: I Need Modifaction in Sales Item Entry (4 replies, posted in FA Modifications)
It depends when you plan to use this additional selectors. The item list is in most cases assembled in separate function located in some *_ui.php file in includes/ui subfolder.
Janusz
653 08/26/2012 06:29:15 pm
Re: simple_crud_class (5 replies, posted in FA Modifications)
Ok, everybody can have its own opinion in this matter. If you want to implement javascript dialog as an simple_crud_class class option which can be activated (when needed) on object creation - you are welcome. We can add this to the next FA version.
Janusz
654 08/26/2012 06:22:11 pm
Re: Supplier entry page (6 replies, posted in FA Modifications)
Well, I'm not sure what the problem you've found. Suppliers data can be edited in Purchasing/Suppliers, exactly in the same place when is was entered.
Janusz
655 08/26/2012 06:10:11 pm
Re: Poedit problem (2 replies, posted in Translations)
I do not see any deletion here. Just the maximum line length is used in both examples
656 08/26/2012 06:01:01 pm
Re: Problem when showing data and the preference language is english (1 replies, posted in Translations)
Maybe you have to declare English language as UTF-8 encoded. Better support for UTF-8 encoded mulitlanguage installations will be included in next major FA version.
Janusz
657 08/26/2012 05:49:09 pm
Re: breakdown of large purchase to small sales (7 replies, posted in Manufactoring)
Yes, when purchase order is printed/mailed supplier specific unit of measure/description are used.
Janusz
658 08/26/2012 05:33:08 pm
Re: Service Items Not Showing up in reports (11 replies, posted in Items and Inventory)
Also, you have all categories included in sales reports. Service is not inventory item, so is not included in inventory reports.
Janusz
659 08/26/2012 05:30:20 pm
Re: How to delete the discount to invoice (1 replies, posted in Items and Inventory)
No, in FA philosophy both delivery and related invoice should always reflect order.
Janusz
660 08/26/2012 04:45:34 pm
Re: Hide Module (1 replies, posted in Setup)
No, complete hiding is not supported in current FA version. You will need customize php code to achieve required effect.
Janusz
661 07/31/2012 06:59:43 pm
Re: Password problem, even after reseting it at MYSQL table through PhpmyA (13 replies, posted in Installation)
Keep in mind that changing base installed_extension.php is not enough to deactivate the extension. You have to remove the mentioned section also from company/X/installed_extensions.php files.
Janusz
662 07/15/2012 04:15:34 pm
Re: Purchases - Database Error (3 replies, posted in Report Bugs here)
Yes, this should be fixed in sources. For now you can adjust your mysql configuration in my.ini/my.sfg file, removing STRICT_ALL_TABLES/STRICT_TRANS_TABLES from sql_mode setting.
663 07/15/2012 03:58:17 pm
Re: Cash Sale Invoice. How to: (27 replies, posted in Accounts Receivable)
Cash sales terms selection is blocked, when POS related to your user record does not allow for cash transactions.
Janusz
664 07/15/2012 03:53:50 pm
Re: Invoice Printing (1 replies, posted in Accounts Receivable)
Units are also stored in stock_master.units field
665 07/15/2012 03:49:48 pm
Re: Initial Login - Removing Company Dropdown (5 replies, posted in Setup)
If you want to have no company selector on the login screen, you can supersede the select input field with a hidden one.
Or if your goal is to separate companies, you can simply have one source tree per company (installed in separate folders). All FA sources have a couple of Megabytes of code, so this should be no problem even on any budget hosting account.
Janusz
666 07/08/2012 05:38:58 pm
Re: Allocate payments in US$ (1 replies, posted in Accounts Payable)
You should have separate bank account in USD registered in FA. Then when you enter payment in USD, this can be directly allocated to USD invoice with no currency exchange involved.
Janusz
667 07/08/2012 05:24:55 pm
Re: How is the initial standard cost initialized (3 replies, posted in Items and Inventory)
I guess you have entered the cost when you have done adjustment for B, didn't you?
Janusz
668 07/08/2012 05:10:55 pm
Re: Error Posting Transactions! (7 replies, posted in Setup)
You can set go_debug variable in config.php file, but the message warn you that the parameters you try to enter are already in database. Just look into unique/primary keys and table content in table you operate on, to find which exactly data can cause the problem.
Janusz
669 07/01/2012 09:16:08 am
Re: Launch email (11 replies, posted in FA Modifications)
You will find it in respective php file. Use grep to find 'Email This' phrase.
670 06/29/2012 12:56:36 pm
Re: Wrong locale code. HOWTO correct it? (4 replies, posted in Translations)
ISO-8859-1 was choosen by original Romanian translator, as far as I know the ro_RO FA translation does not use accented characters at all. I guess you can compile locales using this encoding too, but if this is a problem, alternatively you can change encoding declared in installed_languages.inc file manually, setting it to ISO-8859-2.
Janusz
671 06/22/2012 12:48:32 pm
Re: Can't Delete a company (11 replies, posted in Report Bugs here)
Yes, this is exactly how it works. Directory name is not database prefix but company index in $db_connections table.
Janusz
672 06/21/2012 07:32:39 pm
Re: Can't Delete a company (11 replies, posted in Report Bugs here)
Well, this is quite simple: if you have 3 companies in your config_db.php fiel, you should have 3 private folders under company, named '0' to '2'. If for some reason anyone subfolder is missing the company deletion fails. This is because folders have to renumbered when you delete any but the last one company (e.g. removing company 1 will require renaming the '2' folder to '1'). This cannot be done when some folder is missing.
Janusz
673 06/20/2012 07:11:28 pm
Re: Can't Delete a company (11 replies, posted in Report Bugs here)
Nothing has changed in this matter so far, answer to your question you can find in second post in this thread.
Janusz
674 06/18/2012 03:54:35 pm
Re: meta_forward forces re-login (6 replies, posted in FA Modifications)
All the reports have session.inc included for the same reason. Many helper functions defined in FA and called in reports depend on data stored in $_SESSION, so it should be included also here. If you want to debug reports in FA setting $pdf_debug =1 in your config.php temporarily can be useful. This will display generated PDF source in separate browser tab, giving you possibility to check the results for some kind of errors which otherwise are hidden.
Janusz
675 06/17/2012 09:04:46 pm
Re: meta_forward forces re-login (6 replies, posted in FA Modifications)
Yes, sure. session.inc contains all the initialization calls necessary to create environment for application. This is the only file which have to be included in any page.
Janusz