MyBB Community Forums

Full Version: Change Date & Time of a Thread / Post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I wanted to find out is there a plugin or way to change the Date & Time of a Thread / Post?

In the DB, there is the below format

Dateline
1638385464
1638386476


I want to do a drip feed of content.

Thanks
There's no human-readable date/time within MyBB.
This timestamp is the only source that needs to be converted.

E.g. use a UNIX Timestamp converter:
https://www.unixtimestamp.com/

To update the dateline filed, you can try this SQL function to auto-convert a date:
UPDATE mybb_posts SET dateline = UNIX_TIMESTAMP("2022-02-01") WHERE ...;

[ExiTuS]
Thanks ExiTuS,

That info helped a lot.