The Symfony debug toolbar doesn't show up.
I am running the site on app_dev.php environment. The config_dev.yml file contains the following lines.
web_profiler:
toolbar: true
intercept_redirects: false
app_dev/php doesn't have any IP restriction. It runs AppKernel with dev environment. Also, AppKernel contains the following line.
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
The main problem could be the HTML markup, but it has both the opening and closing <body>
tags. I even tried to remove all the HTML, and just leave it with few HTML tags, without luck.
Is there anything else I could try?
Maybe some files could be missing. How can I check it?
This is not a fresh Symfony installation.
debug:router --env=dev
command, can you see all_wdt
and_profiler_*
routes ? – Monteithapp/console router:debug --env=dev
(it's old name). What's the exact version of your Symfony install ? – Monteith