timezone

Hi

I try to initialize time for my customers in Turkey :

I set timezone on my linux server and it’s correct , after that I use this liittle php code :
<?php
date_default_timezone_set(“Etc/GMT-3”);
echo date(‘r’);
?>
İt’s also correct.

In sc8 when running in my development area I can see the correct time but when after deploying and running on prod it’s not correct ??

Is there anything else to do on prod ?
Thanks for your help

Nac

Did you solve this problem? I have the same issue!

Finally, I solved this within php.ini :

Find your php.ini and open it with an editor
Find the word “timezone”

change for Istanbul : date.timezone = Europe/Istanbul (or Asia/Amman UTC +3)

save and restart apache server

THX perfect!!!