first import
[projectpier.git] / index.php
blob4234522f3d5f85633e39067b5450d6902deadae6
1 <?php
3 if(!version_compare(phpversion(), '5.0', '>=')) {
4 die('<strong>Installation error:</strong> in order to run ProjectPier you need PHP5. Your current PHP version is: ' . phpversion());
5 } // if
6 if(!defined('PUBLIC_FOLDER')) {
7 define('PUBLIC_FOLDER', 'public'); // this file can be included through public/index.php
8 } // if
9 require 'init.php';