У меня есть проект Symfony2. Я обновил свой php до 5.5.7 сегодня, и с тех пор я получаю
Warning: date_default_timezone_get(): It is not safe to rely on the system timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in...
Я настраиваю часовой пояс по умолчанию на моем php.ini
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = "Europe/Paris";
Чтобы убедиться, что это хороший php.ini, я проверял с помощью
phpinfo();
И путь, который я получаю, - это тот, который я изменяю:
/usr/local/php5.5.7/lib
Но там я вижу
Default timezone UTC
Что странно.
любая идея? Спасибо.