Created
August 22, 2012 09:57
-
-
Save roderik/3424109 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Symfony\Component\ClassLoader\ApcClassLoader; | |
| use Symfony\Component\HttpFoundation\Request; | |
| $loader = require_once __DIR__.'/../app/bootstrap.php.cache'; | |
| // Use APC for autoloading to improve performance | |
| $loader = new ApcClassLoader('sf2', $loader); | |
| $loader->register(true); | |
| require_once __DIR__.'/../app/AppKernel.php'; | |
| $kernel = new AppKernel('prod', false); | |
| $kernel->loadClassCache(); | |
| if (!isset($_SERVER['HTTP_SURROGATE_CAPABILITY']) || false === strpos($_SERVER['HTTP_SURROGATE_CAPABILITY'], 'ESI/1.0')) { | |
| require_once __DIR__.'/../app/AppCache.php'; | |
| $kernel = new AppCache($kernel); | |
| } | |
| $request = Request::createFromGlobals(); | |
| $response = $kernel->handle($request); | |
| $response->send(); | |
| $kernel->terminate($request, $response); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment