You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
728 B
24 lines
728 B
<?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', false); |
|
$kernel->loadClassCache(); |
|
//$kernel = new AppCache($kernel); |
|
$request = Request::createFromGlobals(); |
|
$response = $kernel->handle($request); |
|
$response->send(); |
|
$kernel->terminate($request, $response);
|
|
|