PDA

View Full Version : [HELP] US server - UK users - posts per day


ched999uk
09-01-2008, 01:16 PM
Hi, I have just taken over a forum and moved it from a UK server to a US server. All is fine apart from the arcade. The Post Per Day requirement is set at 5 and works great apart from it seems to be using server time to determine the number of posts per day. This forum is about a town in UK so its mainly used by UK people.

Is it possible to set the time zone offset for the arcade as you do with vBulletin its self?

MrZeropage
09-03-2008, 06:18 PM
open /arcade/modules/mod_arcade.php

search for$posts_today_time = mktime(0,0,0,date("m"),date("d"),date("Y"));
There it reads the servertime, feel free to manipulate it.

For example to add 6 hours use$posts_today_time = mktime(0,0,0,date("m"),date("d"),date("Y")) + (60*60*24*6);

ched999uk
09-03-2008, 08:13 PM
Brilliant, thanks very much I will do the edit soon.

Thanks.