03-03-2017, 02:09 PM
Ok. Something is weird. TimeZone is being set on line 85 of the init.phpm not 64. See if your init.php looks like this or if you're missing a big chunk of it. Compare yours with the one I posted in the hastebin file above. If everything's good there...
Your server must be configured differently than pretty much any one I've come across. Here are some steps for you...
Open your server's php.ini and make sure there's not a semicolon (php ti in front of the date.timezone.
Go ahead and set your timezone in there while you're at it. Here are a list of the php timezones-click on your area to displa them.
http://php.net/manual/en/timezones.php
You can also try putting this (with your timezone) at the top of the init.php on line 3.
ini_alter('date.timezone','Asia/Calcutta');
Your server must be configured differently than pretty much any one I've come across. Here are some steps for you...
Open your server's php.ini and make sure there's not a semicolon (php ti in front of the date.timezone.
Code:
;date.timezone=Europe/Berlin
Go ahead and set your timezone in there while you're at it. Here are a list of the php timezones-click on your area to displa them.
http://php.net/manual/en/timezones.php
You can also try putting this (with your timezone) at the top of the init.php on line 3.
ini_alter('date.timezone','Asia/Calcutta');