Last active
June 2, 2016 16:44
-
-
Save anyt/ecd54e17370cda3befa90b5099be48b5 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 | |
// Change 'sf2' by the prefix you want in order to prevent key conflict with another application | |
/* | |
$loader = new ApcClassLoader('sf2', $loader); | |
$loader->register(true); | |
*/ | |
require_once __DIR__.'/../app/AppKernel.php'; | |
//require_once __DIR__.'/../app/AppCache.php'; | |
$kernel = new AppKernel('prod_' .phpversion(), false); | |
$kernel->loadClassCache(); | |
//$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