For the unread posts turn off Speed brain in Cloudflare, it's new feature they added on Sept. 25 and deployed on as default. There is topic I started about it here:
viewtopic.php?t=2657146
You can reset the topic tracking to one year with this SQL. Any topic with last post older than one year will be marked as read whether they read it or not:
viewtopic.php?t=2657146
The Speed brain isue should not create this issue, make sure you don't have any caching of content activated on CF other than default. Same thing server side.Another problem I have which happened in the same time is wrong post showing on the board index as last post in a board. For example board index show last post was written 2 hours ago, when there were posts written 5 minute ago.
You can reset the topic tracking to one year with this SQL. Any topic with last post older than one year will be marked as read whether they read it or not:
Code:
DELETE FROM phpbb_topics_track WHERE mark_time< UNIX_TIMESTAMP(DATE_SUB(CURDATE(), INTERVAL 1 YEAR));DELETE FROM phpbb_forums_track WHERE mark_time< UNIX_TIMESTAMP(DATE_SUB(CURDATE(), INTERVAL 1 YEAR));UPDATE phpbb_users SET user_lastmark=UNIX_TIMESTAMP(DATE_SUB(CURDATE(), INTERVAL 1 YEAR)) WHERE user_lastmark<UNIX_TIMESTAMP(DATE_SUB(CURDATE(), INTERVAL 1 YEAR)) AND user_id != 1;
Statistics: Posted by thecoalman — Wed Oct 09, 2024 9:04 pm