Moodle release 2.6.2
[moodle.git] / install.php
blob0c250a05f3094b9e8c54632334eaef9c4d871819
1 <?php
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.
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/>.
18 /**
19 * This script creates config.php file during installation.
21 * @package core
22 * @subpackage install
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']);
29 } else {
30 $lang = 'en';
33 if (isset($_REQUEST['admin'])) {
34 $admin = preg_replace('/[^A-Za-z0-9_-]/i', '', $_REQUEST['admin']);
35 } else {
36 $admin = '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");
43 die;
46 define('CLI_SCRIPT', false); // prevents some warnings later
47 define('AJAX_SCRIPT', false); // prevents some warnings later
48 define('CACHE_DISABLE_ALL', true); // Disables caching.. just in case.
49 define('PHPUNIT_TEST', false);
50 define('IGNORE_COMPONENT_CACHE', true);
52 // Servers should define a default timezone in php.ini, but if they don't then make sure something is defined.
53 // This is a quick hack. Ideally we should ask the admin for a value. See MDL-22625 for more on this.
54 if (function_exists('date_default_timezone_set') and function_exists('date_default_timezone_get')) {
55 @date_default_timezone_set(@date_default_timezone_get());
58 // make sure PHP errors are displayed - helps with diagnosing of problems
59 @error_reporting(E_ALL);
60 @ini_set('display_errors', '1');
62 // Check that PHP is of a sufficient version.
63 if (version_compare(phpversion(), '5.3.3') < 0) {
64 $phpversion = phpversion();
65 // do NOT localise - lang strings would not work here and we CAN not move it after installib
66 echo "Moodle 2.5 or later requires at least PHP 5.3.3 (currently using version $phpversion).<br />";
67 echo "Please upgrade your server software or install older Moodle version.";
68 die;
71 // make sure iconv is available and actually works
72 if (!function_exists('iconv')) {
73 // this should not happen, this must be very borked install
74 echo 'Moodle requires the iconv PHP extension. Please install or enable the iconv extension.';
75 die();
78 if (PHP_INT_SIZE > 4) {
79 // most probably 64bit PHP - we need a lot more memory
80 $minrequiredmemory = '70M';
81 } else {
82 // 32bit PHP
83 $minrequiredmemory = '40M';
85 // increase or decrease available memory - we need to make sure moodle
86 // installs even with low memory, otherwise developers would overlook
87 // sudden increases of memory needs ;-)
88 @ini_set('memory_limit', $minrequiredmemory);
90 /** Used by library scripts to check they are being called by Moodle */
91 define('MOODLE_INTERNAL', true);
93 require_once(__DIR__.'/lib/classes/component.php');
94 require_once(__DIR__.'/lib/installlib.php');
96 // TODO: add lang detection here if empty $_REQUEST['lang']
98 // distro specific customisation
99 $distro = null;
100 if (file_exists('install/distrolib.php')) {
101 require_once('install/distrolib.php');
102 if (function_exists('distro_get_config')) {
103 $distro = distro_get_config();
107 $config = new stdClass();
108 $config->lang = $lang;
110 if (!empty($_POST)) {
111 if (install_ini_get_bool('magic_quotes_gpc')) {
112 $_POST = array_map('stripslashes', $_POST);
115 $config->stage = (int)$_POST['stage'];
117 if (isset($_POST['previous'])) {
118 $config->stage--;
119 if (INSTALL_DATABASETYPE and !empty($distro->dbtype)) {
120 $config->stage--;
122 if ($config->stage == INSTALL_ENVIRONMENT or $config->stage == INSTALL_DOWNLOADLANG) {
123 $config->stage--;
125 } else if (isset($_POST['next'])) {
126 $config->stage++;
129 $config->dbtype = trim($_POST['dbtype']);
130 $config->dbhost = trim($_POST['dbhost']);
131 $config->dbuser = trim($_POST['dbuser']);
132 $config->dbpass = trim($_POST['dbpass']);
133 $config->dbname = trim($_POST['dbname']);
134 $config->prefix = trim($_POST['prefix']);
135 $config->dbport = (int)trim($_POST['dbport']);
136 $config->dbsocket = trim($_POST['dbsocket']);
138 if ($config->dbport <= 0) {
139 $config->dbport = '';
142 $config->admin = empty($_POST['admin']) ? 'admin' : trim($_POST['admin']);
144 $config->dataroot = trim($_POST['dataroot']);
146 } else {
147 $config->stage = INSTALL_WELCOME;
149 $config->dbtype = empty($distro->dbtype) ? '' : $distro->dbtype; // let distro skip dbtype selection
150 $config->dbhost = empty($distro->dbhost) ? 'localhost' : $distro->dbhost; // let distros set dbhost
151 $config->dbuser = empty($distro->dbuser) ? '' : $distro->dbuser; // let distros set dbuser
152 $config->dbpass = '';
153 $config->dbname = 'moodle';
154 $config->prefix = 'mdl_';
155 $config->dbport = empty($distro->dbport) ? '' : $distro->dbport;
156 $config->dbsocket = empty($distro->dbsocket) ? '' : $distro->dbsocket;
158 $config->admin = 'admin';
160 $config->dataroot = empty($distro->dataroot) ? null : $distro->dataroot; // initialised later after including libs or by distro
163 // Fake some settings so that we can use selected functions from moodlelib.php, weblib.php and filelib.php.
164 global $CFG;
165 $CFG = new stdClass();
166 $CFG->lang = $config->lang;
167 $CFG->dirroot = dirname(__FILE__);
168 $CFG->libdir = "$CFG->dirroot/lib";
169 $CFG->wwwroot = install_guess_wwwroot(); // can not be changed - ppl must use the real address when installing
170 $CFG->httpswwwroot = $CFG->wwwroot;
171 $CFG->dataroot = $config->dataroot;
172 $CFG->tempdir = $CFG->dataroot.'/temp';
173 $CFG->cachedir = $CFG->dataroot.'/cache';
174 $CFG->localcachedir = $CFG->dataroot.'/localcache';
175 $CFG->admin = $config->admin;
176 $CFG->docroot = 'http://docs.moodle.org';
177 $CFG->langotherroot = $CFG->dataroot.'/lang';
178 $CFG->langlocalroot = $CFG->dataroot.'/lang';
179 $CFG->directorypermissions = isset($distro->directorypermissions) ? $distro->directorypermissions : 00777; // let distros set dir permissions
180 $CFG->filepermissions = ($CFG->directorypermissions & 0666);
181 $CFG->umaskpermissions = (($CFG->directorypermissions & 0777) ^ 0777);
182 $CFG->running_installer = true;
183 $CFG->early_install_lang = true;
184 $CFG->ostype = (stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'darwin')) ? 'WINDOWS' : 'UNIX';
185 $CFG->debug = (E_ALL | E_STRICT);
186 $CFG->debugdisplay = true;
187 $CFG->debugdeveloper = true;
189 // Require all needed libs
190 require_once($CFG->libdir.'/setuplib.php');
192 // we need to make sure we have enough memory to load all libraries
193 $memlimit = @ini_get('memory_limit');
194 if (!empty($memlimit) and $memlimit != -1) {
195 if (get_real_size($memlimit) < get_real_size($minrequiredmemory)) {
196 // do NOT localise - lang strings would not work here and we CAN not move it to later place
197 echo "Moodle requires at least {$minrequiredmemory}B of PHP memory.<br />";
198 echo "Please contact server administrator to fix PHP.ini memory settings.";
199 die;
203 // Continue with lib loading
204 require_once($CFG->libdir.'/classes/text.php');
205 require_once($CFG->libdir.'/classes/string_manager.php');
206 require_once($CFG->libdir.'/classes/string_manager_install.php');
207 require_once($CFG->libdir.'/classes/string_manager_standard.php');
208 require_once($CFG->libdir.'/weblib.php');
209 require_once($CFG->libdir.'/outputlib.php');
210 require_once($CFG->libdir.'/dmllib.php');
211 require_once($CFG->libdir.'/moodlelib.php');
212 require_once($CFG->libdir .'/pagelib.php');
213 require_once($CFG->libdir.'/deprecatedlib.php');
214 require_once($CFG->libdir.'/adminlib.php');
215 require_once($CFG->libdir.'/environmentlib.php');
216 require_once($CFG->libdir.'/componentlib.class.php');
217 require_once($CFG->dirroot.'/cache/lib.php');
219 //point pear include path to moodles lib/pear so that includes and requires will search there for files before anywhere else
220 //the problem is that we need specific version of quickforms and hacked excel files :-(
221 ini_set('include_path', $CFG->libdir.'/pear' . PATH_SEPARATOR . ini_get('include_path'));
222 //point zend include path to moodles lib/zend so that includes and requires will search there for files before anywhere else
223 ini_set('include_path', $CFG->libdir.'/zend' . PATH_SEPARATOR . ini_get('include_path'));
225 // Register our classloader, in theory somebody might want to replace it to load other hacked core classes.
226 // Required because the database checks below lead to session interaction which is going to lead us to requiring autoloaded classes.
227 if (defined('COMPONENT_CLASSLOADER')) {
228 spl_autoload_register(COMPONENT_CLASSLOADER);
229 } else {
230 spl_autoload_register('core_component::classloader');
233 require('version.php');
234 $CFG->target_release = $release;
236 $_SESSION = array();
237 $_SESSION['SESSION'] = new stdClass();
238 $_SESSION['SESSION']->lang = $CFG->lang;
239 $_SESSION['USER'] = new stdClass();
240 $_SESSION['USER']->id = 0;
241 $_SESSION['USER']->mnethostid = 1;
243 global $SESSION;
244 global $USER;
245 $SESSION = &$_SESSION['SESSION'];
246 $USER = &$_SESSION['USER'];
248 global $COURSE;
249 $COURSE = new stdClass();
250 $COURSE->id = 1;
252 global $SITE;
253 $SITE = $COURSE;
254 define('SITEID', 1);
256 $hint_dataroot = '';
257 $hint_admindir = '';
258 $hint_database = '';
260 // Are we in help mode?
261 if (isset($_GET['help'])) {
262 install_print_help_page($_GET['help']);
265 //first time here? find out suitable dataroot
266 if (is_null($CFG->dataroot)) {
267 $CFG->dataroot = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'moodledata';
269 $i = 0; //safety check - dirname might return some unexpected results
270 while(is_dataroot_insecure()) {
271 $parrent = dirname($CFG->dataroot);
272 $i++;
273 if ($parrent == '/' or $parrent == '.' or preg_match('/^[a-z]:\\\?$/i', $parrent) or ($i > 100)) {
274 $CFG->dataroot = ''; //can not find secure location for dataroot
275 break;
277 $CFG->dataroot = dirname($parrent).DIRECTORY_SEPARATOR.'moodledata';
279 $config->dataroot = $CFG->dataroot;
280 $config->stage = INSTALL_WELCOME;
283 // now let's do the stage work
284 if ($config->stage < INSTALL_WELCOME) {
285 $config->stage = INSTALL_WELCOME;
287 if ($config->stage > INSTALL_SAVE) {
288 $config->stage = INSTALL_SAVE;
293 if ($config->stage == INSTALL_SAVE) {
294 $CFG->early_install_lang = false;
296 $database = moodle_database::get_driver_instance($config->dbtype, 'native');
297 if (!$database->driver_installed()) {
298 $config->stage = INSTALL_DATABASETYPE;
299 } else {
300 if (function_exists('distro_pre_create_db')) { // Hook for distros needing to do something before DB creation
301 $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);
303 $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));
305 if ($hint_database === '') {
306 $configphp = install_generate_configphp($database, $CFG);
308 umask(0137);
309 if (($fh = @fopen($configfile, 'w')) !== false) {
310 fwrite($fh, $configphp);
311 fclose($fh);
314 if (file_exists($configfile)) {
315 // config created, let's continue!
316 redirect("$CFG->wwwroot/$config->admin/index.php?lang=$config->lang");
319 install_print_header($config, 'config.php',
320 get_string('configurationcompletehead', 'install'),
321 get_string('configurationcompletesub', 'install').get_string('configfilenotwritten', 'install'));
322 echo '<div class="configphp"><pre>';
323 echo p($configphp);
324 echo '</pre></div>';
326 install_print_footer($config);
327 die;
329 } else {
330 $config->stage = INSTALL_DATABASE;
337 if ($config->stage == INSTALL_DOWNLOADLANG) {
338 if (empty($CFG->dataroot)) {
339 $config->stage = INSTALL_PATHS;
341 } else if (is_dataroot_insecure()) {
342 $hint_dataroot = get_string('pathsunsecuredataroot', 'install');
343 $config->stage = INSTALL_PATHS;
345 } else if (!file_exists($CFG->dataroot)) {
346 $a = new stdClass();
347 $a->parent = dirname($CFG->dataroot);
348 $a->dataroot = $CFG->dataroot;
349 if (!is_writable($a->parent)) {
350 $hint_dataroot = get_string('pathsroparentdataroot', 'install', $a);
351 $config->stage = INSTALL_PATHS;
352 } else {
353 if (!install_init_dataroot($CFG->dataroot, $CFG->directorypermissions)) {
354 $hint_dataroot = get_string('pathserrcreatedataroot', 'install', $a);
355 $config->stage = INSTALL_PATHS;
359 } else if (!install_init_dataroot($CFG->dataroot, $CFG->directorypermissions)) {
360 $hint_dataroot = get_string('pathserrcreatedataroot', 'install', array('dataroot' => $CFG->dataroot));
361 $config->stage = INSTALL_PATHS;
364 if (empty($hint_dataroot) and !is_writable($CFG->dataroot)) {
365 $hint_dataroot = get_string('pathsrodataroot', 'install');
366 $config->stage = INSTALL_PATHS;
369 if ($config->admin === '' or !file_exists($CFG->dirroot.'/'.$config->admin.'/environment.xml')) {
370 $hint_admindir = get_string('pathswrongadmindir', 'install');
371 $config->stage = INSTALL_PATHS;
377 if ($config->stage == INSTALL_DOWNLOADLANG) {
378 // no need to download anything if en lang selected
379 if ($CFG->lang == 'en') {
380 $config->stage = INSTALL_DATABASETYPE;
386 if ($config->stage == INSTALL_DATABASETYPE) {
387 // skip db selection if distro package supports only one db
388 if (!empty($distro->dbtype)) {
389 $config->stage = INSTALL_DATABASE;
394 if ($config->stage == INSTALL_DOWNLOADLANG) {
395 $downloaderror = '';
397 // download and install required lang packs, the lang dir has already been created in install_init_dataroot
398 $installer = new lang_installer($CFG->lang);
399 $results = $installer->run();
400 foreach ($results as $langcode => $langstatus) {
401 if ($langstatus === lang_installer::RESULT_DOWNLOADERROR) {
402 $a = new stdClass();
403 $a->url = $installer->lang_pack_url($langcode);
404 $a->dest = $CFG->dataroot.'/lang';
405 $downloaderror = get_string('remotedownloaderror', 'error', $a);
409 if ($downloaderror !== '') {
410 install_print_header($config, get_string('language'), get_string('langdownloaderror', 'install', $CFG->lang), $downloaderror);
411 install_print_footer($config);
412 die;
413 } else {
414 if (empty($distro->dbtype)) {
415 $config->stage = INSTALL_DATABASETYPE;
416 } else {
417 $config->stage = INSTALL_DATABASE;
421 // switch the string_manager instance to stop using install/lang/
422 $CFG->early_install_lang = false;
423 $CFG->langotherroot = $CFG->dataroot.'/lang';
424 $CFG->langlocalroot = $CFG->dataroot.'/lang';
425 get_string_manager(true);
429 if ($config->stage == INSTALL_DATABASE) {
430 $CFG->early_install_lang = false;
432 $database = moodle_database::get_driver_instance($config->dbtype, 'native');
434 $sub = '<h3>'.$database->get_name().'</h3>'.$database->get_configuration_help();
436 install_print_header($config, get_string('database', 'install'), get_string('databasehead', 'install'), $sub);
438 $strdbhost = get_string('databasehost', 'install');
439 $strdbname = get_string('databasename', 'install');
440 $strdbuser = get_string('databaseuser', 'install');
441 $strdbpass = get_string('databasepass', 'install');
442 $strprefix = get_string('dbprefix', 'install');
443 $strdbport = get_string('databaseport', 'install');
444 $strdbsocket = get_string('databasesocket', 'install');
446 echo '<div class="userinput">';
448 $disabled = empty($distro->dbhost) ? '' : 'disabled="disabled';
449 echo '<div class="formrow"><label for="id_dbhost" class="formlabel">'.$strdbhost.'</label>';
450 echo '<input id="id_dbhost" name="dbhost" '.$disabled.' type="text" value="'.s($config->dbhost).'" size="50" class="forminput" />';
451 echo '</div>';
453 echo '<div class="formrow"><label for="id_dbname" class="formlabel">'.$strdbname.'</label>';
454 echo '<input id="id_dbname" name="dbname" type="text" value="'.s($config->dbname).'" size="50" class="forminput" />';
455 echo '</div>';
457 $disabled = empty($distro->dbuser) ? '' : 'disabled="disabled';
458 echo '<div class="formrow"><label for="id_dbuser" class="formlabel">'.$strdbuser.'</label>';
459 echo '<input id="id_dbuser" name="dbuser" '.$disabled.' type="text" value="'.s($config->dbuser).'" size="50" class="forminput" />';
460 echo '</div>';
462 echo '<div class="formrow"><label for="id_dbpass" class="formlabel">'.$strdbpass.'</label>';
463 // no password field here, the password may be visible in config.php if we can not write it to disk
464 echo '<input id="id_dbpass" name="dbpass" type="text" value="'.s($config->dbpass).'" size="50" class="forminput" />';
465 echo '</div>';
467 echo '<div class="formrow"><label for="id_prefix" class="formlabel">'.$strprefix.'</label>';
468 echo '<input id="id_prefix" name="prefix" type="text" value="'.s($config->prefix).'" size="10" class="forminput" />';
469 echo '</div>';
471 echo '<div class="formrow"><label for="id_prefix" class="formlabel">'.$strdbport.'</label>';
472 echo '<input id="id_dbport" name="dbport" type="text" value="'.s($config->dbport).'" size="10" class="forminput" />';
473 echo '</div>';
475 if (!(stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'darwin'))) {
476 echo '<div class="formrow"><label for="id_dbsocket" class="formlabel">'.$strdbsocket.'</label>';
477 echo '<input id="id_dbsocket" name="dbsocket" type="text" value="'.s($config->dbsocket).'" size="50" class="forminput" />';
478 echo '</div>';
481 echo '<div class="hint">'.$hint_database.'</div>';
482 echo '</div>';
483 install_print_footer($config);
484 die;
488 if ($config->stage == INSTALL_DATABASETYPE) {
489 $CFG->early_install_lang = false;
491 // Finally ask for DB type
492 install_print_header($config, get_string('database', 'install'),
493 get_string('databasetypehead', 'install'),
494 get_string('databasetypesub', 'install'));
496 $databases = array('mysqli' => moodle_database::get_driver_instance('mysqli', 'native'),
497 'mariadb'=> moodle_database::get_driver_instance('mariadb', 'native'),
498 'pgsql' => moodle_database::get_driver_instance('pgsql', 'native'),
499 'oci' => moodle_database::get_driver_instance('oci', 'native'),
500 'sqlsrv' => moodle_database::get_driver_instance('sqlsrv', 'native'), // MS SQL*Server PHP driver
501 'mssql' => moodle_database::get_driver_instance('mssql', 'native'), // FreeTDS driver
504 echo '<div class="userinput">';
505 echo '<div class="formrow"><label class="formlabel" for="dbtype">'.get_string('dbtype', 'install').'</label>';
506 echo '<select id="dbtype" name="dbtype" class="forminput">';
507 $disabled = array();
508 $options = array();
509 foreach ($databases as $type=>$database) {
510 if ($database->driver_installed() !== true) {
511 $disabled[$type] = $database;
512 continue;
514 echo '<option value="'.s($type).'">'.$database->get_name().'</option>';
516 if ($disabled) {
517 echo '<optgroup label="'.s(get_string('notavailable')).'">';
518 foreach ($disabled as $type=>$database) {
519 echo '<option value="'.s($type).'" class="notavailable">'.$database->get_name().'</option>';
521 echo '</optgroup>';
523 echo '</select></div>';
524 echo '</div>';
526 install_print_footer($config);
527 die;
532 if ($config->stage == INSTALL_ENVIRONMENT or $config->stage == INSTALL_PATHS) {
533 $version_fail = (version_compare(phpversion(), "5.3.3") < 0);
534 $curl_fail = ($lang !== 'en' and !extension_loaded('curl')); // needed for lang pack download
535 $zip_fail = ($lang !== 'en' and !extension_loaded('zip')); // needed for lang pack download
537 if ($version_fail or $curl_fail or $zip_fail) {
538 $config->stage = INSTALL_ENVIRONMENT;
540 install_print_header($config, get_string('environmenthead', 'install'),
541 get_string('errorsinenvironment', 'install'),
542 get_string('environmentsub2', 'install'));
544 echo '<div id="envresult"><dl>';
545 if ($version_fail) {
546 $a = (object)array('needed'=>'5.3.3', 'current'=>phpversion());
547 echo '<dt>'.get_string('phpversion', 'install').'</dt><dd>'.get_string('environmentrequireversion', 'admin', $a).'</dd>';
549 if ($curl_fail) {
550 echo '<dt>'.get_string('phpextension', 'install', 'cURL').'</dt><dd>'.get_string('environmentrequireinstall', 'admin').'</dd>';
552 if ($zip_fail) {
553 echo '<dt>'.get_string('phpextension', 'install', 'Zip').'</dt><dd>'.get_string('environmentrequireinstall', 'admin').'</dd>';
555 echo '</dl></div>';
557 install_print_footer($config, true);
558 die;
560 } else {
561 $config->stage = INSTALL_PATHS;
567 if ($config->stage == INSTALL_PATHS) {
568 $paths = array('wwwroot' => get_string('wwwroot', 'install'),
569 'dirroot' => get_string('dirroot', 'install'),
570 'dataroot' => get_string('dataroot', 'install'));
572 $sub = '<dl>';
573 foreach ($paths as $path=>$name) {
574 $sub .= '<dt>'.$name.'</dt><dd>'.get_string('pathssub'.$path, 'install').'</dd>';
576 if (!file_exists("$CFG->dirroot/admin/environment.xml")) {
577 $sub .= '<dt>'.get_string('admindirname', 'install').'</dt><dd>'.get_string('pathssubadmindir', 'install').'</dd>';
579 $sub .= '</dl>';
581 install_print_header($config, get_string('paths', 'install'), get_string('pathshead', 'install'), $sub);
583 $strwwwroot = get_string('wwwroot', 'install');
584 $strdirroot = get_string('dirroot', 'install');
585 $strdataroot = get_string('dataroot', 'install');
586 $stradmindirname = get_string('admindirname', 'install');
588 echo '<div class="userinput">';
589 echo '<div class="formrow"><label for="id_wwwroot" class="formlabel">'.$paths['wwwroot'].'</label>';
590 echo '<input id="id_wwwroot" name="wwwroot" type="text" value="'.s($CFG->wwwroot).'" disabled="disabled" size="70" class="forminput" />';
591 echo '</div>';
593 echo '<div class="formrow"><label for="id_dirroot" class="formlabel">'.$paths['dirroot'].'</label>';
594 echo '<input id="id_dirroot" name="dirroot" type="text" value="'.s($CFG->dirroot).'" disabled="disabled" size="70"class="forminput" />';
595 echo '</div>';
597 echo '<div class="formrow"><label for="id_dataroot" class="formlabel">'.$paths['dataroot'].'</label>';
598 echo '<input id="id_dataroot" name="dataroot" type="text" value="'.s($config->dataroot).'" size="70" class="forminput" />';
599 if ($hint_dataroot !== '') {
600 echo '<div class="hint">'.$hint_dataroot.'</div>';
602 echo '</div>';
605 if (!file_exists("$CFG->dirroot/admin/environment.xml")) {
606 echo '<div class="formrow"><label for="id_admin" class="formlabel">'.$paths['admindir'].'</label>';
607 echo '<input id="id_admin" name="admin" type="text" value="'.s($config->admin).'" size="10" class="forminput" />';
608 if ($hint_admindir !== '') {
609 echo '<div class="hint">'.$hint_admindir.'</div>';
611 echo '</div>';
614 echo '</div>';
616 install_print_footer($config);
617 die;
622 $config->stage = INSTALL_WELCOME;
624 if ($distro) {
625 ob_start();
626 include('install/distribution.html');
627 $sub = ob_get_clean();
629 install_print_header($config, get_string('language'),
630 get_string('chooselanguagehead', 'install'),
631 $sub);
633 } else {
634 install_print_header($config, get_string('language'),
635 get_string('chooselanguagehead', 'install'),
636 get_string('chooselanguagesub', 'install'));
639 $languages = get_string_manager()->get_list_of_translations();
640 echo '<div class="userinput">';
641 echo '<div class="formrow"><label class="formlabel" for="langselect">'.get_string('language').'</label>';
642 echo '<select id="langselect" name="lang" class="forminput" onchange="this.form.submit()">';
643 foreach ($languages as $name=>$value) {
644 $selected = ($name == $CFG->lang) ? 'selected="selected"' : '';
645 echo '<option value="'.s($name).'" '.$selected.'>'.$value.'</option>';
647 echo '</select></div>';
648 echo '</div>';
650 install_print_footer($config);
651 die;