Smartlab Software logo

WHMCS - Setting the timezone

WHMCS was using PHP's default timezone instead of the server's timezone. PHP's default timezone is set to UTC.

In the whmcs configuration file, add this at the end of the file, just before ?> if it exists.

date_default_timezone_set('America/Los_Angeles');

***