How can I change the time zone in CakePHP? My application uses the Indian time zone but it is hosted on a US server which takes a US time zone. Can anyone tell me how I can change the time zone?

link|improve this question

0% accept rate
THANKS BUT.,RIGHT NOW I MY APLICATION ON LOCALHOST AND I USE INDIAN TIME ZONE BUT I CANT CHANGE USING THIS METHOD IS NOT WORKING NOW.. – Dilip Godhani Mar 12 '10 at 10:57
3  
WHY ARE YOU SHOUTING AT US?!?!?!?! – sibidiba Mar 12 '10 at 12:55
feedback

1 Answer

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

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

edit: try add this in your app/config/bootstrap.php

putenv('TZ=YourTimeZone');
link|improve this answer
also change that but it is not working..! – Dilip Godhani Mar 18 '10 at 9:26
I try that also but not working now...! – Dilip Godhani Apr 10 '10 at 8:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.