Fatal error in log -

Hi,

I have a lot of Fatal error messages in log.
Messages are:
Doctrine\DBAL\Exception\InvalidFieldNameException: An exception occurred while executing 'SELECT class, entity, events FROM oc_flow_operations WHERE events <> ? GROUP BY class, entity, events’ with params ["[]"]: SQLSTATE[42S22]: Column not found: 1054 Unknown column ‘events’ in ‘field list’.

But in DB I think that is good:
±—±---------------------------------±-------±-------±----------±-------+
| id | class | name | checks | operation | entity |
±—±---------------------------------±-------±-------±----------±-------+
| 1 | OCA\FilesAccessControl\Operation | NOSYNC | [1,2] | deny | NULL |
±—±---------------------------------±-------±-------±----------±-------+

Can someone help me ?

Thanks

1 Like

Please, could you consider to add some more information, like:

  • Nextcloud version (eg, 20.0.5):
  • Operating system and version (eg, Debian 10.7):
  • Apache or nginx version (eg, Apache 2.4.38):
  • PHP version (eg, 7.3.19):

This may ease the troubleshooting, I presume.

Happy hacking.
:sunflower:

Yes, here is information:

  • Nextcloud version: 20.0.5

  • Operating system and version CentOS: 7.9.2009

  • Apache version: Apache/2.4.6

  • PHP version 7.4.12

Hi,
have you got some solution, please ?

No expert…

But the column missing is the “events”…

Just add the missing column

THis worked for me…

alter table oc_flow_operations add events varchar(256) default NULL;