It is not safe to rely on the system's timezone settings.

PHP Warning: date(): It is not safe to rely on the system's timezone settings.

原因はタイムゾーンが設定されていない事らしいので、以下設定
[php.ini]

[Date]
; Defines the default timezone used by the date functions
; http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone
;date.timezone =
date.timezone = "Asia/Tokyo"

これでWarningは出なくなりました。