05-29-2018, 03:25 AM,
|
|
alanmi3833
Member
 
|
Posts: 47
Threads: 16
Joined: May 2018
|
|
Upgrade to 4.15 from 4.14.1
I copied the new 4.15 under my htdocs, but when I run it, not all reports work.
For instance running the tax report give me the following error, which are not present in 4.14.1
running XAMPP under windows
Quote:The petty cash transaction details could not be retrieved because Table 'weberp.pcashdetailtaxes' doesn't exist
Back to the menu
SELECT supptrans.trandate, supptrans.type, systypes.typename, supptrans.transno, suppliers.suppname, supptrans.suppreference, supptrans.ovamount/supptrans.rate AS netamount, supptranstaxes.taxamount/supptrans.rate AS taxamt FROM supptrans INNER JOIN suppliers ON supptrans.supplierno=suppliers.supplierid INNER JOIN systypes ON supptrans.type=systypes.typeid INNER JOIN supptranstaxes ON supptrans.id = supptranstaxes.supptransid WHERE supptrans.trandate >= '2018-04-01' AND supptrans.trandate <= '2018-04-30' AND (supptrans.type=20 OR supptrans.type=21) AND supptranstaxes.taxauthid = '14' ORDER BY supptrans.id
Regards
Alan
|
|
05-29-2018, 04:22 AM,
|
|
alanmi3833
Member
 
|
Posts: 47
Threads: 16
Joined: May 2018
|
|
RE: Upgrade to 4.15 from 4.14.1
Thank you Tim, that did the trick.
Ran the sql manually and then when I logged on again the system want to do a database upgrade, so ran it and now my version number on the footer are also correct.
Thanks again.
Regards
Alan
|
|
05-29-2018, 04:39 AM,
(This post was last modified: 05-29-2018, 07:37 AM by TurboPT.)
|
|
TurboPT
Administrator
      
|
Posts: 727
Threads: 10
Joined: Jun 2012
|
|
RE: Upgrade to 4.15 from 4.14.1
That was likely my 'goof' Tim.
Exson had pointed out that the version in ConnectDB.inc file was not updated to 4.15 (from 4.14.1) in the release cut.
(there were two files in one of the 'release checklist' steps, which I evidently overlooked the first one mentioned, so I split that step into two)
So, I'm working on a 4.15.1 to include that, plus another install/index.php update that seems to rollback a portion of apmuthu's change from early April.
Also, I'm testing a clean-install, and using the installer, I'm having trouble understanding why only 80 tables to the weberp database are written, but the rest are not. This has been repeated several times. As the installer continues, all 157 tables to the weberpdemo DB do get installed every time.
Even though SET FOREIGN_KEY_CHECKS = 0; is in the script, the tables that have FOREIGN KEY entries are the ones that are NOT created. However, if I run that same default.sql script at the command line (not using the installer), everything gets created as expected.
There are no errors in the apache or mysql logs as the installer runs, so I'm not sure what is going on here, any ideas?
I have MariaDB 10.0.34
|
|
|