failed_queries contains errors / Tabel event_modifications
Brought to you by:
tuxmonkey
Some logrecords are not stored in the table
event_modifications.
See the file failed_queries in the LOG directory.
Typical failure:
INSERT INTO event_modifications
(eid,modified,changes,userid) VALUES
('1','1089364208',NULL,'5');
The value Changes is here NULL
but if you look into the table event_modifications you
notice that NULL is not accepted as valid value.
Solution:
Change the
MySQL table event_modifications
Field Changes
to accept NULL
(or does somenone wants to chenge the code to not
write NULL to this file)
regards l.roovers@hccnet.nl