Time Zone problems on international systems

From IVS Wiki
Revision as of 12:30, 8 March 2024 by IVSWikiBlue (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

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

3. Restart the apache2 service after making edits by entering the following:

sudo service apache2 restart