Tijdens de installatie genereert Symfony deze foutmelding:
[Symfony\Component\Debug\Exception\ContextErrorException]
Warning: date_default_timezone_get(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /Applications/MAMP/htdocs/treehouse/vendor/monolog/monolog/src/Monolog/Logger.php line 233
PHP CLI maakt gebruik van een andere PHP configuratie dan MAMP.
Controleer welke php.ini door PHP CLI wordt gebruikt:
php -i | grep php.ini
Configuration File (php.ini) Path => /etc
Er is dus geen php.ini aanwezig in /etc, we maken daarom een symbolic link naar de php.ini van MAMP:
sudo ln -s /Library/Application\ Support/appsolute/MAMP\ PRO/conf/php.ini /etc/php.ini
Controleren of er nu wel een php.ini wordt gevonden:
php -i | grep php.ini
Configuration File (php.ini) Path => /etc
Loaded Configuration File => /etc/php.ini
Oplossing
In de PHP configuratie moet de date.timezone ingesteld worden:
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = "Europe/Amsterdam"
Categorieën
PHP