diff --git a/web/app.php b/web/app.php index 336e655a14..4f591c107c 100644 --- a/web/app.php +++ b/web/app.php @@ -20,6 +20,9 @@ $kernel = new AppKernel('prod', false); $kernel->loadClassCache(); //$kernel = new AppCache($kernel); + +// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter +//Request::enableHttpMethodParameterOverride(); $request = Request::createFromGlobals(); $response = $kernel->handle($request); $response->send();