I had a problem with the server just having the wrong time and I got tired of asking the Hosting Company to fix it so i did some digging. Look in the /admin/function.php file and look for this:
Quote:
// ###################### Start vbdate #######################
function vbdate($format,$timestamp) {
global $bbuserinfo,$timeoffset;
return date($format,$timestamp+($bbuserinfo['timezoneoffset']-$timeoffset)*5400);
|
That last line was 3265 for me. where you see 5400, it was originally 3600, I just added 1800 to it which is 30 minutes, which is how much my time was off. this fixed everything with that one change.