diff options
-rw-r--r-- | Changelog | 3 | ||||
-rw-r--r-- | INSTALL | 8 | ||||
-rw-r--r-- | UPGRADE | 3 | ||||
-rw-r--r-- | doc/release_notes | 12 |
4 files changed, 15 insertions, 11 deletions
@@ -5,6 +5,9 @@ Changelog for 1.2.4 * Fixed inconsistant error when setting to recur 0 times (Chris T) * Fixed Access Denied when sending email (CHris T) * Added Makefile.PL as optional means of dependency checking (experimental, Chris T) +* Updated INSTALL file to use correct globaldbh syntax (Chris T) +* Updated UNGRADE file to recommend reading INSTALL first (Chris T) + Changelog for 1.2.3 * Corrected per-user locale selection (Seneca) @@ -305,9 +305,11 @@ DBConnect: dbi:Pg:dbname=ledgersmb;host=localhost;port=5432 And that section of ledger-smb.conf looks like: [globaldb] -DBConnect: dbi:Pg:dbname=ledgersmb;host=localhost;port=5432 -DBUserName: ledgersmb -DBPassword: MYROLEPASSWORD +DBname = ledgersmb +DBhost = localhost +DBport = 5432 +DBUserName = ledgersmb +DBPassword = MYROLEPASSWORD OTHER ISSUES: @@ -17,6 +17,9 @@ Before you begin, make sure that you are running at least PostgreSQL 8.0. If you are running a prior version, you will need to dump your data, upgrade the database server and restore the data before proceeding. +You may want to review the INSTALL file as well, as common troubleshooting +information and more detail may be found there. + MANUAL UPGRADE: =============================================================================== diff --git a/doc/release_notes b/doc/release_notes index 5e32f3f6..8ce613ef 100644 --- a/doc/release_notes +++ b/doc/release_notes @@ -167,12 +167,8 @@ include a description of what you are trying to accomplish. KNOWN ISSUES: ============================== -Invoice and order data entry screens display incorrect total. Correct amount -is posted to the database, and invoices print properly, however. This is a -display problem only. A fix is expected to be available from the development -team shortly after this version is released but will not not have been through -full testing and this bug is not considered to be as severe as the -bugs that are fixed in this release. You can either upgrade to the latest svn -release in branches/1.2 or you can email a request to the list for the fix. - +The POS printing system gives an access denied message because the printer +triggers the directory transversal checks. To work around this problem, ensure +that you do not need to use absolute paths for the printer program (use lpr or +put netdirect.pl in /usr/local/bin and reference without the full path). |