MyBB Community Forums

Full Version: Change the date of certain thread?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have updated the dateline in the mysql database regarding a certain thread as follows:

UPDATE mybb_threads SET dateline = 1473951804 WHERE tid = 29;

in order to change the date back to a certain date of 2016.

But it seems there is no change of the date of that thread.

Why?

Thank you for help.
You must change the date of the first post too: update mybb_posts set dateline=1473951804 where pid=(select firstpost from mybb_threads where tid=29)
And think to recount/rebuild from ACP.
(2019-09-18, 11:26 AM)Crazycat Wrote: [ -> ]You must change the date of the first post too: update mybb_posts set dateline=1473951804 where pid=(select firstpost from mybb_threads where tid=29)
And think to recount/rebuild from ACP.
It really works.
Thanks very much. ^_^