14
One more thing may be of use to php-5.3.x users:
in EXTcal module I got an error about
Quote:
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings
All you need to do is open the file ( /extcal/calendar-month.php ) and add right after the
just this:
date_default_timezone_set('UTC'); //TZ for php 5.3.x
the UTC depends on your time-zone ....
look heresame goes to /year.php , /day.php , week.php , calendar-week.php ....
hope someone will benefit this ...