class.phpmailer.php Warning: date() [function.date]:

2010-05-22 Thread Fbsd1
Running Apache-1.3.41_1 PHP5-5.2.12 I did not get this message, which I 
now get running Apache/2.2.15 (FreeBSD) PHP/5.3.2

Is their way to stop this?

Warning: date() [function.date]: It is not safe to rely on the system's 
timezone settings. You are *required* to use the date.timezone setting 
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 'Asia/Manila' for 
'PHT/8.0/no DST' instead in /usr/local/website/mlsax/class.phpmailer.php 
on line 1406

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: class.phpmailer.php Warning: date() [function.date]:

2010-05-22 Thread Amitabh Kant
On Sun, May 23, 2010 at 6:14 AM, Fbsd1 fb...@a1poweruser.com wrote:

 Running Apache-1.3.41_1 PHP5-5.2.12 I did not get this message, which I now
 get running Apache/2.2.15 (FreeBSD) PHP/5.3.2
 Is their way to stop this?

 Warning: date() [function.date]: It is not safe to rely on the system's
 timezone settings. You are *required* to use the date.timezone setting 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 'Asia/Manila' for 'PHT/8.0/no DST'
 instead in /usr/local/website/mlsax/class.phpmailer.php on line 1406


Somewhere on top of your script, set the time zone:

date_default_timezone_set('Asia/Manila');


With regards

Amitabh
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: class.phpmailer.php Warning: date() [function.date]:

2010-05-22 Thread Nerius Landys
 Running Apache-1.3.41_1 PHP5-5.2.12 I did not get this message, which I now
 get running Apache/2.2.15 (FreeBSD) PHP/5.3.2
 Is their way to stop this?

 Warning: date() [function.date]: It is not safe to rely on the system's
 timezone settings. You are *required* to use the date.timezone setting 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 'Asia/Manila' for 'PHT/8.0/no DST'
 instead in /usr/local/website/mlsax/class.phpmailer.php on line 1406


 Somewhere on top of your script, set the time zone:

 date_default_timezone_set('Asia/Manila');

In my opinion a better idea is to address this issue directly in your
php.ini file, which will very likely be /usr/local/etc/php.ini .  My
php.ini file has these lines:

;;;
; Module Settings ;
;;;

[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = America/Los_Angeles
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: class.phpmailer.php Warning: date() [function.date]:

2010-05-22 Thread Fbsd1

Nerius Landys wrote:

Running Apache-1.3.41_1 PHP5-5.2.12 I did not get this message, which I now
get running Apache/2.2.15 (FreeBSD) PHP/5.3.2
Is their way to stop this?

Warning: date() [function.date]: It is not safe to rely on the system's
timezone settings. You are *required* to use the date.timezone setting 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 'Asia/Manila' for 'PHT/8.0/no DST'
instead in /usr/local/website/mlsax/class.phpmailer.php on line 1406



Somewhere on top of your script, set the time zone:

date_default_timezone_set('Asia/Manila');


In my opinion a better idea is to address this issue directly in your
php.ini file, which will very likely be /usr/local/etc/php.ini .  My
php.ini file has these lines:

;;;
; Module Settings ;
;;;

[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = America/Los_Angeles





Created php.ini with this and things work again.
 [Date]
 ; Defines the default timezone used by the date functions
 date.timezone = Asia/Manila

Thanks

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org