【エラー内容】
Smarty内のクラスで使っているstrftime()
が使えません、という内容。
PHP Warning: strftime(): 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.
【対処】
strftime()
を使っているメソッドの最初でdate_default_timezone_set("Asia/Tokyo")
を実行する。