We recommend running your applications in WSL:
$baseUrl
in config/autoload/local.php to the address of the virtualhost.You should see the Dotkernel Frontend
welcome page.
If you are getting exceptions or errors regarding some missing services, try running the following command:
sudo php bin/clear-config-cache.php
If
config-cache.php
is present that config will be loaded regardless of theConfigAggregator::ENABLE_CACHE
inconfig/autoload/mezzio.global.php
Development only:
session.cookie_secure
does not work locally so make sure you modify yourlocal.php
, as per the following:
# other code
return [
# other configurations...
'session_config' => [
'cookie_secure' => false,
],
];
Do not change this in local.php.dist
as well because this value should remain true
on production.