Hello smartin,
Fixing this is quite easy.
-
You have to open your php.ini (in my Debian Lenny server, this file is located in /etc/php5/apache2/php.ini)
-
You search for the string : ;date.timezone =
-
The symbol “;” means that the string is commented, you delete the “;” and you add a valid timezone (mine is Europe/Zurich), so the string is now : date.timezone = Europe/Zurich
-
Restart the apache server (on Debian, with the command as root : /etc/init.d/apache2 restart
The message has gone, and you have now the following message : Vérification de php.ini: date.timezone set and not “System/Localtime”: ini_get(‘date.timezone’)=‘Europe/Zurich’ in green.
Hope it helps.
PS - Sorry English is not my mother tongue.