Memo: How to change the TimeZone on your concrete5 site
Permalink 10 users found helpful
I had to install multiple concrete5 onto one server which caters to different regions (Japan and Los Angeles).
So I want to set one site's time zone to Japan, and I want another site time zone to Los Angeles.
Tested with concrete5.3.3.1,
After the installation, go to /config/site.php
And add the following line
==============================
define('APP_TIMEZONE', 'America/Los_Angeles');
==============================
And then, your concrete5 default time zone will be set to that time zone.
For the list of time zone's name ... check here
http://php.net/manual/en/timezones.php...
Cheers.
--
So I want to set one site's time zone to Japan, and I want another site time zone to Los Angeles.
Tested with concrete5.3.3.1,
After the installation, go to /config/site.php
And add the following line
==============================
define('APP_TIMEZONE', 'America/Los_Angeles');
==============================
And then, your concrete5 default time zone will be set to that time zone.
For the list of time zone's name ... check here
http://php.net/manual/en/timezones.php...
Cheers.
--