public
Description: A BitTorrent tracker that makes podcast RSS feeds, written in the Symfony PHP framework.
Homepage: http://limecast.com/
Clone URL: git://github.com/WIZARDISHUNGRY/sflimetracker.git
sflimetracker / index.php
100644 13 lines (9 sloc) 0.362 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
 
if (version_compare(PHP_VERSION, '5.2.1') === -1) {
    $message='PHP version 5.2.1+ required; ' . PHP_VERSION . " installed\n";
    echo "<h3>$message</h3>";
    exit($message);
}
 
require_once(dirname(__FILE__).'/config/ProjectConfiguration.class.php');
 
$app="tracker"; $env="prod"; $debug=false;
require_once(dirname(__FILE__).'/lib/initialize.php');