How do i change time zone , or deal does not start on time
Only applicable on V2.2 and earlier.V3/V4 Script users should not use this tutorial.
This is due to time zone difference.
You can modify script in few secs to work it in your time zone
to do so.
goto include/application.php
Line 55-57
/* date_zone */
if(function_exists(‘date_default_timezone_set’)) { date_default_timezone_set(‘Asia/Shanghai’); }
/* end date_zone */
Change Asia/Shanghai to any time zone you want
America/Los_Angeles
Europe/Paris
Or you can check compete list of time zones here.
http://www.php.net/manual/en/timezones.php
Thanks