Flux cp date time problem

Set your PHP installation timezone properly:

1.- php -i | grep 'php.ini'

2.- Open the file you get in the output with your favourite text editor

3.- Search for timezone, most likely no entry will be found, add at the bottom:  date.timezone = "My/TImezone"

For a list of supported Timezones reffer to http://php.net/manual/en/timezones.php

 
in your config/application.php

try this as an example 'DateDefaultTimezone'  => 'Asia/Manila',

just change it to your desired time zone

 
Last edited by a moderator:
Back
Top