Elgg
Version 1.9
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
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
17
$installer
=
new
ElggInstaller
();
18
19
$step
=
get_input
(
'step'
,
'welcome'
);
20
$installer
->run(
$step
);
get_input
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition:
input.php:27
$installer
$installer
Definition:
install.php:17
$step
$step
Definition:
install.php:19
exit
exit
Definition:
reorder.php:12
ElggInstaller
Definition:
ElggInstaller.php:30
echo
elgg echo
Translates a string.
Definition:
languages.js:43
Generated on Sat Dec 21 2024 00:00:35 for Elgg by
1.8.11