5,151

(1 replies, posted in Setup)

http://www.wikihow.com/Set-Up-a-Local-Domain-with-Bind-in-Windows

5,152

(1 replies, posted in Installation)

Create your CoA from scratch to suit your needs.

Please logout, clear browser cache and also purge the js files in the company folder so that they get re-created and then try again.

5,154

(2 replies, posted in Reporting)

Make a copy of the original reporting/repXXX.php and place it in your company # reporting folder and modify it there.

5,155

(1 replies, posted in Setup)

Search for the word "Dear" in reporting/includes/pdf_report.inc and it's translations in the various compiled language files.

5,156

(9 replies, posted in Wish List)

Please be clear on what checks you want before a commit is envisaged:

Each insert must be successful - define what you mean by successful:
- whether the record was inserted or
- whether it already exists and did not need the insert or
- that the insert values were not acceptable for other reasons like field type and size checks.

Similarly about the definition of the UPDATE sql being successful:
- was the update successful in general
- was the update unnecessary as the record was already in the updated state
- was the update not acceptable at all for reasons like field type and size check failure.

5,157

(5 replies, posted in Wish List)

Fork the FA project (or my not frequently updated GitHub Repo for the extensions) and then provide your modules. FA is basically developed on Mercurial and the Git repo is only a mirror and my unofficial GitHub repo is meant only for extension development as it may not be otherwise uptodate and will get updated only when I get time.

5,158

(9 replies, posted in Wish List)

Check out these links to prove that the UPDATE query check is not functioning as needed:

http://stackoverflow.com/questions/14908087/should-mysqli-update-queries-return-a-result
http://stackoverflow.com/questions/12990164/how-to-check-if-an-update-mysqli-query-is-correctly-executed
http://stackoverflow.com/questions/12744953/mysqli-returns-true-for-insert-query-row-not-inserted

UPDATE will return 0 rows affected if the changed state already exists and the mysql_query function will still return true. Hence remove the UPDATE check in the if statement.

Has the first question by @padma been answered anywhere?

The CoA link is no longer available.

5,161

(8 replies, posted in Items and Inventory)

Make 3 separate FA installs in the same machine and create editable 1:1 views from a common db into each FA instance's db for those tables that need to be the same across all all FAs.

Keep all your columns in your excel sheet but hide them and export the rest to import into FA. Make sure to include the hidden columns details in the description.

abc - 2x3x1

5,163

(1 replies, posted in Setup)

change translation file or hardcode the text at each version change.....

5,164

(1 replies, posted in Reporting)

Textcart Extension?

Roles permissions must be enabled for the user

5,166

(1 replies, posted in Wish List)

Did you mean Logout button - it is there in the header menu line.

It is possible you did not install some extensions in the new one that was in in the old one that may possess an extra column/table.

Copying the files from one server to another may need to have the file users and groups and permissions set correctly and some apache and php directives set that may be peculiar for the new server like file paths in the config.php, etc.

State what column was missing and check the old sql backup as well.

5,168

(2 replies, posted in Items and Inventory)

@dev01: Assuming FIFO, then:

Average cost after sales in step 3:

Avgcost = ((110 * 5.8) - (5 * 6.071)) / (110 - 5)
               = (638 - 30.355) / 105
              = 607.645 / 105
               = 5.7871

Cost of Return saved as 6.071

Average cost after return of sales in step 4:

Avgcost = ((105 * 5.7871) + (5 * 6.071)) / (105 + 5)
             = (607.645 + 30.355) / 110
             = 638 / 110
             = 5.8

5,169

(3 replies, posted in Installation)

The said folders need to be writeable by the webserver process only.
In Debian / Ubuntu, it will be: www-data:www-data

Check if the filesize is restricted by Apache, PHP or FA application.

Use QuickEntries

5,172

(4 replies, posted in Accounts Receivable)

Would References, Dimensions and / or Tags do?

5,173

(1 replies, posted in Reporting)

Make copies of the report in your company # folder with necessary changes to override the defaults for now.

Joe, this can be fixed with a graphic option in the print form and inclusion in the respective reports.

5,174

(1 replies, posted in Reporting)

Joe, would it then be correct to have the show enabled by default and not have it as an option in the print form?

5,175

(1 replies, posted in Setup)

Please try

&

in the place of just "&" and see if it works.