Hi; I have just recently noticed that the error_log files in ALL active subdirectories of my site are adding a new line every single, freakin' time a .php page is called!
Each line reads like so (with the correct time/date):
[16-May-2013 14:13:12 America/Los_Angeles] PHP Warning: Module 'timezonedb' already loaded in Unknown on line 0
...I have been working on a bunch of new stuff, but this is even happening in old parts of the site that have not been touched.
I contacted the host provider support board and was advised to add the following line to my .htaccess file
date.timezone = America/Chicago
(I don't think I have ever edited in 5+ years of using this host)
I added that line...which completely disabled my site. So I found that the apparent correct syntax is actually:
SetEnv TZ America/Chicago
...which allowed my site to work once again (phew!)
The error messages are now conveniently tagged with a correct Central timezone stamp, a la:
[16-May-2013 16:48:36 America/Chicago] PHP Warning: Module 'timezonedb' already loaded in Unknown on line 0
I am suspecting this has something to do with a bug in the server's installation or configuration of .php (and therefore I will not be able to fix the constant creation of these error messages). But I am open to suggestion.
If it DOES look like a server-based glitch that the "powers that be" must fix does anybody here know anything specific I can suggest that these folks look at?
Thanks.