Not Solved [General] Change Date & Time of a Thread / Post
#1
Not Solved
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
Reply
#2
Not Solved
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]
Reply
#3
Not Solved
Thanks ExiTuS,

That info helped a lot.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)