How to change the time zone in CakePHP?

How to change the time zone in CakePHP? My application uses the Indian time zone, but it is hosted on an American server, which occupies the US time zone. Can someone tell me how can I change the time zone?

+5
source share
3 answers

You can set the time zone in /app/config/core.php:

date_default_timezone_set('YourTimeZone')    //php5.3 is required

edit: try adding this to your application /config/bootstrap.php

putenv('TZ=YourTimeZone');
+9
source

Set time zone in app / config / core.php

Configure::write('Config.timezone', 'Europe/Paris')
+2
source

Set the time zone in the application /Config/bootstrap.php(Cakephp 2.6 +)

date_default_timezone_set ('Europe / Dublin');

0
source

All Articles