Page 1 of 1

Update error

Posted: Thu Jan 20, 2022 9:49 pm
by steven
Hi,

I get this when I try to run Update...
bug.PNG
bug.PNG (15.76 KiB) Viewed 736 times
Has anyone had the same problem (I'm using PHP 8).

This is the database I was trying to update... (I hadn't run it for a long time.)

[File removed]

Steven

Re: Update error

Posted: Thu Jan 20, 2022 10:45 pm
by kev1n
Hi Steven,

Are you using the latest form Github?

DB Version: V.4.5-2022.01.20.01
Files Version: V.4.5-2022.01.20.06

Re: Update error

Posted: Thu Jan 20, 2022 11:02 pm
by kev1n
zzzzsys_report_data and zzzzsys_run_list are supposed to be views but in your db, they are tables.

Drop them before running the update:

Code: Select all

DROP TABLE `zzzzsys_report_data`;
DROP TABLE `zzzzsys_run_list`;

Re: Update error

Posted: Fri Jan 21, 2022 2:16 am
by steven
Thanks man!
It worked.