3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * This script creates config.php file during installation.
23 * @copyright 2009 Petr Skoda (http://skodak.org)
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 if (isset($_REQUEST['lang'])) {
28 $lang = preg_replace('/[^A-Za-z0-9_-]/i', '', $_REQUEST['lang']);
33 if (isset($_REQUEST['admin'])) {
34 $admin = preg_replace('/[^A-Za-z0-9_-]/i', '', $_REQUEST['admin']);
39 // If config.php exists we just created config.php and need to redirect to continue installation
40 $configfile = './config.php';
41 if (file_exists($configfile)) {
42 header("Location: $admin/index.php?lang=$lang");
46 define('CLI_SCRIPT', false); // prevents some warnings later
47 define('AJAX_SCRIPT', false); // prevents some warnings later
49 // make sure PHP errors are displayed - helps with diagnosing of problems
50 @error_reporting
(E_ALL
);
51 @ini_set
('display_errors', '1');
53 // Check that PHP is of a sufficient version
54 // PHP 5.2.0 is intentionally checked here even though a higher version is required by the environment
55 // check. This is not a typo - see MDL-18112
56 if (version_compare(phpversion(), "5.2.0") < 0) {
57 $phpversion = phpversion();
58 // do NOT localise - lang strings would not work here and we CAN not move it after installib
59 echo "Sorry, Moodle 2.0 requires PHP 5.2.8 or later (currently using version $phpversion).<br />";
60 echo "Please upgrade your server software or install latest Moodle 1.9.x instead.";
64 if (PHP_INT_SIZE
> 4) {
65 // most probably 64bit PHP - we need a lot more memory
66 $minrequiredmemory = '70M';
69 $minrequiredmemory = '40M';
71 // increase or decrease available memory - we need to make sure moodle
72 // installs even with low memory, otherwise developers would overlook
73 // sudden increases of memory needs ;-)
74 @ini_set
('memory_limit', $minrequiredmemory);
76 require dirname(__FILE__
).'/lib/installlib.php';
78 // TODO: add lang detection here if empty $_REQUEST['lang']
80 // distro specific customisation
82 if (file_exists('install/distrolib.php')) {
83 require_once('install/distrolib.php');
84 if (function_exists('distro_get_config')) {
85 $distro = distro_get_config();
89 $config = new stdClass();
90 $config->lang
= $lang;
93 if (install_ini_get_bool('magic_quotes_gpc')) {
94 $_POST = array_map('stripslashes', $_POST);
97 $config->stage
= (int)$_POST['stage'];
99 if (isset($_POST['previous'])) {
101 if (INSTALL_DATABASETYPE
and !empty($distro->dbtype
)) {
104 if ($config->stage
== INSTALL_ENVIRONMENT
or $config->stage
== INSTALL_DOWNLOADLANG
) {
107 } else if (isset($_POST['next'])) {
111 $config->dbtype
= trim($_POST['dbtype']);
112 $config->dbhost
= trim($_POST['dbhost']);
113 $config->dbuser
= trim($_POST['dbuser']);
114 $config->dbpass
= trim($_POST['dbpass']);
115 $config->dbname
= trim($_POST['dbname']);
116 $config->prefix
= trim($_POST['prefix']);
117 $config->dbsocket
= (int)(!empty($_POST['dbsocket']));
119 $config->admin
= empty($_POST['admin']) ?
'admin' : trim($_POST['admin']);
121 $config->dataroot
= trim($_POST['dataroot']);
124 $config->stage
= INSTALL_WELCOME
;
126 $config->dbtype
= empty($distro->dbtype
) ?
'' : $distro->dbtype
; // let distro skip dbtype selection
127 $config->dbhost
= empty($distro->dbhost
) ?
'localhost' : $distro->dbhost
; // let distros set dbhost
128 $config->dbuser
= empty($distro->dbuser
) ?
'' : $distro->dbuser
; // let distros set dbuser
129 $config->dbpass
= '';
130 $config->dbname
= 'moodle';
131 $config->prefix
= 'mdl_';
132 $config->dbsocket
= 0;
134 $config->admin
= 'admin';
136 $config->dataroot
= empty($distro->dataroot
) ?
null : $distro->dataroot
; // initialised later after including libs or by distro
139 // Fake some settings so that we can use selected functions from moodlelib.php and weblib.php
140 $CFG = new stdClass();
141 $CFG->lang
= $config->lang
;
142 $CFG->dirroot
= dirname(__FILE__
);
143 $CFG->libdir
= "$CFG->dirroot/lib";
144 $CFG->wwwroot
= install_guess_wwwroot(); // can not be changed - ppl must use the real address when installing
145 $CFG->httpswwwroot
= $CFG->wwwroot
;
146 $CFG->dataroot
= $config->dataroot
;
147 $CFG->admin
= $config->admin
;
148 $CFG->docroot
= 'http://docs.moodle.org';
149 $CFG->langotherroot
= $CFG->dataroot
.'/lang';
150 $CFG->langlocalroot
= $CFG->dataroot
.'/lang';
151 $CFG->directorypermissions
= 00777;
152 $CFG->running_installer
= true;
153 $CFG->early_install_lang
= true;
155 // Require all needed libs
156 require_once($CFG->libdir
.'/setuplib.php');
158 // we need to make sure we have enough memory to load all libraries
159 $memlimit = @ini_get
('memory_limit');
160 if (!empty($memlimit) and $memlimit != -1) {
161 if (get_real_size($memlimit) < get_real_size($minrequiredmemory)) {
162 // do NOT localise - lang strings would not work here and we CAN not move it to later place
163 echo "Sorry, Moodle 2.0 requires at least {$minrequiredmemory}B of PHP memory.<br />";
164 echo "Please contact server administrator to fix PHP.ini memory settings.";
169 // Continue with lib loading
170 require_once($CFG->libdir
.'/textlib.class.php');
171 require_once($CFG->libdir
.'/weblib.php');
172 require_once($CFG->libdir
.'/outputlib.php');
173 require_once($CFG->libdir
.'/dmllib.php');
174 require_once($CFG->libdir
.'/moodlelib.php');
175 require_once($CFG->libdir
.'/pagelib.php');
176 require_once($CFG->libdir
.'/deprecatedlib.php');
177 require_once($CFG->libdir
.'/adminlib.php');
178 require_once($CFG->libdir
.'/environmentlib.php');
179 require_once($CFG->libdir
.'/xmlize.php');
180 require_once($CFG->libdir
.'/componentlib.class.php');
182 //point pear include path to moodles lib/pear so that includes and requires will search there for files before anywhere else
183 //the problem is that we need specific version of quickforms and hacked excel files :-(
184 ini_set('include_path', $CFG->libdir
.'/pear' . PATH_SEPARATOR
. ini_get('include_path'));
185 //point zend include path to moodles lib/zend so that includes and requires will search there for files before anywhere else
186 ini_set('include_path', $CFG->libdir
.'/zend' . PATH_SEPARATOR
. ini_get('include_path'));
188 require('version.php');
189 $CFG->target_release
= $release;
191 $SESSION = new object();
192 $SESSION->lang
= $CFG->lang
;
194 $USER = new object();
197 $COURSE = new object();
207 // Are we in help mode?
208 if (isset($_GET['help'])) {
209 install_print_help_page($_GET['help']);
213 if (isset($_GET['css'])) {
214 install_css_styles();
217 //first time here? find out suitable dataroot
218 if (is_null($CFG->dataroot
)) {
219 $CFG->dataroot
= dirname(dirname(__FILE__
)).DIRECTORY_SEPARATOR
.'moodledata';
221 $i = 0; //safety check - dirname might return some unexpected results
222 while(is_dataroot_insecure()) {
223 $parrent = dirname($CFG->dataroot
);
225 if ($parrent == '/' or $parrent == '.' or preg_match('/^[a-z]:\\\?$/i', $parrent) or ($i > 100)) {
226 $CFG->dataroot
= ''; //can not find secure location for dataroot
229 $CFG->dataroot
= dirname($parrent).DIRECTORY_SEPARATOR
.'moodledata';
231 $config->dataroot
= $CFG->dataroot
;
232 $config->stage
= INSTALL_WELCOME
;
235 // now let's do the stage work
236 if ($config->stage
< INSTALL_WELCOME
) {
237 $config->stage
= INSTALL_WELCOME
;
239 if ($config->stage
> INSTALL_SAVE
) {
240 $config->stage
= INSTALL_SAVE
;
245 if ($config->stage
== INSTALL_SAVE
) {
246 $CFG->early_install_lang
= false;
248 $database = moodle_database
::get_driver_instance($config->dbtype
, 'native');
249 if (!$database->driver_installed()) {
250 $config->stage
= INSTALL_DATABASETYPE
;
252 if (function_exists('distro_pre_create_db')) { // Hook for distros needing to do something before DB creation
253 $distro = distro_pre_create_db($database, $config->dbhost
, $config->dbuser
, $config->dbpass
, $config->dbname
, $config->prefix
, array('dbpersist'=>0, 'dbsocket'=>$config->dbsocket
), $distro);
255 $hint_database = install_db_validate($database, $config->dbhost
, $config->dbuser
, $config->dbpass
, $config->dbname
, $config->prefix
, array('dbpersist'=>0, 'dbsocket'=>$config->dbsocket
));
257 if ($hint_database === '') {
258 $configphp = install_generate_configphp($database, $CFG);
261 if (($fh = @fopen
($configfile, 'w')) !== false) {
262 fwrite($fh, $configphp);
266 if (file_exists($configfile)) {
267 // config created, let's continue!
268 redirect("$CFG->wwwroot/$config->admin/index.php?lang=$config->lang");
271 install_print_header($config, 'config.php',
272 get_string('configurationcompletehead', 'install'),
273 get_string('configurationcompletesub', 'install').get_string('configfilenotwritten', 'install'));
274 echo '<div class="configphp"><pre>';
278 install_print_footer($config);
282 $config->stage
= INSTALL_DATABASE
;
289 if ($config->stage
== INSTALL_DOWNLOADLANG
) {
290 if (empty($CFG->dataroot
)) {
291 $config->stage
= INSTALL_PATHS
;
293 } else if (is_dataroot_insecure()) {
294 $hint_dataroot = get_string('pathsunsecuredataroot', 'install');
295 $config->stage
= INSTALL_PATHS
;
297 } else if (!file_exists($CFG->dataroot
)) {
299 $a->parent
= dirname($CFG->dataroot
);
300 $a->dataroot
= $CFG->dataroot
;
301 if (!is_writable(dirname($CFG->dataroot
))) {
302 $hint_dataroot = get_string('pathsroparentdataroot', 'install', $a);
303 $config->stage
= INSTALL_PATHS
;
305 if (!make_upload_directory('lang', false)) {
306 $hint_dataroot = get_string('pathserrcreatedataroot', 'install', $a);
307 $config->stage
= INSTALL_PATHS
;
312 if (empty($hint_dataroot) and !is_writable($CFG->dataroot
)) {
313 $hint_dataroot = get_string('pathsrodataroot', 'install');
314 $config->stage
= INSTALL_PATHS
;
317 if ($config->admin
=== '' or !file_exists($CFG->dirroot
.'/'.$config->admin
.'/environment.xml')) {
318 $hint_admindir = get_string('pathswrongadmindir', 'install');
319 $config->stage
= INSTALL_PATHS
;
325 if ($config->stage
== INSTALL_DOWNLOADLANG
) {
326 // no need to download anything if en lang selected
327 if ($CFG->lang
== 'en') {
328 $config->stage
= INSTALL_DATABASETYPE
;
334 if ($config->stage
== INSTALL_DATABASETYPE
) {
335 // skip db selection if distro package supports only one db
336 if (!empty($distro->dbtype
)) {
337 $config->stage
= INSTALL_DATABASE
;
342 if ($config->stage
== INSTALL_DOWNLOADLANG
) {
345 // Create necessary lang dir
346 if (!make_upload_directory('lang', false)) {
347 $downloaderror = get_string('cannotcreatelangdir', 'error');
349 // Download and install lang component
350 } else if ($cd = new component_installer('http://download.moodle.org', 'lang20', $CFG->lang
.'.zip', 'languages.md5', 'lang')) {
351 if ($cd->install() == COMPONENT_ERROR
) {
352 if ($cd->get_error() == 'remotedownloaderror') {
354 $a->url
= 'http://download.moodle.org/lang20/'.$config->lang
.'.zip';
355 $a->dest
= $CFG->dataroot
.'/lang';
356 $downloaderror = get_string($cd->get_error(), 'error', $a);
358 $downloaderror = get_string($cd->get_error(), 'error');
361 // install parent lang if defined
362 if ($parentlang = get_parent_language()) {
363 if ($cd = new component_installer('http://download.moodle.org', 'lang20', $parentlang.'.zip', 'languages.md5', 'lang')) {
370 if ($downloaderror !== '') {
371 install_print_header($config, get_string('language'), get_string('langdownloaderror', 'install', $CFG->lang
), $downloaderror);
372 install_print_footer($config);
375 if (empty($distro->dbtype
)) {
376 $config->stage
= INSTALL_DATABASETYPE
;
378 $config->stage
= INSTALL_DATABASE
;
384 if ($config->stage
== INSTALL_DATABASE
) {
385 $CFG->early_install_lang
= false;
387 $database = moodle_database
::get_driver_instance($config->dbtype
, 'native');
389 $sub = '<h3>'.$database->get_name().'</h3>'.$database->get_configuration_help();
391 install_print_header($config, get_string('database', 'install'), get_string('databasehead', 'install'), $sub);
393 $strdbhost = get_string('databasehost', 'install');
394 $strdbname = get_string('databasename', 'install');
395 $strdbuser = get_string('databaseuser', 'install');
396 $strdbpass = get_string('databasepass', 'install');
397 $strprefix = get_string('dbprefix', 'install');
398 $strdbsocket = get_string('databasesocket', 'install');
400 echo '<div class="userinput">';
402 $disabled = empty($distro->dbhost
) ?
'' : 'disabled="disabled';
403 echo '<div class="formrow"><label for="id_dbhost" class="formlabel">'.$strdbhost.'</label>';
404 echo '<input id="id_dbhost" name="dbhost" '.$disabled.' type="text" value="'.s($config->dbhost
).'" size="30" class="forminput" />';
407 echo '<div class="formrow"><label for="id_dbname" class="formlabel">'.$strdbname.'</label>';
408 echo '<input id="id_dbname" name="dbname" type="text" value="'.s($config->dbname
).'" size="30" class="forminput" />';
411 $disabled = empty($distro->dbuser
) ?
'' : 'disabled="disabled';
412 echo '<div class="formrow"><label for="id_dbuser" class="formlabel">'.$strdbuser.'</label>';
413 echo '<input id="id_dbuser" name="dbuser" '.$disabled.' type="text" value="'.s($config->dbuser
).'" size="30" class="forminput" />';
416 echo '<div class="formrow"><label for="id_dbpass" class="formlabel">'.$strdbpass.'</label>';
417 // no password field here, the password may be visible in config.php if we can not write it to disk
418 echo '<input id="id_dbpass" name="dbpass" type="text" value="'.s($config->dbpass
).'" size="30" class="forminput" />';
421 echo '<div class="formrow"><label for="id_prefix" class="formlabel">'.$strprefix.'</label>';
422 echo '<input id="id_prefix" name="prefix" type="text" value="'.s($config->prefix
).'" size="10" class="forminput" />';
425 if (!(stristr(PHP_OS
, 'win') && !stristr(PHP_OS
, 'darwin'))) {
426 $checked = $config->dbsocket ?
'checked="checked' : '';
427 echo '<div class="formrow"><label for="id_dbsocket" class="formlabel">'.$strdbsocket.'</label>';
428 echo '<input type="hidden" value="0" name="dbsocket" />';
429 echo '<input type="checkbox" id="id_dbsocket" value="1" name="dbsocket" '.$checked.' class="forminput" />';
433 echo '<div class="hint">'.$hint_database.'</div>';
435 install_print_footer($config);
440 if ($config->stage
== INSTALL_DATABASETYPE
) {
441 $CFG->early_install_lang
= false;
443 // Finally ask for DB type
444 install_print_header($config, get_string('database', 'install'),
445 get_string('databasetypehead', 'install'),
446 get_string('databasetypesub', 'install'));
448 // TODO: move this PHP5 code to lib/installib.php so that this file parses in PHP4
449 $databases = array('mysqli' => moodle_database
::get_driver_instance('mysqli', 'native'),
450 'pgsql' => moodle_database
::get_driver_instance('pgsql', 'native'),
451 'oci' => moodle_database
::get_driver_instance('oci', 'native'),
452 //'sqlsrv' => moodle_database::get_driver_instance('sqlsrv', 'native'), // new MS sql driver - win32 only
453 //'mssql' => moodle_database::get_driver_instance('mssql', 'native'), // FreeTDS driver
456 echo '<div class="userinput">';
457 echo '<div class="formrow"><label class="formlabel" for="dbtype">'.get_string('dbtype', 'install').'</label>';
458 echo '<select id="dbtype" name="dbtype" class="forminput">';
461 foreach ($databases as $type=>$database) {
462 if ($database->driver_installed() !== true) {
463 $disabled[$type] = $database;
466 echo '<option value="'.s($type).'">'.$database->get_name().'</option>';
469 echo '<optgroup label="'.s(get_string('notavailable')).'">';
470 foreach ($disabled as $type=>$database) {
471 echo '<option value="'.s($type).'" class="notavailable">'.$database->get_name().'</option>';
475 echo '</select></div>';
478 install_print_footer($config);
484 if ($config->stage
== INSTALL_ENVIRONMENT
or $config->stage
== INSTALL_PATHS
) {
485 $version_fail = (version_compare(phpversion(), "5.2.8") < 0);
486 $curl_fail = ($lang !== 'en' and !extension_loaded('curl')); // needed for lang pack download
487 $zip_fail = ($lang !== 'en' and !extension_loaded('zip')); // needed for lang pack download
489 if ($version_fail or $curl_fail or $zip_fail) {
490 $config->stage
= INSTALL_ENVIRONMENT
;
492 install_print_header($config, get_string('environment', 'install'),
493 get_string('errorsinenvironment', 'install'),
494 get_string('environmentsub2', 'install'));
496 echo '<div id="envresult"><dl>';
498 $a = (object)array('needed'=>'5.2.8', 'current'=>phpversion());
499 echo '<dt>'.get_string('phpversion', 'install').'</dt><dd>'.get_string('environmentrequireversion', 'admin', $a).'</dd>';
502 echo '<dt>'.get_string('phpextension', 'install', 'cURL').'</dt><dd>'.get_string('environmentrequireinstall', 'admin').'</dd>';
505 echo '<dt>'.get_string('phpextension', 'install', 'Zip').'</dt><dd>'.get_string('environmentrequireinstall', 'admin').'</dd>';
509 install_print_footer($config, true);
513 $config->stage
= INSTALL_PATHS
;
519 if ($config->stage
== INSTALL_PATHS
) {
520 $paths = array('wwwroot' => get_string('wwwroot', 'install'),
521 'dirroot' => get_string('dirroot', 'install'),
522 'dataroot' => get_string('dataroot', 'install'));
525 foreach ($paths as $path=>$name) {
526 $sub .= '<dt>'.$name.'</dt><dd>'.get_string('pathssub'.$path, 'install').'</dd>';
528 if (!file_exists("$CFG->dirroot/admin/environment.xml")) {
529 $sub .= '<dt>'.get_string('admindirname', 'install').'</dt><dd>'.get_string('pathssubadmindir', 'install').'</dd>';
533 install_print_header($config, get_string('paths', 'install'), get_string('pathshead', 'install'), $sub);
535 $strwwwroot = get_string('wwwroot', 'install');
536 $strdirroot = get_string('dirroot', 'install');
537 $strdataroot = get_string('dataroot', 'install');
538 $stradmindirname = get_string('admindirname', 'install');
540 echo '<div class="userinput">';
541 echo '<div class="formrow"><label for="id_wwwroot" class="formlabel">'.$paths['wwwroot'].'</label>';
542 echo '<input id="id_wwwroot" name="wwwroot" type="text" value="'.s($CFG->wwwroot
).'" disabled="disabled" size="45" class="forminput" />';
545 echo '<div class="formrow"><label for="id_dirroot" class="formlabel">'.$paths['dirroot'].'</label>';
546 echo '<input id="id_dirroot" name="dirroot" type="text" value="'.s($CFG->dirroot
).'" disabled="disabled" size="45"class="forminput" />';
549 echo '<div class="formrow"><label for="id_dataroot" class="formlabel">'.$paths['dataroot'].'</label>';
550 echo '<input id="id_dataroot" name="dataroot" type="text" value="'.s($config->dataroot
).'" size="45" class="forminput" />';
551 if ($hint_dataroot !== '') {
552 echo '<div class="hint">'.$hint_dataroot.'</div>';
557 if (!file_exists("$CFG->dirroot/admin/environment.xml")) {
558 echo '<div class="formrow"><label for="id_admin" class="formlabel">'.$paths['admindir'].'</label>';
559 echo '<input id="id_admin" name="admin" type="text" value="'.s($config->admin
).'" size="10" class="forminput" />';
560 if ($hint_admindir !== '') {
561 echo '<div class="hint">'.$hint_admindir.'</div>';
568 install_print_footer($config);
574 $config->stage
= INSTALL_WELCOME
;
578 include('install/distribution.html');
579 $sub = ob_get_clean();
581 install_print_header($config, get_string('language'),
582 get_string('chooselanguagehead', 'install'),
586 install_print_header($config, get_string('language'),
587 get_string('chooselanguagehead', 'install'),
588 get_string('chooselanguagesub', 'install'));
591 $languages = get_string_manager()->get_list_of_translations();
592 echo '<div class="userinput">';
593 echo '<div class="formrow"><label class="formlabel" for="langselect">'.get_string('language').'</label>';
594 echo '<select id="langselect" name="lang" class="forminput" onchange="this.form.submit()">';
595 foreach ($languages as $name=>$value) {
596 $selected = ($name == $CFG->lang
) ?
'selected="selected"' : '';
597 echo '<option value="'.s($name).'" '.$selected.'>'.$value.'</option>';
599 echo '</select></div>';
602 install_print_footer($config);