Computer Programming, Health, Science and Information Technology, Google Adsense, Online Business & Adventure
Posts tagged Zend Server Warning Error
Zend Server and PHP 5.3.2 (It is not safe to rely on the system’s timezone)
Oct 21st
After moving from WAMP Server 2 to Zend Server CE , I get this warning “It is not safe to rely on the system’s timezone settings. You are *required* to use the date.timezone setting”, every time I use this PHP Date function.
If you get the same warning too, you can resolve it by adding
date_default_timezone_set(‘UTC’);
to your index.php file.
Happy Coding…