баг с сохранением timezone.

TrueStory

Бородатый Админчег
Регистрация
30 Апр 2015
Сообщения
194
Реакции
74
Подскажите где ровно прописать timezonе для php в Centos чтобы работало на всем сервере, /etc/php.ini и юзерские php.ini эффекта не дают.
 
Код:
$ sudo mv /etc/localtime /etc/localtime.bak

Код:
$ sudo ln -s /usr/share/zoneinfo/America/Chicago /etc/localtime
 
Код:
$ sudo mv /etc/localtime /etc/localtime.bak

Код:
$ sudo ln -s /usr/share/zoneinfo/America/Chicago /etc/localtime
не помог и симлинк.
вот ошибки такого рода

Warning: date:)( It is not safe to rely on the system's 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 -i | grep php.ini

Код:
php -i | grep date.timezone
 
в php.ini (find /etc -name 'php.ini')
Добавьте
date.timezone = Europe/Moscow
 
Назад
Сверху