Dealing with PHP 5.3 Timezone Errors: Difference between revisions

From Acenet Knowledgebase
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:
</syntaxhighlight>
</syntaxhighlight>


There are two ways to handle this.  Either edit your local local php.ini file, or edit your index.php file.
There are two ways to handle this.  Either edit the local php.ini file, or edit your index.php file.
 
More details on custom php.ini files can be found here:
 
[[How can I change PHP settings?]]
 


====Edit your local php.ini file====
====Edit your local php.ini file====
Line 18: Line 13:


<syntaxhighlight lang="bash">date.timezone = "America/Detroit"</syntaxhighlight>
<syntaxhighlight lang="bash">date.timezone = "America/Detroit"</syntaxhighlight>
More details on custom php.ini files can be found here:
[[How can I change PHP settings?]]


====Edit your index.php file====
====Edit your index.php file====

Revision as of 10:59, 13 January 2013

PHP 5.3 requires that you set the timezone setting within PHP, and not use the system timezone settings. The error may look similar to the following:

<syntaxhighlight lang="bash"> Warning: strftime() [function.strftime]: 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. </syntaxhighlight>

There are two ways to handle this. Either edit the local php.ini file, or edit your index.php file.

Edit your local php.ini file

Locate your local php.ini file, and add the following line to it:

<syntaxhighlight lang="bash">date.timezone = "America/Detroit"</syntaxhighlight>

More details on custom php.ini files can be found here:

How can I change PHP settings?

Edit your index.php file

Add the following line to your index.php file, just under the php tag near the top of the file:

<syntaxhighlight lang="bash">date_default_timezone_set('America/Detroit'); </syntaxhighlight>

Locating your local TimeZone name

You can find the official name of your timezone by visiting the PHP website:

Timezones at php.net