Administrator
- Join Date:
- Sep 2009
- Location:
- Stuart, FL
- Posts:
- 14,065
- Plugin Contributions:
- 56
Camelot-Hosting down?
Echoing DrByte's comment, if you look at the details of the log:
[10-Jul-2017 16:10:43 UTC] PHP Fatal error: 1292:Incorrect datetime value: '' for column 'last_modified' at row 1 :: insert into so_payments (orders_id, payment_number, payment_name, payment_amount, payment_type, date_posted, [B]last_modified[/B]) values ('4704', '4704-', 'My Name', '8.24', '', '2017-07-10 16:09:33',[B] ''[/B]) ==> (as called by) /home/xxxxxxxx/public_html/MY_ADMIN/includes/functions/database.php on line 53 <== in /home/xxxxxxxx/public_html/includes/classes/db/mysql/query_factory.php on line 155
... you'll see that the last value (last_modified), which is most likely a datetime field, is being set to an empty string ('') which is being kicked-out by those updated SQL rules. A real time like now() would be better than ''
IIRC, the so_payments table is part of super-orders code.