MyBB Community Forums

Full Version: how can change Registration Date???
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I make forum on 04-01-2014, but i don't know why my Registration Date 01-01-1970

How i can change it? Please help me
Thanks
01-01-1970 is called the Unix epoch. It's the date where they started counting the Unix time.... This means that your server returned a zero/null result for timestamp....

Run this query in PHPMyAdmin on your cPanel....

UPDATE `mybb_users` SET `regdate`='X' WHERE `uid`='Y'

X = UNIX TimeStamp of your join date (DO NOT enter actual date like 11252014 - see this site for converter)
Y = Your user ID