~tsep-dev/tsep/2.x

« back to all changes in this revision

Viewing changes to index.php

  • Committer: Geoff
  • Date: 2011-04-18 02:13:05 UTC
  • Revision ID: git-v1:2cca6efbebaff72de4f79bec37e0c55a8b0d6573
Fixed issue with root URL's.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
 
3
 
require_once __DIR__.'/app/bootstrap.php.cache';
4
 
require_once __DIR__.'/app/AppKernel.php';
5
 
//require_once __DIR__.'/../app/bootstrap_cache.php.cache';
6
 
//require_once __DIR__.'/../app/AppCache.php';
7
 
 
8
 
use Symfony\Component\HttpFoundation\Request;
9
 
 
10
 
//$kernel = new AppCache(new AppKernel('prod', false));
11
 
$kernel = new AppKernel('prod', false);
12
 
$kernel->handle(Request::createFromGlobals())->send();