Jim Cooper:I've received the same message under similar conditions and I'm wondering if you were able to resolve the problem yourself.
Thanks
I was having this issue, and corrected it by adjusting my php.ini with my timezone. :)
Keep in mind that by default the line is commented out in the ini, so you need to uncomment and define your location.
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
;date.timezone =
To:
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = America/New_York
Note that there are no quotes around America/New_York. That should wrap up the issues you're having.