PHP5において timezone setting のエラー
OpenPNE稼動時エラー
Warning: strtotime(): It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable 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 'Asia/Tokyo' for 'JST' .....
が表示される場合。
php.ini 最下部に
date.timezone = Asia/Tokyo
を記述。
Warning: strtotime(): It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable 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 'Asia/Tokyo' for 'JST' .....
が表示される場合。
php.ini 最下部に
date.timezone = Asia/Tokyo
を記述。