From b6ee0022f7a91b0ea8dbcb40428da6b6f7ec2831 Mon Sep 17 00:00:00 2001 From: Kevin Bond Date: Thu, 12 Sep 2013 15:51:41 -0400 Subject: [PATCH] Added comment about http_method_override and HttpCache --- web/app.php | 3 +++ 1 file changed, 3 insertions(+) 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();