WebProfilerBundle Configuration ("web_profiler")
Edit this pageWarning: You are browsing the documentation for Symfony 2.6, which is no longer maintained.
Read the updated version of this page for Symfony 6.3 (the current stable version).
WebProfilerBundle Configuration ("web_profiler")
Full Default Configuration
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
web_profiler:
# DEPRECATED, it is not useful anymore and can be removed
# safely from your configuration
verbose: true
# display the web debug toolbar at the bottom of pages with
# a summary of profiler info
toolbar: false
position: bottom
# gives you the opportunity to look at the collected data
# before following the redirect
intercept_redirects: false
# Exclude AJAX requests in the web debug toolbar for specified paths
excluded_ajax_paths: ^/bundles|^/_wdt
1 2 3 4 5 6
<web-profiler:config
toolbar="false"
verbose="true"
intercept_redirects="false"
excluded_ajax_paths="^/bundles|^/_wdt"
/>
This work, including the code samples, is licensed under a
Creative Commons BY-SA 3.0
license.