Skip to forum content
FrontAccounting forum
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
Active topics Unanswered topics
Search options (Page 206 of 247)
Topics by apmuthu User defined search
Posts found: 5,126 to 5,150 of 6,167
Are you referring to lines 674 to 685 in includes/ui/ui_input_inc.php :
function file_cells($label, $name, $id="")
{
if ($id != "")
$id = "id='$id'";
label_cells($label, "<input type='file' name='$name' $id />");
}
function file_row($label, $name, $id = "")
{
echo "<tr><td class='label'>$label</td>";
file_cells(null, $name, $id);
echo "</tr>\n";
}
If so, then an optional extra parameter (with any as default if omitted for backward compatibility) for various file type groups can be introduced to avoid any more functions.
What platform are you on (windows/xampp, Linux/Debian/Apache, etc)?
Have you checked the file and folder permissions?
Have you looked for errors in your apache error log?
Attached is the updated file set since the v2.3.21 release.
Joe -> does this need to make it to the core?
includes/archive.inc
text cart extension in FA can do the import / export.
In the file includes/db/connect_db.inc inside the said function db_fetch_assoc ($result) precede the line:
return mysql_fetch_assoc($result);
with
if (is_bool($result) === true && $result === false) return false;
Are you trying to invoice a service item (no inventory) as a normal item (inventory) without setting up stock quantity?
You can either use the PDFCreator or such PDF driver to print from the screen to PDF or modify the appropriate reporting/repXXX.php file to do your bidding.
Upgrade to v2.3.21 and then modify the changes in the first post in this thread to suit the current version of the files that need to be changed.
The devs were expected to have made it into an extension by now.
Also check the db user privileges for the database tables.
Modifying the sql backup and restoring it could have also done the trick.
Sorry you had to wait so long for your solution. It's nice that you have shared your solution despite the delayed response from the FA Forum users who are generally quite quick to assist. Welcome to the FA fraternity.
Such a modified report to be Inventory Item Reorder Level List is a candidate for the FA core.
The said extension has some security issues listed in one of the posts in the forum I partook of and my version after some fixes is available at my Unofficial GitHub repo.
How it affects the audit trail and other tables need to be verified.
Creatively using FA as different "company" instances using the same db tables but only a subset as views named using a different prefixes may be an "involved" solution...... and suppressing the ability to add records of a master nature in user instances.
YMMV as some extensions are old and some need extra db privileges.
The exchange rates table is where you would need to manually put in such data but how would that be useful since you will not be entering any transactions for that period?
This needs to be addressed in the core!
It will need the db user to have trigger and some other privileges as well I think.
ECB does not have SAR:
http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml
Best is to make a single non-normalised table of all the transactions in an excel sheet like manner from the old program and then in FA use a subset of the data for the textcart extension and import them in!
If the excel sheet is standardized and and FA Import extension is made for it, that would be great!
If you wish to do it manually on a staged site, send me your existing version number and what extensions you are using and then provide a sql and web dump - pm me. Upgrade will not be straightforward and it s possible your data may get mangled. The config file too will need some new variables although the devs have taken good care to make it backward compatible.
Any chance of hacking it into the core?
Some posts in the forum indicate it was used for a desktop version of FA.
Posts found: 5,126 to 5,150 of 6,167