Difference between revisions of "Time Zone problems on international systems"

From IVS Wiki
Jump to: navigation, search
Line 1: Line 1:
 
Time zones may need to be set manually in the following two files:
 
Time zones may need to be set manually in the following two files:
  
Edit this file by entering the following: <pre>sudo nano /etc/<php_ver>/cli/php.ini</pre>
+
#: Edit this file by entering the following: <pre>sudo nano /etc/<php_ver>/cli/php.ini</pre>
  
 
  [Date]
 
  [Date]
Line 8: Line 8:
 
  date.timezone = Asia/Kolkata
 
  date.timezone = Asia/Kolkata
  
Edit this file by entering the following: <pre>sudo nano /etc/<php_ver>/apache2/php.ini</pre>
+
#: Edit this file by entering the following: <pre>sudo nano /etc/<php_ver>/apache2/php.ini</pre>
  
 
  [Date]
 
  [Date]
Line 15: Line 15:
 
  date.timezone = Asia/Kolkata
 
  date.timezone = Asia/Kolkata
  
Restart the apache2 service after making edits by entering the following: <pre>sudo service apache2 restart</pre>
+
#: Restart the apache2 service after making edits by entering the following: <pre>sudo service apache2 restart</pre>

Revision as of 10:37, 15 May 2019

Time zones may need to be set manually in the following two files:

  1. Edit this file by entering the following:
    sudo nano /etc/<php_ver>/cli/php.ini
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Asia/Kolkata
  1. Edit this file by entering the following:
    sudo nano /etc/<php_ver>/apache2/php.ini
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Asia/Kolkata
  1. Restart the apache2 service after making edits by entering the following:
    sudo service apache2 restart