Elgg  Version 1.9
install.php
Go to the documentation of this file.
1 <?php
9 // check for PHP 4 before we do anything else
10 if (version_compare(PHP_VERSION, '5.0.0', '<')) {
11  echo "Your server's version of PHP (" . PHP_VERSION . ") is too old to run Elgg.\n";
12  exit;
13 }
14 
15 require_once(dirname(__FILE__) . "/install/ElggInstaller.php");
16 
18 
19 $step = get_input('step', 'welcome');
20 $installer->run($step);
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
$installer
Definition: install.php:17
$step
Definition: install.php:19
exit
Definition: reorder.php:12
elgg echo
Translates a string.
Definition: languages.js:43