Difference between revisions of "How can I change the timezone that PHP is using?"

From Acenet Knowledgebase
Jump to: navigation, search
(test)
 
(test)
Line 3: Line 3:
 
<br />(<em>replacing </em><strong><span style="color: #ff0000;">TIMEZONE</span></strong> <em>with your desired timezone</em>)<br /><br />Here is an example of a properly configured setting:<br /><br />
 
<br />(<em>replacing </em><strong><span style="color: #ff0000;">TIMEZONE</span></strong> <em>with your desired timezone</em>)<br /><br />Here is an example of a properly configured setting:<br /><br />
 
<div class="code_style">date.timezone = "America/Detroit"</div>
 
<div class="code_style">date.timezone = "America/Detroit"</div>
<br />You can find your timezone at the PHP website:<br /><br /><a href="http://www.php.net/manual/en/timezones.php">http://www.php.net/manual/en/timezones.php</a></html> [[Category:PHP]]
+
<br />You can find your timezone at the PHP website:<br /><br /><a href="http://www.php.net/manual/en/timezones.php">http://www.php.net/manual/en/timezones.php</a></html> [[Category:Technical Support FAQ]]

Revision as of 19:34, 28 September 2012

You can change the timezone that PHP is using by using a custom php.ini file. More details on custom php.ini files can be found here:

How can I change PHP settings?

Here is the setting you will want to use:

date.timezone = "TIMEZONE"

(replacing TIMEZONE with your desired timezone)

Here is an example of a properly configured setting:

date.timezone = "America/Detroit"

You can find your timezone at the PHP website:

http://www.php.net/manual/en/timezones.php