MDL-59366 enrol: Add $onlyenabled param in enrol instances getters
[moodle.git] / install.php
CommitLineData
d764d4ca 1<?php
8b5b1028 2
d764d4ca 3// This file is part of Moodle - http://moodle.org/
4//
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.
9//
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.
14//
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/>.
17
18/**
19 * This script creates config.php file during installation.
20 *
b7315f35 21 * @package core
95feaf96 22 * @subpackage install
d764d4ca 23 * @copyright 2009 Petr Skoda (http://skodak.org)
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 */
8b5b1028 26
3b093310 27if (isset($_REQUEST['lang'])) {
6dbcacee 28 $lang = preg_replace('/[^A-Za-z0-9_-]/i', '', $_REQUEST['lang']);
8b5b1028 29} else {
3a915b06 30 $lang = 'en';
8b5b1028 31}
32
3b093310 33if (isset($_REQUEST['admin'])) {
6dbcacee 34 $admin = preg_replace('/[^A-Za-z0-9_-]/i', '', $_REQUEST['admin']);
3b093310 35} else {
36 $admin = 'admin';
8b5b1028 37}
38
082157a8 39// If config.php exists we just created config.php and need to redirect to continue installation
3b093310 40$configfile = './config.php';
41if (file_exists($configfile)) {
42 header("Location: $admin/index.php?lang=$lang");
43 die;
d36afd6d 44}
8d783716 45
e2253187
PS
46define('CLI_SCRIPT', false); // prevents some warnings later
47define('AJAX_SCRIPT', false); // prevents some warnings later
94ef67cf 48define('CACHE_DISABLE_ALL', true); // Disables caching.. just in case.
1abf2f6a 49define('PHPUNIT_TEST', false);
d7245e34 50define('IGNORE_COMPONENT_CACHE', true);
3a2baeb8 51define('MDL_PERF_TEST', false);
e2253187 52
4ede587e 53// Servers should define a default timezone in php.ini, but if they don't then make sure something is defined.
d6e7a63d
PS
54if (!function_exists('date_default_timezone_set') or !function_exists('date_default_timezone_get')) {
55 echo("Timezone functions are not available.");
56 die;
4ede587e 57}
d6e7a63d 58date_default_timezone_set(@date_default_timezone_get());
4ede587e 59
082157a8 60// make sure PHP errors are displayed - helps with diagnosing of problems
3b093310 61@error_reporting(E_ALL);
62@ini_set('display_errors', '1');
3b093310 63
64e57937 64// Check that PHP is of a sufficient version as soon as possible.
24a7acf3 65require_once(__DIR__.'/lib/phpminimumversionlib.php');
64e57937 66moodle_require_minimum_php_version();
8b5b1028 67
695940df
PS
68// make sure iconv is available and actually works
69if (!function_exists('iconv')) {
70 // this should not happen, this must be very borked install
7d85a4e2 71 echo 'Moodle requires the iconv PHP extension. Please install or enable the iconv extension.';
695940df
PS
72 die();
73}
695940df 74
86449d22
PS
75if (PHP_INT_SIZE > 4) {
76 // most probably 64bit PHP - we need a lot more memory
77 $minrequiredmemory = '70M';
78} else {
79 // 32bit PHP
80 $minrequiredmemory = '40M';
81}
82// increase or decrease available memory - we need to make sure moodle
83// installs even with low memory, otherwise developers would overlook
84// sudden increases of memory needs ;-)
85@ini_set('memory_limit', $minrequiredmemory);
86
460ebd6c
PS
87/** Used by library scripts to check they are being called by Moodle */
88define('MOODLE_INTERNAL', true);
89
1abf2f6a
PS
90require_once(__DIR__.'/lib/classes/component.php');
91require_once(__DIR__.'/lib/installlib.php');
bd507453 92
3b093310 93// TODO: add lang detection here if empty $_REQUEST['lang']
3b3b8029 94
5c1fb7d4 95// distro specific customisation
96$distro = null;
768408e8 97if (file_exists('install/distrolib.php')) {
98 require_once('install/distrolib.php');
99 if (function_exists('distro_get_config')) {
100 $distro = distro_get_config();
101 }
5c1fb7d4 102}
103
3b093310 104$config = new stdClass();
105$config->lang = $lang;
3b3b8029 106
3b093310 107if (!empty($_POST)) {
3b093310 108 $config->stage = (int)$_POST['stage'];
56ca1c60 109
3b093310 110 if (isset($_POST['previous'])) {
111 $config->stage--;
5167827b 112 if (INSTALL_DATABASETYPE and !empty($distro->dbtype)) {
113 $config->stage--;
114 }
3b093310 115 if ($config->stage == INSTALL_ENVIRONMENT or $config->stage == INSTALL_DOWNLOADLANG) {
116 $config->stage--;
56ca1c60 117 }
3b093310 118 } else if (isset($_POST['next'])) {
119 $config->stage++;
d36afd6d 120 }
3b3b8029 121
3b093310 122 $config->dbtype = trim($_POST['dbtype']);
123 $config->dbhost = trim($_POST['dbhost']);
124 $config->dbuser = trim($_POST['dbuser']);
125 $config->dbpass = trim($_POST['dbpass']);
126 $config->dbname = trim($_POST['dbname']);
127 $config->prefix = trim($_POST['prefix']);
b29ca9b5
PS
128 $config->dbport = (int)trim($_POST['dbport']);
129 $config->dbsocket = trim($_POST['dbsocket']);
130
131 if ($config->dbport <= 0) {
132 $config->dbport = '';
133 }
3b3b8029 134
3b093310 135 $config->admin = empty($_POST['admin']) ? 'admin' : trim($_POST['admin']);
53a0367d 136
3b093310 137 $config->dataroot = trim($_POST['dataroot']);
d36afd6d 138
3b3b8029 139} else {
3b093310 140 $config->stage = INSTALL_WELCOME;
8b5b1028 141
4f9dba35 142 $config->dbtype = empty($distro->dbtype) ? '' : $distro->dbtype; // let distro skip dbtype selection
6724b059 143 $config->dbhost = empty($distro->dbhost) ? 'localhost' : $distro->dbhost; // let distros set dbhost
144 $config->dbuser = empty($distro->dbuser) ? '' : $distro->dbuser; // let distros set dbuser
3b093310 145 $config->dbpass = '';
146 $config->dbname = 'moodle';
147 $config->prefix = 'mdl_';
b29ca9b5
PS
148 $config->dbport = empty($distro->dbport) ? '' : $distro->dbport;
149 $config->dbsocket = empty($distro->dbsocket) ? '' : $distro->dbsocket;
53a0367d 150
3b093310 151 $config->admin = 'admin';
8b5b1028 152
4f9dba35 153 $config->dataroot = empty($distro->dataroot) ? null : $distro->dataroot; // initialised later after including libs or by distro
3b093310 154}
8b5b1028 155
cf4cef7d 156// Fake some settings so that we can use selected functions from moodlelib.php, weblib.php and filelib.php.
1a4621d8 157global $CFG;
3b093310 158$CFG = new stdClass();
159$CFG->lang = $config->lang;
1fcf0ca8 160$CFG->dirroot = __DIR__;
3b093310 161$CFG->libdir = "$CFG->dirroot/lib";
162$CFG->wwwroot = install_guess_wwwroot(); // can not be changed - ppl must use the real address when installing
163$CFG->httpswwwroot = $CFG->wwwroot;
3b093310 164$CFG->dataroot = $config->dataroot;
f848c0f6 165$CFG->tempdir = $CFG->dataroot.'/temp';
12812ad5 166$CFG->cachedir = $CFG->dataroot.'/cache';
85b38061 167$CFG->localcachedir = $CFG->dataroot.'/localcache';
3b093310 168$CFG->admin = $config->admin;
169$CFG->docroot = 'http://docs.moodle.org';
d8fa5a13
PS
170$CFG->langotherroot = $CFG->dataroot.'/lang';
171$CFG->langlocalroot = $CFG->dataroot.'/lang';
70801baf 172$CFG->directorypermissions = isset($distro->directorypermissions) ? $distro->directorypermissions : 00777; // let distros set dir permissions
7f0ffc54
PS
173$CFG->filepermissions = ($CFG->directorypermissions & 0666);
174$CFG->umaskpermissions = (($CFG->directorypermissions & 0777) ^ 0777);
3b093310 175$CFG->running_installer = true;
3a915b06 176$CFG->early_install_lang = true;
cf4cef7d 177$CFG->ostype = (stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'darwin')) ? 'WINDOWS' : 'UNIX';
96f81ea3
PS
178$CFG->debug = (E_ALL | E_STRICT);
179$CFG->debugdisplay = true;
180$CFG->debugdeveloper = true;
8d783716 181
082157a8 182// Require all needed libs
d36afd6d 183require_once($CFG->libdir.'/setuplib.php');
86449d22
PS
184
185// we need to make sure we have enough memory to load all libraries
186$memlimit = @ini_get('memory_limit');
187if (!empty($memlimit) and $memlimit != -1) {
188 if (get_real_size($memlimit) < get_real_size($minrequiredmemory)) {
189 // do NOT localise - lang strings would not work here and we CAN not move it to later place
eab044a0 190 echo "Moodle requires at least {$minrequiredmemory}B of PHP memory.<br />";
86449d22
PS
191 echo "Please contact server administrator to fix PHP.ini memory settings.";
192 die;
193 }
194}
195
196// Continue with lib loading
d534708f 197require_once($CFG->libdir.'/classes/text.php');
99a9d8d9
PS
198require_once($CFG->libdir.'/classes/string_manager.php');
199require_once($CFG->libdir.'/classes/string_manager_install.php');
200require_once($CFG->libdir.'/classes/string_manager_standard.php');
d36afd6d 201require_once($CFG->libdir.'/weblib.php');
318f0519 202require_once($CFG->libdir.'/outputlib.php');
3b093310 203require_once($CFG->libdir.'/dmllib.php');
251387d0 204require_once($CFG->libdir.'/moodlelib.php');
d4a03c00 205require_once($CFG->libdir .'/pagelib.php');
3b093310 206require_once($CFG->libdir.'/deprecatedlib.php');
251387d0 207require_once($CFG->libdir.'/adminlib.php');
d36afd6d 208require_once($CFG->libdir.'/environmentlib.php');
d36afd6d 209require_once($CFG->libdir.'/componentlib.class.php');
067200e2 210require_once($CFG->dirroot.'/cache/lib.php');
3b093310 211
e8da62a9
PS
212//point pear include path to moodles lib/pear so that includes and requires will search there for files before anywhere else
213//the problem is that we need specific version of quickforms and hacked excel files :-(
214ini_set('include_path', $CFG->libdir.'/pear' . PATH_SEPARATOR . ini_get('include_path'));
6f5e0852 215
98d696b6
SH
216// Register our classloader, in theory somebody might want to replace it to load other hacked core classes.
217// Required because the database checks below lead to session interaction which is going to lead us to requiring autoloaded classes.
218if (defined('COMPONENT_CLASSLOADER')) {
219 spl_autoload_register(COMPONENT_CLASSLOADER);
220} else {
221 spl_autoload_register('core_component::classloader');
222}
223
3b093310 224require('version.php');
9ace5094 225$CFG->target_release = $release;
3b093310 226
2e00d01d 227\core\session\manager::init_empty_session();
1a4621d8
PS
228global $SESSION;
229global $USER;
3b093310 230
1a4621d8 231global $COURSE;
a226a972 232$COURSE = new stdClass();
1a4621d8 233$COURSE->id = 1;
3b093310 234
1a4621d8 235global $SITE;
3b093310 236$SITE = $COURSE;
1a4621d8 237define('SITEID', 1);
3b093310 238
239$hint_dataroot = '';
3b093310 240$hint_admindir = '';
241$hint_database = '';
242
082157a8 243// Are we in help mode?
3b093310 244if (isset($_GET['help'])) {
245 install_print_help_page($_GET['help']);
246}
247
082157a8 248//first time here? find out suitable dataroot
3b093310 249if (is_null($CFG->dataroot)) {
1fcf0ca8 250 $CFG->dataroot = __DIR__.'/../moodledata';
add47d44 251
add47d44 252 $i = 0; //safety check - dirname might return some unexpected results
253 while(is_dataroot_insecure()) {
254 $parrent = dirname($CFG->dataroot);
255 $i++;
b735d140 256 if ($parrent == '/' or $parrent == '.' or preg_match('/^[a-z]:\\\?$/i', $parrent) or ($i > 100)) {
add47d44 257 $CFG->dataroot = ''; //can not find secure location for dataroot
258 break;
259 }
3b5ff37f 260 $CFG->dataroot = dirname($parrent).DIRECTORY_SEPARATOR.'moodledata';
add47d44 261 }
3b093310 262 $config->dataroot = $CFG->dataroot;
263 $config->stage = INSTALL_WELCOME;
8b5b1028 264}
265
3b093310 266// now let's do the stage work
267if ($config->stage < INSTALL_WELCOME) {
268 $config->stage = INSTALL_WELCOME;
269}
270if ($config->stage > INSTALL_SAVE) {
271 $config->stage = INSTALL_SAVE;
8d783716 272}
273
274
51e3e0b9 275
3b093310 276if ($config->stage == INSTALL_SAVE) {
3a915b06
PS
277 $CFG->early_install_lang = false;
278
3b093310 279 $database = moodle_database::get_driver_instance($config->dbtype, 'native');
280 if (!$database->driver_installed()) {
281 $config->stage = INSTALL_DATABASETYPE;
282 } else {
082157a8 283 if (function_exists('distro_pre_create_db')) { // Hook for distros needing to do something before DB creation
b29ca9b5 284 $distro = distro_pre_create_db($database, $config->dbhost, $config->dbuser, $config->dbpass, $config->dbname, $config->prefix, array('dbpersist'=>0, 'dbport'=>$config->dbport, 'dbsocket'=>$config->dbsocket), $distro);
768408e8 285 }
b29ca9b5 286 $hint_database = install_db_validate($database, $config->dbhost, $config->dbuser, $config->dbpass, $config->dbname, $config->prefix, array('dbpersist'=>0, 'dbport'=>$config->dbport, 'dbsocket'=>$config->dbsocket));
edd3a5db 287
3b093310 288 if ($hint_database === '') {
3b5ff37f 289 $configphp = install_generate_configphp($database, $CFG);
53a0367d 290
3b093310 291 umask(0137);
3b093310 292 if (($fh = @fopen($configfile, 'w')) !== false) {
293 fwrite($fh, $configphp);
294 fclose($fh);
295 }
082157a8 296
3b093310 297 if (file_exists($configfile)) {
298 // config created, let's continue!
299 redirect("$CFG->wwwroot/$config->admin/index.php?lang=$config->lang");
300 }
2df3a721 301
3b093310 302 install_print_header($config, 'config.php',
303 get_string('configurationcompletehead', 'install'),
395e5e53 304 get_string('configurationcompletesub', 'install').get_string('configfilenotwritten', 'install'), 'alert-error');
3b093310 305 echo '<div class="configphp"><pre>';
306 echo p($configphp);
307 echo '</pre></div>';
bba0beae 308
3b093310 309 install_print_footer($config);
310 die;
8b5b1028 311
3b093310 312 } else {
313 $config->stage = INSTALL_DATABASE;
314 }
6d5a22b2 315 }
8b5b1028 316}
317
318
319
5167827b 320if ($config->stage == INSTALL_DOWNLOADLANG) {
321 if (empty($CFG->dataroot)) {
322 $config->stage = INSTALL_PATHS;
323
324 } else if (is_dataroot_insecure()) {
325 $hint_dataroot = get_string('pathsunsecuredataroot', 'install');
326 $config->stage = INSTALL_PATHS;
327
cf89052a 328 } else if (!file_exists($CFG->dataroot)) {
329 $a = new stdClass();
330 $a->parent = dirname($CFG->dataroot);
331 $a->dataroot = $CFG->dataroot;
e92977d3 332 if (!is_writable($a->parent)) {
cf89052a 333 $hint_dataroot = get_string('pathsroparentdataroot', 'install', $a);
334 $config->stage = INSTALL_PATHS;
335 } else {
0bda7031 336 if (!install_init_dataroot($CFG->dataroot, $CFG->directorypermissions)) {
cf89052a 337 $hint_dataroot = get_string('pathserrcreatedataroot', 'install', $a);
338 $config->stage = INSTALL_PATHS;
339 }
340 }
16564524
DM
341
342 } else if (!install_init_dataroot($CFG->dataroot, $CFG->directorypermissions)) {
e92977d3 343 $hint_dataroot = get_string('pathserrcreatedataroot', 'install', array('dataroot' => $CFG->dataroot));
16564524 344 $config->stage = INSTALL_PATHS;
cf89052a 345 }
346
347 if (empty($hint_dataroot) and !is_writable($CFG->dataroot)) {
5167827b 348 $hint_dataroot = get_string('pathsrodataroot', 'install');
349 $config->stage = INSTALL_PATHS;
350 }
351
3b5ff37f 352 if ($config->admin === '' or !file_exists($CFG->dirroot.'/'.$config->admin.'/environment.xml')) {
5167827b 353 $hint_admindir = get_string('pathswrongadmindir', 'install');
354 $config->stage = INSTALL_PATHS;
355 }
356}
357
358
359
360if ($config->stage == INSTALL_DOWNLOADLANG) {
361 // no need to download anything if en lang selected
3a915b06 362 if ($CFG->lang == 'en') {
5167827b 363 $config->stage = INSTALL_DATABASETYPE;
364 }
365}
366
367
368
369if ($config->stage == INSTALL_DATABASETYPE) {
370 // skip db selection if distro package supports only one db
371 if (!empty($distro->dbtype)) {
372 $config->stage = INSTALL_DATABASE;
373 }
374}
375
376
08261d3a 377if ($config->stage == INSTALL_DOWNLOADLANG) {
378 $downloaderror = '';
379
74a4c9a9
DM
380 // download and install required lang packs, the lang dir has already been created in install_init_dataroot
381 $installer = new lang_installer($CFG->lang);
382 $results = $installer->run();
383 foreach ($results as $langcode => $langstatus) {
384 if ($langstatus === lang_installer::RESULT_DOWNLOADERROR) {
385 $a = new stdClass();
386 $a->url = $installer->lang_pack_url($langcode);
387 $a->dest = $CFG->dataroot.'/lang';
388 $downloaderror = get_string('remotedownloaderror', 'error', $a);
08261d3a 389 }
390 }
391
392 if ($downloaderror !== '') {
393 install_print_header($config, get_string('language'), get_string('langdownloaderror', 'install', $CFG->lang), $downloaderror);
394 install_print_footer($config);
395 die;
396 } else {
397 if (empty($distro->dbtype)) {
398 $config->stage = INSTALL_DATABASETYPE;
399 } else {
400 $config->stage = INSTALL_DATABASE;
401 }
402 }
807ee8bc
DM
403
404 // switch the string_manager instance to stop using install/lang/
405 $CFG->early_install_lang = false;
406 $CFG->langotherroot = $CFG->dataroot.'/lang';
407 $CFG->langlocalroot = $CFG->dataroot.'/lang';
408 get_string_manager(true);
08261d3a 409}
410
5167827b 411
3b093310 412if ($config->stage == INSTALL_DATABASE) {
3a915b06
PS
413 $CFG->early_install_lang = false;
414
3b093310 415 $database = moodle_database::get_driver_instance($config->dbtype, 'native');
8b5b1028 416
3b093310 417 $sub = '<h3>'.$database->get_name().'</h3>'.$database->get_configuration_help();
8d783716 418
3b093310 419 install_print_header($config, get_string('database', 'install'), get_string('databasehead', 'install'), $sub);
53a0367d 420
3b093310 421 $strdbhost = get_string('databasehost', 'install');
422 $strdbname = get_string('databasename', 'install');
423 $strdbuser = get_string('databaseuser', 'install');
424 $strdbpass = get_string('databasepass', 'install');
425 $strprefix = get_string('dbprefix', 'install');
b29ca9b5 426 $strdbport = get_string('databaseport', 'install');
3b093310 427 $strdbsocket = get_string('databasesocket', 'install');
8d783716 428
3b093310 429 echo '<div class="userinput">';
6724b059 430
431 $disabled = empty($distro->dbhost) ? '' : 'disabled="disabled';
395e5e53 432 echo '<div class="fitem"><div class="fitemtitle"><label for="id_dbhost">'.$strdbhost.'</label></div>';
525ef9c8 433 echo '<div class="fitemelement"><input id="id_dbhost" name="dbhost" '.$disabled.' type="text" class="text-ltr" value="'.s($config->dbhost).'" size="50" /></div>';
3b093310 434 echo '</div>';
8b5b1028 435
395e5e53 436 echo '<div class="fitem"><div class="fitemtitle"><label for="id_dbname">'.$strdbname.'</label></div>';
525ef9c8 437 echo '<div class="fitemelement"><input id="id_dbname" name="dbname" type="text" class="text-ltr" value="'.s($config->dbname).'" size="50" /></div>';
3b093310 438 echo '</div>';
86453d8b 439
6724b059 440 $disabled = empty($distro->dbuser) ? '' : 'disabled="disabled';
395e5e53 441 echo '<div class="fitem"><div class="fitemtitle"><label for="id_dbuser">'.$strdbuser.'</label></div>';
525ef9c8 442 echo '<div class="fitemelement"><input id="id_dbuser" name="dbuser" '.$disabled.' type="text" class="text-ltr" value="'.s($config->dbuser).'" size="50" /></div>';
3b093310 443 echo '</div>';
86453d8b 444
395e5e53 445 echo '<div class="fitem"><div class="fitemtitle"><label for="id_dbpass">'.$strdbpass.'</label></div>';
3b093310 446 // no password field here, the password may be visible in config.php if we can not write it to disk
525ef9c8 447 echo '<div class="fitemelement"><input id="id_dbpass" name="dbpass" type="text" class="text-ltr" value="'.s($config->dbpass).'" size="50" /></div>';
3b093310 448 echo '</div>';
86453d8b 449
395e5e53 450 echo '<div class="fitem"><div class="fitemtitle"><label for="id_prefix">'.$strprefix.'</label></div>';
525ef9c8 451 echo '<div class="fitemelement"><input id="id_prefix" name="prefix" type="text" class="text-ltr" value="'.s($config->prefix).'" size="10" /></div>';
3b093310 452 echo '</div>';
fe515206 453
395e5e53 454 echo '<div class="fitem"><div class="fitemtitle"><label for="id_prefix">'.$strdbport.'</label></div>';
525ef9c8 455 echo '<div class="fitemelement"><input id="id_dbport" name="dbport" type="text" class="text-ltr" value="'.s($config->dbport).'" size="10" /></div>';
b29ca9b5
PS
456 echo '</div>';
457
3b093310 458 if (!(stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'darwin'))) {
395e5e53 459 echo '<div class="fitem"><div class="fitemtitle"><label for="id_dbsocket">'.$strdbsocket.'</label></div>';
525ef9c8 460 echo '<div class="fitemelement"><input id="id_dbsocket" name="dbsocket" type="text" class="text-ltr" value="'.s($config->dbsocket).'" size="50" /></div>';
3b093310 461 echo '</div>';
8b5b1028 462 }
463
395e5e53
AN
464 if ($hint_database !== '') {
465 echo '<div class="alert alert-error">'.$hint_database.'</div>';
466 }
3b093310 467 echo '</div>';
468 install_print_footer($config);
469 die;
8b5b1028 470}
471
472
3b093310 473if ($config->stage == INSTALL_DATABASETYPE) {
3a915b06
PS
474 $CFG->early_install_lang = false;
475
082157a8 476 // Finally ask for DB type
3b093310 477 install_print_header($config, get_string('database', 'install'),
478 get_string('databasetypehead', 'install'),
479 get_string('databasetypesub', 'install'));
51e3e0b9 480
3b093310 481 $databases = array('mysqli' => moodle_database::get_driver_instance('mysqli', 'native'),
17601a7e 482 'mariadb'=> moodle_database::get_driver_instance('mariadb', 'native'),
3b093310 483 'pgsql' => moodle_database::get_driver_instance('pgsql', 'native'),
484 'oci' => moodle_database::get_driver_instance('oci', 'native'),
7e60d0d6 485 'sqlsrv' => moodle_database::get_driver_instance('sqlsrv', 'native'), // MS SQL*Server PHP driver
a2b9bca5 486 'mssql' => moodle_database::get_driver_instance('mssql', 'native'), // FreeTDS driver
3b093310 487 );
51e3e0b9 488
3b093310 489 echo '<div class="userinput">';
395e5e53
AN
490 echo '<div class="fitem"><div class="fitemtitle"><label for="dbtype">'.get_string('dbtype', 'install').'</label></div>';
491 echo '<div class="fitemelement"><select id="dbtype" name="dbtype">';
3b093310 492 $disabled = array();
493 $options = array();
494 foreach ($databases as $type=>$database) {
495 if ($database->driver_installed() !== true) {
496 $disabled[$type] = $database;
497 continue;
498 }
499 echo '<option value="'.s($type).'">'.$database->get_name().'</option>';
51e3e0b9 500 }
3b093310 501 if ($disabled) {
502 echo '<optgroup label="'.s(get_string('notavailable')).'">';
503 foreach ($disabled as $type=>$database) {
504 echo '<option value="'.s($type).'" class="notavailable">'.$database->get_name().'</option>';
505 }
506 echo '</optgroup>';
8b5b1028 507 }
395e5e53 508 echo '</select></div></div>';
3b093310 509 echo '</div>';
53a0367d 510
3b093310 511 install_print_footer($config);
512 die;
8b5b1028 513}
514
515
516
3b093310 517if ($config->stage == INSTALL_ENVIRONMENT or $config->stage == INSTALL_PATHS) {
3a915b06
PS
518 $curl_fail = ($lang !== 'en' and !extension_loaded('curl')); // needed for lang pack download
519 $zip_fail = ($lang !== 'en' and !extension_loaded('zip')); // needed for lang pack download
8b5b1028 520
dbe0203b 521 if ($curl_fail or $zip_fail) {
3b093310 522 $config->stage = INSTALL_ENVIRONMENT;
8b5b1028 523
85ed076b 524 install_print_header($config, get_string('environmenthead', 'install'),
3b093310 525 get_string('errorsinenvironment', 'install'),
526 get_string('environmentsub2', 'install'));
8b5b1028 527
3b093310 528 echo '<div id="envresult"><dl>';
3b093310 529 if ($curl_fail) {
530 echo '<dt>'.get_string('phpextension', 'install', 'cURL').'</dt><dd>'.get_string('environmentrequireinstall', 'admin').'</dd>';
531 }
532 if ($zip_fail) {
533 echo '<dt>'.get_string('phpextension', 'install', 'Zip').'</dt><dd>'.get_string('environmentrequireinstall', 'admin').'</dd>';
534 }
535 echo '</dl></div>';
8d783716 536
3b093310 537 install_print_footer($config, true);
538 die;
51e3e0b9 539
8b5b1028 540 } else {
3b093310 541 $config->stage = INSTALL_PATHS;
8b5b1028 542 }
8b5b1028 543}
544
8b5b1028 545
8b5b1028 546
3b093310 547if ($config->stage == INSTALL_PATHS) {
548 $paths = array('wwwroot' => get_string('wwwroot', 'install'),
549 'dirroot' => get_string('dirroot', 'install'),
3b5ff37f 550 'dataroot' => get_string('dataroot', 'install'));
627d326a 551
3b093310 552 $sub = '<dl>';
553 foreach ($paths as $path=>$name) {
554 $sub .= '<dt>'.$name.'</dt><dd>'.get_string('pathssub'.$path, 'install').'</dd>';
8b5b1028 555 }
3b5ff37f
PS
556 if (!file_exists("$CFG->dirroot/admin/environment.xml")) {
557 $sub .= '<dt>'.get_string('admindirname', 'install').'</dt><dd>'.get_string('pathssubadmindir', 'install').'</dd>';
558 }
3b093310 559 $sub .= '</dl>';
cd0e958e 560
3b093310 561 install_print_header($config, get_string('paths', 'install'), get_string('pathshead', 'install'), $sub);
627d326a 562
3b093310 563 $strwwwroot = get_string('wwwroot', 'install');
564 $strdirroot = get_string('dirroot', 'install');
565 $strdataroot = get_string('dataroot', 'install');
566 $stradmindirname = get_string('admindirname', 'install');
cdef6d42 567
3b093310 568 echo '<div class="userinput">';
395e5e53 569 echo '<div class="fitem"><div class="fitemtitle"><label for="id_wwwroot">'.$paths['wwwroot'].'</label></div>';
525ef9c8 570 echo '<div class="fitemelement"><input id="id_wwwroot" name="wwwroot" type="text" class="text-ltr" value="'.s($CFG->wwwroot).'" disabled="disabled" size="70" /></div>';
3b093310 571 echo '</div>';
cd0e958e 572
395e5e53 573 echo '<div class="fitem"><div class="fitemtitle"><label for="id_dirroot">'.$paths['dirroot'].'</label></div>';
525ef9c8 574 echo '<div class="fitemelement"><input id="id_dirroot" name="dirroot" type="text" class="text-ltr" value="'.s($CFG->dirroot).'" disabled="disabled" size="70" /></div>';
3b093310 575 echo '</div>';
53a0367d 576
395e5e53 577 echo '<div class="fitem"><div class="fitemtitle"><label for="id_dataroot">'.$paths['dataroot'].'</label></div>';
525ef9c8 578 echo '<div class="fitemelement"><input id="id_dataroot" name="dataroot" type="text" class="text-ltr" value="'.s($config->dataroot).'" size="70" /></div>';
3b093310 579 if ($hint_dataroot !== '') {
395e5e53 580 echo '<div class="alert alert-error">'.$hint_dataroot.'</div>';
cdef6d42 581 }
3b093310 582 echo '</div>';
8b5b1028 583
8d783716 584
3b5ff37f 585 if (!file_exists("$CFG->dirroot/admin/environment.xml")) {
395e5e53 586 echo '<div class="fitem"><div class="fitemtitle"><label for="id_admin">'.$paths['admindir'].'</label></div>';
525ef9c8 587 echo '<div class="fitemelement"><input id="id_admin" name="admin" type="text" class="text-ltr" value="'.s($config->admin).'" size="10" /></div>';
3b5ff37f 588 if ($hint_admindir !== '') {
395e5e53 589 echo '<div class="alert alert-error">'.$hint_admindir.'</div>';
3b5ff37f
PS
590 }
591 echo '</div>';
8d783716 592 }
8d783716 593
3b093310 594 echo '</div>';
8d783716 595
3b093310 596 install_print_footer($config);
597 die;
8d783716 598}
599
86453d8b 600
86453d8b 601
3b093310 602$config->stage = INSTALL_WELCOME;
64c368e3 603
604if ($distro) {
605 ob_start();
606 include('install/distribution.html');
607 $sub = ob_get_clean();
608
609 install_print_header($config, get_string('language'),
610 get_string('chooselanguagehead', 'install'),
395e5e53 611 $sub, 'alert-success');
082157a8 612
64c368e3 613} else {
614 install_print_header($config, get_string('language'),
615 get_string('chooselanguagehead', 'install'),
616 get_string('chooselanguagesub', 'install'));
617}
86453d8b 618
1f96e907 619$languages = get_string_manager()->get_list_of_translations();
3b093310 620echo '<div class="userinput">';
395e5e53
AN
621echo '<div class="fitem"><div class="fitemtitle"><label for="langselect">'.get_string('language').'</label></div>';
622echo '<div class="fitemelement"><select id="langselect" name="lang" onchange="this.form.submit()">';
3b093310 623foreach ($languages as $name=>$value) {
624 $selected = ($name == $CFG->lang) ? 'selected="selected"' : '';
625 echo '<option value="'.s($name).'" '.$selected.'>'.$value.'</option>';
86453d8b 626}
395e5e53 627echo '</select></div></div>';
3b093310 628echo '</div>';
86453d8b 629
3b093310 630install_print_footer($config);
631die;
2961367e 632