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