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 if (version_compare(phpversion(), "5.2.0") < 0) {
55 $phpversion = phpversion();
56 // do NOT localise - lang strings would not work here and we CAN not move it after installib
57 echo "Sorry, Moodle 2.0 requires PHP 5.2.8 or later (currently using version $phpversion).<br />";
58 echo "Please upgrade your server software or install latest Moodle 1.9.x instead.";
62 if (PHP_INT_SIZE > 4) {
63 // most probably 64bit PHP - we need a lot more memory
64 $minrequiredmemory = '70M';
67 $minrequiredmemory = '40M';
69 // increase or decrease available memory - we need to make sure moodle
70 // installs even with low memory, otherwise developers would overlook
71 // sudden increases of memory needs ;-)
72 @ini_set('memory_limit', $minrequiredmemory);
74 require dirname(__FILE__).'/lib/installlib.php';
76 // TODO: add lang detection here if empty $_REQUEST['lang']
78 // distro specific customisation
80 if (file_exists('install/distrolib.php')) {
81 require_once('install/distrolib.php');
82 if (function_exists('distro_get_config')) {
83 $distro = distro_get_config();
87 $config = new stdClass();
88 $config->lang = $lang;
91 if (install_ini_get_bool('magic_quotes_gpc')) {
92 $_POST = array_map('stripslashes', $_POST);
95 $config->stage = (int)$_POST['stage'];
97 if (isset($_POST['previous'])) {
99 if (INSTALL_DATABASETYPE and !empty($distro->dbtype)) {
102 if ($config->stage == INSTALL_ENVIRONMENT or $config->stage == INSTALL_DOWNLOADLANG) {
105 } else if (isset($_POST['next'])) {
109 $config->dbtype = trim($_POST['dbtype']);
110 $config->dbhost = trim($_POST['dbhost']);
111 $config->dbuser = trim($_POST['dbuser']);
112 $config->dbpass = trim($_POST['dbpass']);
113 $config->dbname = trim($_POST['dbname']);
114 $config->prefix = trim($_POST['prefix']);
115 $config->dbsocket = (int)(!empty($_POST['dbsocket']));
117 $config->dirroot = trim($_POST['dirroot']);
118 $config->admin = empty($_POST['admin']) ? 'admin' : trim($_POST['admin']);
120 $config->dataroot = trim($_POST['dataroot']);
123 $config->stage = INSTALL_WELCOME;
125 $config->dbtype = empty($distro->dbtype) ? '' : $distro->dbtype; // let distro skip dbtype selection
126 $config->dbhost = empty($distro->dbhost) ? 'localhost' : $distro->dbhost; // let distros set dbhost
127 $config->dbuser = empty($distro->dbuser) ? '' : $distro->dbuser; // let distros set dbuser
128 $config->dbpass = '';
129 $config->dbname = 'moodle';
130 $config->prefix = 'mdl_';
131 $config->dbsocket = 0;
133 $config->dirroot = str_replace('\\', '/', dirname(__FILE__)); // Fix for win32
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 = str_replace('\\', '/', dirname(__FILE__)); // Fix for win32
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->directorypermissions = 00777;
150 $CFG->running_installer = true;
152 // Require all needed libs
153 require_once($CFG->libdir.'/setuplib.php');
155 // we need to make sure we have enough memory to load all libraries
156 $memlimit = @ini_get('memory_limit');
157 if (!empty($memlimit) and $memlimit != -1) {
158 if (get_real_size($memlimit) < get_real_size($minrequiredmemory)) {
159 // do NOT localise - lang strings would not work here and we CAN not move it to later place
160 echo "Sorry, Moodle 2.0 requires at least {$minrequiredmemory}B of PHP memory.<br />";
161 echo "Please contact server administrator to fix PHP.ini memory settings.";
166 // Continue with lib loading
167 require_once($CFG->libdir.'/textlib.class.php');
168 require_once($CFG->libdir.'/weblib.php');
169 require_once($CFG->libdir.'/outputlib.php');
170 require_once($CFG->libdir.'/dmllib.php');
171 require_once($CFG->libdir.'/moodlelib.php');
172 require_once($CFG->libdir .'/pagelib.php');
173 require_once($CFG->libdir.'/deprecatedlib.php');
174 require_once($CFG->libdir.'/adminlib.php');
175 require_once($CFG->libdir.'/environmentlib.php');
176 require_once($CFG->libdir.'/xmlize.php');
177 require_once($CFG->libdir.'/componentlib.class.php');
179 //point pear include path to moodles lib/pear so that includes and requires will search there for files before anywhere else
180 //the problem is that we need specific version of quickforms and hacked excel files :-(
181 ini_set('include_path', $CFG->libdir.'/pear' . PATH_SEPARATOR . ini_get('include_path'));
182 //point zend include path to moodles lib/zend so that includes and requires will search there for files before anywhere else
183 ini_set('include_path', $CFG->libdir.'/zend' . PATH_SEPARATOR . ini_get('include_path'));
185 require('version.php');
186 $CFG->target_release = $release;
188 $SESSION = new object();
189 $SESSION->lang = $CFG->lang;
191 $USER = new object();
194 $COURSE = new object();
205 // Are we in help mode?
206 if (isset($_GET['help'])) {
207 install_print_help_page($_GET['help']);
211 if (isset($_GET['css'])) {
212 install_css_styles();
215 //first time here? find out suitable dataroot
216 if (is_null($CFG->dataroot)) {
217 $CFG->dataroot = str_replace('\\', '/', dirname(dirname(__FILE__)).'/moodledata');
219 $i = 0; //safety check - dirname might return some unexpected results
220 while(is_dataroot_insecure()) {
221 $parrent = dirname($CFG->dataroot);
223 if ($parrent == '/' or $parrent == '.' or preg_match('/^[a-z]:\\\?$/i', $parrent) or ($i > 100)) {
224 $CFG->dataroot = ''; //can not find secure location for dataroot
227 $CFG->dataroot = dirname($parrent).'/moodledata';
229 $config->dataroot = $CFG->dataroot;
230 $config->stage = INSTALL_WELCOME;
233 // now let's do the stage work
234 if ($config->stage < INSTALL_WELCOME) {
235 $config->stage = INSTALL_WELCOME;
237 if ($config->stage > INSTALL_SAVE) {
238 $config->stage = INSTALL_SAVE;
243 if ($config->stage == INSTALL_SAVE) {
244 $database = moodle_database::get_driver_instance($config->dbtype, 'native');
245 if (!$database->driver_installed()) {
246 $config->stage = INSTALL_DATABASETYPE;
248 if (function_exists('distro_pre_create_db')) { // Hook for distros needing to do something before DB creation
249 $distro = distro_pre_create_db($database, $config->dbhost, $config->dbuser, $config->dbpass, $config->dbname, $config->prefix, array('dbpersist'=>0, 'dbsocket'=>$config->dbsocket), $distro);
251 $hint_database = install_db_validate($database, $config->dbhost, $config->dbuser, $config->dbpass, $config->dbname, $config->prefix, array('dbpersist'=>0, 'dbsocket'=>$config->dbsocket));
253 if ($hint_database === '') {
254 // extra hackery needed for symbolic link support
255 if ($CFG->dirroot !== $config->dirroot) {
256 $CFG->dirroot = $config->dirroot;
259 $userealpath = false;
261 $configphp = install_generate_configphp($database, $CFG, $userealpath);
264 if (($fh = @fopen($configfile, 'w')) !== false) {
265 fwrite($fh, $configphp);
269 if (file_exists($configfile)) {
270 // config created, let's continue!
271 redirect("$CFG->wwwroot/$config->admin/index.php?lang=$config->lang");
274 install_print_header($config, 'config.php',
275 get_string('configurationcompletehead', 'install'),
276 get_string('configurationcompletesub', 'install').get_string('configfilenotwritten', 'install'));
277 echo '<div class="configphp"><pre>';
281 install_print_footer($config);
285 $config->stage = INSTALL_DATABASE;
292 if ($config->stage == INSTALL_DOWNLOADLANG) {
293 if (empty($CFG->dataroot)) {
294 $config->stage = INSTALL_PATHS;
296 } else if (is_dataroot_insecure()) {
297 $hint_dataroot = get_string('pathsunsecuredataroot', 'install');
298 $config->stage = INSTALL_PATHS;
300 } else if (!file_exists($CFG->dataroot)) {
302 $a->parent = dirname($CFG->dataroot);
303 $a->dataroot = $CFG->dataroot;
304 if (!is_writable(dirname($CFG->dataroot))) {
305 $hint_dataroot = get_string('pathsroparentdataroot', 'install', $a);
306 $config->stage = INSTALL_PATHS;
308 if (!make_upload_directory('lang', false)) {
309 $hint_dataroot = get_string('pathserrcreatedataroot', 'install', $a);
310 $config->stage = INSTALL_PATHS;
315 if (empty($hint_dataroot) and !is_writable($CFG->dataroot)) {
316 $hint_dataroot = get_string('pathsrodataroot', 'install');
317 $config->stage = INSTALL_PATHS;
320 if ($config->dirroot === '' or !file_exists($config->dirroot)) {
321 $hint_dirroot = get_string('pathswrongdirroot', 'install');
322 $config->stage = INSTALL_PATHS;
325 if ($config->admin === '' or !file_exists($config->dirroot.'/'.$config->admin.'/environment.xml')) {
326 $hint_admindir = get_string('pathswrongadmindir', 'install');
327 $config->stage = INSTALL_PATHS;
333 if ($config->stage == INSTALL_DOWNLOADLANG) {
334 // no need to download anything if en lang selected
335 if ($CFG->lang == 'en_utf8') {
336 $config->stage = INSTALL_DATABASETYPE;
342 if ($config->stage == INSTALL_DATABASETYPE) {
343 // skip db selection if distro package supports only one db
344 if (!empty($distro->dbtype)) {
345 $config->stage = INSTALL_DATABASE;
350 if ($config->stage == INSTALL_DOWNLOADLANG) {
353 // Create necessary lang dir
354 if (!make_upload_directory('lang', false)) {
355 $downloaderror = get_string('cannotcreatelangdir', 'error');
357 // Download and install lang component
358 } else if ($cd = new component_installer('http://download.moodle.org', 'lang16', $CFG->lang.'.zip', 'languages.md5', 'lang')) {
359 if ($cd->install() == COMPONENT_ERROR) {
360 if ($cd->get_error() == 'remotedownloaderror') {
362 $a->url = 'http://download.moodle.org/lang16/'.$INSTALL['language'].'.zip';
363 $a->dest = $CFG->dataroot.'/lang';
364 $downloaderror = get_string($cd->get_error(), 'error', $a);
366 $downloaderror = get_string($cd->get_error(), 'error');
369 // install parent lang if defined
370 if ($parentlang = get_parent_language()) {
371 if ($cd = new component_installer('http://download.moodle.org', 'lang16', $parentlang.'.zip', 'languages.md5', 'lang')) {
378 if ($downloaderror !== '') {
379 install_print_header($config, get_string('language'), get_string('langdownloaderror', 'install', $CFG->lang), $downloaderror);
380 install_print_footer($config);
383 if (empty($distro->dbtype)) {
384 $config->stage = INSTALL_DATABASETYPE;
386 $config->stage = INSTALL_DATABASE;
392 if ($config->stage == INSTALL_DATABASE) {
393 $database = moodle_database::get_driver_instance($config->dbtype, 'native');
395 $sub = '<h3>'.$database->get_name().'</h3>'.$database->get_configuration_help();
397 install_print_header($config, get_string('database', 'install'), get_string('databasehead', 'install'), $sub);
399 $strdbhost = get_string('databasehost', 'install');
400 $strdbname = get_string('databasename', 'install');
401 $strdbuser = get_string('databaseuser', 'install');
402 $strdbpass = get_string('databasepass', 'install');
403 $strprefix = get_string('dbprefix', 'install');
404 $strdbsocket = get_string('databasesocket', 'install');
406 echo '<div class="userinput">';
408 $disabled = empty($distro->dbhost) ? '' : 'disabled="disabled';
409 echo '<div class="formrow"><label for="id_dbhost" class="formlabel">'.$strdbhost.'</label>';
410 echo '<input id="id_dbhost" name="dbhost" '.$disabled.' type="text" value="'.s($config->dbhost).'" size="30" class="forminput" />';
413 echo '<div class="formrow"><label for="id_dbname" class="formlabel">'.$strdbname.'</label>';
414 echo '<input id="id_dbname" name="dbname" type="text" value="'.s($config->dbname).'" size="30" class="forminput" />';
417 $disabled = empty($distro->dbuser) ? '' : 'disabled="disabled';
418 echo '<div class="formrow"><label for="id_dbuser" class="formlabel">'.$strdbuser.'</label>';
419 echo '<input id="id_dbuser" name="dbuser" '.$disabled.' type="text" value="'.s($config->dbuser).'" size="30" class="forminput" />';
422 echo '<div class="formrow"><label for="id_dbpass" class="formlabel">'.$strdbpass.'</label>';
423 // no password field here, the password may be visible in config.php if we can not write it to disk
424 echo '<input id="id_dbpass" name="dbpass" type="text" value="'.s($config->dbpass).'" size="30" class="forminput" />';
427 echo '<div class="formrow"><label for="id_prefix" class="formlabel">'.$strprefix.'</label>';
428 echo '<input id="id_prefix" name="prefix" type="text" value="'.s($config->prefix).'" size="10" class="forminput" />';
431 if (!(stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'darwin'))) {
432 $checked = $config->dbsocket ? 'checked="checked' : '';
433 echo '<div class="formrow"><label for="id_dbsocket" class="formlabel">'.$strdbsocket.'</label>';
434 echo '<input type="hidden" value="0" name="dbsocket" />';
435 echo '<input type="checkbox" id="id_dbsocket" value="1" name="dbsocket" '.$checked.' class="forminput" />';
439 echo '<div class="hint">'.$hint_database.'</div>';
441 install_print_footer($config);
446 if ($config->stage == INSTALL_DATABASETYPE) {
447 // Finally ask for DB type
448 install_print_header($config, get_string('database', 'install'),
449 get_string('databasetypehead', 'install'),
450 get_string('databasetypesub', 'install'));
452 // TODO: move this PHP5 code to lib/installib.php so that this file parses in PHP4
453 $databases = array('mysqli' => moodle_database::get_driver_instance('mysqli', 'native'),
454 'pgsql' => moodle_database::get_driver_instance('pgsql', 'native'),
455 'oci' => moodle_database::get_driver_instance('oci', 'native'),
456 //'sqlsrv' => moodle_database::get_driver_instance('sqlsrv', 'native'), // new MS sql driver - win32 only
457 //'mssql' => moodle_database::get_driver_instance('mssql', 'native'), // FreeTDS driver
460 echo '<div class="userinput">';
461 echo '<div class="formrow"><label class="formlabel" for="dbtype">'.get_string('dbtype', 'install').'</label>';
462 echo '<select id="dbtype" name="dbtype" class="forminput">';
465 foreach ($databases as $type=>$database) {
466 if ($database->driver_installed() !== true) {
467 $disabled[$type] = $database;
470 echo '<option value="'.s($type).'">'.$database->get_name().'</option>';
473 echo '<optgroup label="'.s(get_string('notavailable')).'">';
474 foreach ($disabled as $type=>$database) {
475 echo '<option value="'.s($type).'" class="notavailable">'.$database->get_name().'</option>';
479 echo '</select></div>';
482 install_print_footer($config);
488 if ($config->stage == INSTALL_ENVIRONMENT or $config->stage == INSTALL_PATHS) {
489 $version_fail = (version_compare(phpversion(), "5.2.8") < 0);
490 $curl_fail = ($lang !== 'en_utf8' and !extension_loaded('curl')); // needed for lang pack download
491 $zip_fail = ($lang !== 'en_utf8' and !extension_loaded('zip')); // needed for lang pack download
493 if ($version_fail or $curl_fail or $zip_fail) {
494 $config->stage = INSTALL_ENVIRONMENT;
496 install_print_header($config, get_string('environment', 'install'),
497 get_string('errorsinenvironment', 'install'),
498 get_string('environmentsub2', 'install'));
500 echo '<div id="envresult"><dl>';
502 $a = (object)array('needed'=>'5.2.8', 'current'=>phpversion());
503 echo '<dt>'.get_string('phpversion', 'install').'</dt><dd>'.get_string('environmentrequireversion', 'admin', $a).'</dd>';
506 echo '<dt>'.get_string('phpextension', 'install', 'cURL').'</dt><dd>'.get_string('environmentrequireinstall', 'admin').'</dd>';
509 echo '<dt>'.get_string('phpextension', 'install', 'Zip').'</dt><dd>'.get_string('environmentrequireinstall', 'admin').'</dd>';
513 install_print_footer($config, true);
517 $config->stage = INSTALL_PATHS;
523 if ($config->stage == INSTALL_PATHS) {
524 $paths = array('wwwroot' => get_string('wwwroot', 'install'),
525 'dirroot' => get_string('dirroot', 'install'),
526 'dataroot' => get_string('dataroot', 'install'),
527 'admindir' => get_string('admindirname', 'install'));
530 foreach ($paths as $path=>$name) {
531 $sub .= '<dt>'.$name.'</dt><dd>'.get_string('pathssub'.$path, 'install').'</dd>';
535 install_print_header($config, get_string('paths', 'install'), get_string('pathshead', 'install'), $sub);
537 $strwwwroot = get_string('wwwroot', 'install');
538 $strdirroot = get_string('dirroot', 'install');
539 $strdataroot = get_string('dataroot', 'install');
540 $stradmindirname = get_string('admindirname', 'install');
542 echo '<div class="userinput">';
543 echo '<div class="formrow"><label for="id_wwwroot" class="formlabel">'.$paths['wwwroot'].'</label>';
544 echo '<input id="id_wwwroot" name="wwwroot" type="text" value="'.s($CFG->wwwroot).'" disabled="disabled" size="45" class="forminput" />';
547 echo '<div class="formrow"><label for="id_dirroot" class="formlabel">'.$paths['dirroot'].'</label>';
548 echo '<input id="id_dirroot" name="dirroot" type="text" value="'.s($config->dirroot).'" size="45"class="forminput" />';
549 if ($hint_dirroot !== '') {
550 echo '<div class="hint">'.$hint_dirroot.'</div>';
554 echo '<div class="formrow"><label for="id_dataroot" class="formlabel">'.$paths['dataroot'].'</label>';
555 echo '<input id="id_dataroot" name="dataroot" type="text" value="'.s($config->dataroot).'" size="45" class="forminput" />';
556 if ($hint_dataroot !== '') {
557 echo '<div class="hint">'.$hint_dataroot.'</div>';
562 if (file_exists("$CFG->dirroot/admin/environment.xml")) {
563 $disabled = 'disabled="disabled"';
567 echo '<div class="formrow"><label for="id_admin" class="formlabel">'.$paths['admindir'].'</label>';
568 echo '<input id="id_admin" name="admin" type="text" value="'.s($config->admin).'" '.$disabled.' size="10" class="forminput" />';
569 if ($hint_admindir !== '') {
570 echo '<div class="hint">'.$hint_admindir.'</div>';
576 install_print_footer($config);
582 $config->stage = INSTALL_WELCOME;
586 include('install/distribution.html');
587 $sub = ob_get_clean();
589 install_print_header($config, get_string('language'),
590 get_string('chooselanguagehead', 'install'),
594 install_print_header($config, get_string('language'),
595 get_string('chooselanguagehead', 'install'),
596 get_string('chooselanguagesub', 'install'));
599 $languages = install_get_list_of_languages();
600 echo '<div class="userinput">';
601 echo '<div class="formrow"><label class="formlabel" for="langselect">'.get_string('language').'</label>';
602 echo '<select id="langselect" name="lang" class="forminput" onchange="this.form.submit()">';
603 foreach ($languages as $name=>$value) {
604 $selected = ($name == $CFG->lang) ? 'selected="selected"' : '';
605 echo '<option value="'.s($name).'" '.$selected.'>'.$value.'</option>';
607 echo '</select></div>';
610 install_print_footer($config);