Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stop Warning: date() [function.date]: from localhost

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 ............

There are many web applications that spring up this particular error. I could set

date_default_timezone_set('America/Los_Angeles');

But that is not the solution I am looking for.

Can I do something from system level. It happens only on LOCALHOST not on the actual production server.

Default set in php.ini is date.timezone = America/Los_Angeles

[update] edited php.ini

Warning: phpinfo() [function.phpinfo]: 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

like image 613
X10nD Avatar asked Jan 02 '12 19:01

X10nD


3 Answers

The reason it is happending on one server and not the other is the php.ini setting date.timezone=.

You would still need to pick an actual value though. You assuredly don't have one. Or in the wrong php.ini version (there's one for CLI and one for mod_php).

like image 170
mario Avatar answered Nov 10 '22 21:11

mario


As the other posters have mentioned, setting date.timezone in the php.ini file is the way to go. If you are still seeing the error about needing to set it, did you restart your web server (apache, IIS, etc) after setting the php.ini?

Also, the warning from phpinfo means the rest of the output should still be showing. Make sure you're editing the correct php.ini file according to the phpinfo() output.

That will likely get you working as you'd like.

like image 33
David Stockton Avatar answered Nov 10 '22 21:11

David Stockton


to remove this warning from your project

There are 2 ways to do so...

1) date_default_timezone_set('Asia/Kolkata'); include this file in your index.php file This will work only for your current project

2) date_default_timezone_set('Asia/Kolkata'); or inlude this file in your php.ini file This will work for every project

thnx :)

like image 27
Suraj Singh Avatar answered Nov 10 '22 23:11

Suraj Singh