File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -127,3 +127,29 @@ page.
127
127
Instead, you'll need to set the ``intercept_redirects `` option to ``true `` in
128
128
the ``config_dev.yml `` file, which will cause the redirect to stop and allow
129
129
you to open the report with details of the sent emails.
130
+
131
+ .. configuration-block ::
132
+
133
+ .. code-block :: yaml
134
+
135
+ # app/config/config_dev.yml
136
+ web_profiler :
137
+ intercept_redirects : true
138
+
139
+ .. code-block :: xml
140
+
141
+ <!-- app/config/config_dev.xml -->
142
+
143
+ <!-- xmlns:webprofiler="http://symfony.com/schema/dic/webprofiler" -->
144
+ <!-- xsi:schemaLocation="http://symfony.com/schema/dic/webprofiler http://symfony.com/schema/dic/webprofiler/webprofiler-1.0.xsd"> -->
145
+
146
+ <webprofiler : config
147
+ intercept-redirects =" true"
148
+ />
149
+
150
+ .. code-block :: php
151
+
152
+ // app/config/config_dev.php
153
+ $container->loadFromExtension('web_profiler', array(
154
+ 'intercept_redirects' => 'true',
155
+ ));
You can’t perform that action at this time.
0 commit comments