slovictory wrote:
I am using PHP 5.3.4 on a LAN based os x server. I can grant you access if it helps.
This is a Joomla issue:strtotime
You will get a warning like this:
Strict standards: 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 'Europe/Paris' for '2.0/DST' instead in filepath on line linenumber
The solution is to set date.timezone in php.ini:
[Date]
; Defines the default timezone used by the date functions
date.timezone = "Europe/Brussels"
Check the full info here ->
http://ezpedia.org/en/project/php5_technical_notes
and contact your hosting provider to help you sort this out.