Thanks! I am getting the error "date.timezone setting must be set
Set the "date.timezone" setting in php.ini* (like Europe/Paris)." Where can I set the timezone?
Cheers, thanks.
Hello bitcoinbling,
it really depends on your environment.
You can set in your
php.ini adding
date.timezone="Europe/Paris"
or in your
virtualhost configuration adding inbetween
php_value date.timezone "Europe/Paris"
or adding in your
index.php just after
ini_set('date.timezone', 'Europe/Paris');
Hope this solves your issue,
Let us know if it works for you.
Thank you,
Cheers