I do have a copy also of the last 24h of activity but inserting this data is a bit messy, so tough cookies.

If anyone feels there was anything super important in any of this data that you would like to recover, send me an email.
Naw. But anyway maybeMichael Jordan wrote:It looks like Arnold Layne bumped 30 threads from 6 or 7 years ago.(2 times in a row) Maybe it's his fault.
Code: Select all
UPDATE phpbb_posts AS p, phpbb_topics AS t
SET t.topic_status = 1
WHERE p.post_id = t.topic_last_post_id
AND FROM_UNIXTIME(p.post_time) + INTERVAL 12 MONTH < NOW()
AND t.topic_status = 0
Success, 3807 row(s) affected. ( Query took 0.0615 sec )
Ah! That's why, thanks for the info JensJensJohansson wrote:The forum database became corrupt in some mysterious way, and I had to go back to a snapshot which was 24 hours in the past. Thus, basically anything that happened the last 24 hours is not visible anymore.
Does this lock topics older than 1 year?JensJohansson wrote:Code: Select all
UPDATE phpbb_posts AS p, phpbb_topics AS t SET t.topic_status = 1 WHERE p.post_id = t.topic_last_post_id AND FROM_UNIXTIME(p.post_time) + INTERVAL 12 MONTH < NOW() AND t.topic_status = 0 Success, 3807 row(s) affected. ( Query took 0.0615 sec )
NeverendingAbyss wrote:
WTF?! And ElysiumNeonVomit wrote:Ok, no I haven't even been on the forum in about a week or so, nothing important lost.