Blame view

framework/dev/install/install.php 1.14 KB
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  <?php
  
  /************************************************************************************
   ************************************************************************************
   **                                                                                **
   **  If you can read this text in your browser then you don't have PHP installed.  **
   **  Please install PHP 5.3.2 or higher, preferably PHP 5.3.4+.                    **
   **                                                                                **
   ************************************************************************************
   ************************************************************************************/
  
  /**
   * PHP version check. Make sure we've got at least PHP 5.3.2 in the most friendly way possible
   */
  define('FRAMEWORK_NAME', 'framework');
  
  if (version_compare(phpversion(), '5.3.2', '<')) {
  	header("HTTP/1.1 500 Server Error");
  	echo str_replace(
  		array('$PHPVersion', 'sapphire'),
  		array(phpversion(), FRAMEWORK_NAME),
  		file_get_contents(FRAMEWORK_NAME . "/dev/install/php5-required.html"));
  	die();
  }
  
  include(FRAMEWORK_NAME . '/dev/install/install.php5');