MDL-21029 glossary - fix display of entries belonging to site/course global glossaries
[moodle.git] / install.php
blob2318cb50e6cbbd5062f82ea40521e635b6bd2bb7
1 <?php /// $Id$
2 /// install.php - helps admin user to create a config.php file
4 /// If config.php exists already then we are not needed.
6 if (file_exists('./config.php')) {
7 header('Location: index.php');
8 die;
9 } else {
10 $configfile = './config.php';
13 ///==========================================================================//
14 /// We are doing this in stages
15 define ('WELCOME', 0); /// 0. Welcome and language settings
16 define ('COMPATIBILITY', 1); /// 1. Compatibility
17 define ('DIRECTORY', 2); /// 2. Directory settings
18 define ('DATABASE', 3); /// 2. Database settings
19 define ('ADMIN', 4); /// 4. Administration directory name
20 define ('ENVIRONMENT', 5); /// 5. Administration directory name
21 define ('DOWNLOADLANG', 6); /// 6. Load complete lang from download.moodle.org
22 define ('SAVE', 7); /// 7. Save or display the settings
23 define ('REDIRECT', 8); /// 8. Redirect to index.php
24 ///==========================================================================//
27 /// This has to be defined to avoid a notice in current_language()
28 define('SITEID', 0);
30 /// Begin the session as we are holding all information in a session
31 /// variable until the end.
33 session_name('MoodleSession');
34 @session_start();
36 /// make sure PHP errors are displayed to help diagnose problems
37 @error_reporting(1023); //E_ALL not used because we do not want strict notices in PHP5 yet
38 @ini_set('display_errors', '1');
40 if (! isset($_SESSION['INSTALL'])) {
41 $_SESSION['INSTALL'] = array();
44 $INSTALL = &$_SESSION['INSTALL']; // Makes it easier to reference
46 /// detect if install was attempted from diferent directory, if yes reset session to prevent errors,
47 /// dirroot location now fixed in installer
48 if (!empty($INSTALL['dirroot']) and $INSTALL['dirroot'] != dirname(__FILE__)) {
49 $_SESSION['INSTALL'] = array();
52 /// If it's our first time through this script then we need to set some default values
54 if ( empty($INSTALL['language']) and empty($_POST['language']) ) {
56 /// set defaults
57 $INSTALL['language'] = 'en_utf8';
59 $INSTALL['dbhost'] = 'localhost';
60 $INSTALL['dbuser'] = '';
61 $INSTALL['dbpass'] = '';
62 $INSTALL['dbtype'] = 'mysql';
63 $INSTALL['dbname'] = 'moodle';
64 $INSTALL['prefix'] = 'mdl_';
66 $INSTALL['downloadlangpack'] = false;
67 $INSTALL['showdownloadlangpack'] = true;
68 $INSTALL['downloadlangpackerror'] = '';
70 /// To be used by the Installer
71 $INSTALL['wwwroot'] = '';
72 $INSTALL['dirroot'] = dirname(__FILE__);
73 $INSTALL['dataroot'] = dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'moodledata';
75 /// To be configured in the Installer
76 $INSTALL['wwwrootform'] = '';
77 $INSTALL['dirrootform'] = dirname(__FILE__);
79 $INSTALL['admindirname'] = 'admin';
81 $INSTALL['stage'] = WELCOME;
84 //==========================================================================//
86 /// Set the page to Unicode always
88 header('Content-Type: text/html; charset=UTF-8');
90 /// Was data submitted?
92 if (isset($_POST['stage'])) {
94 /// Get the stage for which the form was set and the next stage we are going to
96 $gpc = ini_get('magic_quotes_gpc');
97 $gpc = ($gpc == '1' or strtolower($gpc) == 'on');
99 /// Store any posted data
100 foreach ($_POST as $setting=>$value) {
101 if ($gpc) {
102 $value = stripslashes($value);
105 $INSTALL[$setting] = $value;
108 if ( $goforward = (! empty( $_POST['next'] )) ) {
109 $nextstage = $_POST['stage'] + 1;
110 } else if (! empty( $_POST['prev'])) {
111 $nextstage = $_POST['stage'] - 1;
112 $INSTALL['stage'] = $_POST['stage'] - 1;
113 } else if (! empty( $_POST['same'] )) {
114 $nextstage = $_POST['stage'];
117 $nextstage = (int)$nextstage;
119 if ($nextstage < 0) {
120 $nextstage = WELCOME;
124 } else {
126 $goforward = true;
127 $nextstage = WELCOME;
131 //==========================================================================//
133 /// Fake some settings so that we can use selected functions from moodlelib.php and weblib.php
135 $SESSION->lang = (!empty($_POST['language'])) ? $_POST['language'] : $INSTALL['language'];
136 $CFG->dirroot = $INSTALL['dirroot'];
137 $CFG->libdir = $INSTALL['dirroot'].'/lib';
138 $CFG->dataroot = $INSTALL['dataroot'];
139 $CFG->admin = $INSTALL['admindirname'];
140 $CFG->directorypermissions = 00777;
141 $CFG->running_installer = true;
142 $CFG->docroot = 'http://docs.moodle.org';
143 $CFG->httpswwwroot = $INSTALL['wwwrootform']; // Needed by doc_link() in Server Checks page.
144 $COURSE->id = 0;
146 /// Include some moodle libraries
148 require_once($CFG->libdir.'/adminlib.php');
149 require_once($CFG->libdir.'/setuplib.php');
150 require_once($CFG->libdir.'/moodlelib.php');
151 require_once($CFG->libdir.'/weblib.php');
152 require_once($CFG->libdir.'/deprecatedlib.php');
153 require_once($CFG->libdir.'/adodb/adodb.inc.php');
154 require_once($CFG->libdir.'/environmentlib.php');
155 require_once($CFG->libdir.'/xmlize.php');
156 require_once($CFG->libdir.'/componentlib.class.php');
157 require_once($CFG->dirroot.'/version.php');
159 /// Set version and release
160 $INSTALL['version'] = $version;
161 $INSTALL['release'] = $release;
163 /// Have the $db object ready because we are going to use it often
164 define ('ADODB_ASSOC_CASE', 0); //Use lowercase fieldnames for ADODB_FETCH_ASSOC
165 $db = &ADONewConnection($INSTALL['dbtype']);
166 $db->SetFetchMode(ADODB_FETCH_ASSOC);
168 /// guess the www root
169 if ($INSTALL['wwwroot'] == '') {
170 list($INSTALL['wwwroot'], $xtra) = explode('/install.php', qualified_me());
171 $INSTALL['wwwrootform'] = $INSTALL['wwwroot'];
173 // now try to guess the correct dataroot not accessible via web
174 $CFG->wwwroot = $INSTALL['wwwroot'];
175 $i = 0; //safety check - dirname might return some unexpected results
176 while(is_dataroot_insecure()) {
177 $parrent = dirname($CFG->dataroot);
178 $i++;
179 if ($parrent == '/' or $parrent == '.' or preg_match('/^[a-z]:\\\?$/i', $parrent) or ($i > 100)) {
180 $CFG->dataroot = ''; //can not find secure location for dataroot
181 break;
183 $CFG->dataroot = dirname($parrent).'/moodledata';
185 $INSTALL['dataroot'] = $CFG->dataroot;
188 $headstagetext = array(WELCOME => get_string('chooselanguagehead', 'install'),
189 COMPATIBILITY => get_string('compatibilitysettingshead', 'install'),
190 DIRECTORY => get_string('directorysettingshead', 'install'),
191 DATABASE => get_string('databasesettingshead', 'install'),
192 ADMIN => get_string('admindirsettinghead', 'install'),
193 ENVIRONMENT => get_string('environmenthead', 'install'),
194 DOWNLOADLANG => get_string('downloadlanguagehead', 'install'),
195 SAVE => get_string('configurationcompletehead', 'install')
198 $substagetext = array(WELCOME => get_string('chooselanguagesub', 'install'),
199 COMPATIBILITY => get_string('compatibilitysettingssub', 'install'),
200 DIRECTORY => get_string('directorysettingssub', 'install'),
201 DATABASE => get_string('databasesettingssub', 'install'),
202 ADMIN => get_string('admindirsettingsub', 'install'),
203 ENVIRONMENT => get_string('environmentsub', 'install'),
204 DOWNLOADLANG => get_string('downloadlanguagesub', 'install'),
205 SAVE => get_string('configurationcompletesub', 'install')
210 //==========================================================================//
212 /// Are we in help mode?
214 if (isset($_GET['help'])) {
215 $nextstage = -1;
220 //==========================================================================//
222 /// Are we in config download mode?
224 if (isset($_GET['download'])) {
225 header("Content-Type: application/x-forcedownload\n");
226 header("Content-Disposition: attachment; filename=\"config.php\"");
227 echo $INSTALL['config'];
228 exit;
235 //==========================================================================//
237 /// Check the directory settings
239 if ($INSTALL['stage'] == DIRECTORY) {
241 error_reporting(0);
243 /// check wwwroot
244 if (ini_get('allow_url_fopen') && false) { /// This was not reliable
245 if (($fh = @fopen($INSTALL['wwwrootform'].'/install.php', 'r')) === false) {
246 $errormsg .= get_string('wwwrooterror', 'install').'<br />';
247 $INSTALL['wwwrootform'] = $INSTALL['wwwroot'];
250 if ($fh) fclose($fh);
252 /// check dirroot
253 if (($fh = @fopen($INSTALL['dirrootform'].'/install.php', 'r')) === false ) {
254 $errormsg .= get_string('dirrooterror', 'install').'<br />';
255 $INSTALL['dirrootform'] = $INSTALL['dirroot'];
257 if ($fh) fclose($fh);
259 /// check dataroot
260 $CFG->dataroot = $INSTALL['dataroot'];
261 $CFG->wwwroot = $INSTALL['wwwroot'];
262 if (make_upload_directory('sessions', false) === false ) {
263 $errormsg .= get_string('datarooterror', 'install').'<br />';
265 } else if (is_dataroot_insecure(true) == INSECURE_DATAROOT_ERROR) {
266 $errormsg .= get_string('datarootpublicerror', 'install').'<br />';
269 if (!empty($errormsg)) $nextstage = DIRECTORY;
271 error_reporting(7);
276 //==========================================================================//
278 /// Check database settings if stage 3 data submitted
279 /// Try to connect to the database. If that fails then try to create the database
281 if ($INSTALL['stage'] == DATABASE) {
283 /// different format for postgres7 by socket
284 if ($INSTALL['dbtype'] == 'postgres7' and ($INSTALL['dbhost'] == 'localhost' || $INSTALL['dbhost'] == '127.0.0.1')) {
285 $INSTALL['dbhost'] = "user='{$INSTALL['dbuser']}' password='{$INSTALL['dbpass']}' dbname='{$INSTALL['dbname']}'";
286 $INSTALL['dbuser'] = '';
287 $INSTALL['dbpass'] = '';
288 $INSTALL['dbname'] = '';
290 if ($INSTALL['prefix'] == '') { /// must have a prefix
291 $INSTALL['prefix'] = 'mdl_';
295 if ($INSTALL['dbtype'] == 'mysql') { /// Check MySQL extension is present
296 if (!extension_loaded('mysql')) {
297 $errormsg = get_string('mysqlextensionisnotpresentinphp', 'install');
298 $nextstage = DATABASE;
302 if ($INSTALL['dbtype'] == 'mysqli') { /// Check MySQLi extension is present
303 if (!extension_loaded('mysqli')) {
304 $errormsg = get_string('mysqliextensionisnotpresentinphp', 'install');
305 $nextstage = DATABASE;
309 if ($INSTALL['dbtype'] == 'postgres7') { /// Check PostgreSQL extension is present
310 if (!extension_loaded('pgsql')) {
311 $errormsg = get_string('pgsqlextensionisnotpresentinphp', 'install');
312 $nextstage = DATABASE;
316 if ($INSTALL['dbtype'] == 'mssql') { /// Check MSSQL extension is present
317 if (!function_exists('mssql_connect')) {
318 $errormsg = get_string('mssqlextensionisnotpresentinphp', 'install');
319 $nextstage = DATABASE;
323 if ($INSTALL['dbtype'] == 'mssql_n') { /// Check MSSQL extension is present
324 if (!function_exists('mssql_connect')) {
325 $errormsg = get_string('mssqlextensionisnotpresentinphp', 'install');
326 $nextstage = DATABASE;
330 if ($INSTALL['dbtype'] == 'odbc_mssql') { /// Check ODBC extension is present
331 if (!extension_loaded('odbc')) {
332 $errormsg = get_string('odbcextensionisnotpresentinphp', 'install');
333 $nextstage = DATABASE;
337 if ($INSTALL['dbtype'] == 'oci8po') { /// Check OCI extension is present
338 if (!extension_loaded('oci8')) {
339 $errormsg = get_string('ociextensionisnotpresentinphp', 'install');
340 $nextstage = DATABASE;
344 if (empty($INSTALL['prefix']) && $INSTALL['dbtype'] != 'mysql' && $INSTALL['dbtype'] != 'mysqli') { // All DBs but MySQL require prefix (reserv. words)
345 $errormsg = get_string('dbwrongprefix', 'install');
346 $nextstage = DATABASE;
349 if ($INSTALL['dbtype'] == 'oci8po' && strlen($INSTALL['prefix']) > 2) { // Oracle max prefix = 2cc (30cc limit)
350 $errormsg = get_string('dbwrongprefix', 'install');
351 $nextstage = DATABASE;
354 if ($INSTALL['dbtype'] == 'oci8po' && !empty($INSTALL['dbhost'])) { // Oracle host must be blank (tnsnames.ora has it)
355 $errormsg = get_string('dbwronghostserver', 'install');
356 $nextstage = DATABASE;
359 if (empty($errormsg)) {
361 error_reporting(0); // Hide errors
363 if (! $dbconnected = $db->Connect($INSTALL['dbhost'],$INSTALL['dbuser'],$INSTALL['dbpass'],$INSTALL['dbname'])) {
364 $db->database = ''; // reset database name cached by ADODB. Trick from MDL-9609
365 if ($dbconnected = $db->Connect($INSTALL['dbhost'],$INSTALL['dbuser'],$INSTALL['dbpass'])) { /// Try to connect without DB
366 switch ($INSTALL['dbtype']) { /// Try to create a database
367 case 'mysql':
368 case 'mysqli':
369 if ($db->Execute("CREATE DATABASE {$INSTALL['dbname']} DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;")) {
370 $dbconnected = $db->Connect($INSTALL['dbhost'],$INSTALL['dbuser'],$INSTALL['dbpass'],$INSTALL['dbname']);
371 } else {
372 $errormsg = get_string('dbcreationerror', 'install');
373 $nextstage = DATABASE;
375 break;
378 } else {
379 /// We have been able to connect properly, just test the database encoding now.
380 /// It must be Unicode for 1.8 installations.
381 $encoding = '';
382 switch ($INSTALL['dbtype']) {
383 case 'mysql':
384 case 'mysqli':
385 /// Get MySQL character_set_database value
386 $rs = $db->Execute("SHOW VARIABLES LIKE 'character_set_database'");
387 if ($rs && !$rs->EOF) {
388 $records = $rs->GetAssoc(true);
389 $encoding = $records['character_set_database']['Value'];
390 if (strtoupper($encoding) != 'UTF8') {
391 /// Try to set the encoding now!
392 if (! $db->Metatables()) { // We have no tables so go ahead
393 $db->Execute("ALTER DATABASE `".$INSTALL['dbname']."` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci");
394 $rs = $db->Execute("SHOW VARIABLES LIKE 'character_set_database'"); // this works
398 /// If conversion fails, skip, let environment testing do the job
400 break;
401 case 'postgres7':
402 /// Skip, let environment testing do the job
403 break;
404 case 'oci8po':
405 /// Skip, let environment testing do the job
406 break;
411 error_reporting(7);
413 if (($dbconnected === false) and (empty($errormsg)) ) {
414 $errormsg = get_string('dbconnectionerror', 'install');
415 $nextstage = DATABASE;
421 //==========================================================================//
423 /// If the next stage is admin directory settings OR we have just come from there then
424 /// check the admin directory.
425 /// If we can open a file then we know that the admin name is correct.
427 if ($nextstage == ADMIN or $INSTALL['stage'] == ADMIN) {
428 if (!ini_get('allow_url_fopen')) {
429 $nextstage = ($goforward) ? ENVIRONMENT : DATABASE;
430 } else if (($fh = @fopen($INSTALL['wwwrootform'].'/'.$INSTALL['admindirname'].'/environment.xml', 'r')) !== false) {
431 $nextstage = ($goforward) ? ENVIRONMENT : DATABASE;
432 fclose($fh);
433 } else {
434 $nextstage = ($goforward) ? ENVIRONMENT : DATABASE;
435 //if ($nextstage != ADMIN) {
436 // $errormsg = get_string('admindirerror', 'install');
437 // $nextstage = ADMIN;
438 // }
442 //==========================================================================//
444 // Check if we can navigate from the environemt page (because it's ok)
446 if ($INSTALL['stage'] == ENVIRONMENT) {
447 error_reporting(0); // Hide errors
448 $dbconnected = $db->Connect($INSTALL['dbhost'],$INSTALL['dbuser'],$INSTALL['dbpass'],$INSTALL['dbname']);
449 error_reporting(7); // Show errors
450 if ($dbconnected) {
451 /// Execute environment check, not printing results
452 @remove_dir($INSTALL['dataroot'] . '/environment'); /// Always delete downloaded env. info to force use of the released one. MDL-9796
453 if (!check_moodle_environment($INSTALL['release'], $environment_results, false)) {
454 $nextstage = ENVIRONMENT;
456 } else {
457 /// We never should reach this because DB has been tested before arriving here
458 $errormsg = get_string('dbconnectionerror', 'install');
459 $nextstage = DATABASE;
465 //==========================================================================//
467 // Try to download the lang pack if it has been selected
469 if ($INSTALL['stage'] == DOWNLOADLANG && $INSTALL['downloadlangpack']) {
471 $downloadsuccess = false;
472 $downloaderror = '';
474 error_reporting(0); // Hide errors
476 /// Create necessary lang dir
477 if (!make_upload_directory('lang', false)) {
478 $downloaderror = get_string('cannotcreatelangdir', 'error');
481 /// Download and install component
482 if (($cd = new component_installer('http://download.moodle.org', 'lang16',
483 $INSTALL['language'].'.zip', 'languages.md5', 'lang')) && empty($errormsg)) {
484 $status = $cd->install(); //returns COMPONENT_(ERROR | UPTODATE | INSTALLED)
485 switch ($status) {
486 case COMPONENT_ERROR:
487 if ($cd->get_error() == 'remotedownloaderror') {
488 $a = new stdClass();
489 $a->url = 'http://download.moodle.org/lang16/'.$INSTALL['language'].'.zip';
490 $a->dest= $CFG->dataroot.'/lang';
491 $downloaderror = get_string($cd->get_error(), 'error', $a);
492 } else {
493 $downloaderror = get_string($cd->get_error(), 'error');
495 break;
496 case COMPONENT_UPTODATE:
497 case COMPONENT_INSTALLED:
498 $downloadsuccess = true;
499 break;
500 default:
501 //We shouldn't reach this point
503 } else {
504 //We shouldn't reach this point
507 error_reporting(7); // Show errors
509 if ($downloadsuccess) {
510 $INSTALL['downloadlangpack'] = false;
511 $INSTALL['showdownloadlangpack'] = false;
512 $INSTALL['downloadlangpackerror'] = $downloaderror;
513 } else {
514 $INSTALL['downloadlangpack'] = false;
515 $INSTALL['showdownloadlangpack'] = false;
516 $INSTALL['downloadlangpackerror'] = $downloaderror;
522 //==========================================================================//
524 /// Display or print the data
525 /// Put the data into a string
526 /// Try to open config file for writing.
528 if ($nextstage == SAVE) {
530 $str = '<?php /// Moodle Configuration File '."\r\n";
531 $str .= "\r\n";
533 $str .= 'unset($CFG);'."\r\n";
534 $str .= "\r\n";
536 $str .= '$CFG->dbtype = \''.$INSTALL['dbtype']."';\r\n";
537 $str .= '$CFG->dbhost = \''.addslashes($INSTALL['dbhost'])."';\r\n";
538 if (!empty($INSTALL['dbname'])) {
539 $str .= '$CFG->dbname = \''.$INSTALL['dbname']."';\r\n";
540 // support single quotes in db user/passwords
541 $str .= '$CFG->dbuser = \''.addsingleslashes($INSTALL['dbuser'])."';\r\n";
542 $str .= '$CFG->dbpass = \''.addsingleslashes($INSTALL['dbpass'])."';\r\n";
544 $str .= '$CFG->dbpersist = false;'."\r\n";
545 $str .= '$CFG->prefix = \''.$INSTALL['prefix']."';\r\n";
546 $str .= "\r\n";
548 $str .= '$CFG->wwwroot = \''.s($INSTALL['wwwrootform'],true)."';\r\n";
549 $str .= '$CFG->dirroot = \''.s($INSTALL['dirrootform'],true)."';\r\n";
550 $str .= '$CFG->dataroot = \''.s($INSTALL['dataroot'],true)."';\r\n";
551 $str .= '$CFG->admin = \''.s($INSTALL['admindirname'],true)."';\r\n";
552 $str .= "\r\n";
554 $str .= '$CFG->directorypermissions = 00777; // try 02777 on a server in Safe Mode'."\r\n";
555 $str .= "\r\n";
557 $str .= '$CFG->passwordsaltmain = \''.addsingleslashes(complex_random_string()).'\';'."\r\n";
558 $str .= "\r\n";
560 $str .= 'require_once("$CFG->dirroot/lib/setup.php");'."\r\n";
561 $str .= '// MAKE SURE WHEN YOU EDIT THIS FILE THAT THERE ARE NO SPACES, BLANK LINES,'."\r\n";
562 $str .= '// RETURNS, OR ANYTHING ELSE AFTER THE TWO CHARACTERS ON THE NEXT LINE.'."\r\n";
563 $str .= '?>';
565 umask(0137);
567 if (( $configsuccess = ($fh = @fopen($configfile, 'w')) ) !== false) {
568 fwrite($fh, $str);
569 fclose($fh);
573 $INSTALL['config'] = $str;
578 //==========================================================================//
581 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
582 <html dir="<?php echo (right_to_left() ? 'rtl' : 'ltr'); ?>">
583 <head>
584 <link rel="shortcut icon" href="theme/standard/favicon.ico" />
585 <title>Moodle Install</title>
586 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
587 <?php css_styles() ?>
588 <?php database_js() ?>
590 </head>
592 <body>
595 <?php
596 if (isset($_GET['help'])) {
597 print_install_help($_GET['help']);
598 close_window_button();
599 } else {
603 <table class="main" cellpadding="3" cellspacing="0">
604 <tr>
605 <td class="td_mainlogo">
606 <p class="p_mainlogo"><img src="pix/moodlelogo-med.gif" width="240" height="60" alt="Moodle logo"/></p>
607 </td>
608 <td class="td_mainlogo" valign="bottom">
609 <p class="p_mainheader"><?php print_string('installation', 'install') ?></p>
610 </td>
611 </tr>
613 <tr>
614 <td class="td_mainheading" colspan="2">
615 <p class="p_mainheading"><?php echo $headstagetext[$nextstage] ?></p>
616 <?php /// Exceptionaly, depending of the DB selected, we show some different text
617 /// from the standard one to show better instructions for each DB
618 if ($nextstage == DATABASE) {
619 echo '<script type="text/javascript" defer="defer">window.onload=toggledbinfo;</script>';
620 echo '<div id="mysql">' . get_string('databasesettingssub_mysql', 'install');
621 echo '<p style="text-align: center">' . get_string('databasesettingswillbecreated', 'install') . '</p>';
622 echo '</div>';
624 echo '<div id="mysqli">' . get_string('databasesettingssub_mysqli', 'install');
625 echo '<p style="text-align: center">' . get_string('databasesettingswillbecreated', 'install') . '</p>';
626 echo '</div>';
628 echo '<div id="postgres7">' . get_string('databasesettingssub_postgres7', 'install');
629 echo '<p style="text-align: left">' . get_string('postgresqlwarning', 'install') . '</p>';
630 echo '</div>';
632 echo '<div id="mssql">' . get_string('databasesettingssub_mssql', 'install');
633 /// Link to mssql installation page
634 echo "<p style='text-align:right'><a href=\"javascript:void(0)\" ";
635 echo "onclick=\"return window.open('http://docs.moodle.org/en/Installing_MSSQL_for_PHP')\"";
636 echo ">";
637 echo '<img src="pix/docs.gif' . '" alt="Docs" class="iconhelp" />';
638 echo get_string('moodledocslink', 'install') . '</a></p>';
639 echo '</div>';
641 echo '<div id="mssql_n">' . get_string('databasesettingssub_mssql_n', 'install');
642 /// Link to mssql installation page
643 echo "<p style='text-align:right'><a href=\"javascript:void(0)\" ";
644 echo "onclick=\"return window.open('http://docs.moodle.org/en/Installing_MSSQL_for_PHP')\"";
645 echo ">";
646 echo '<img src="pix/docs.gif' . '" alt="Docs" />';
647 echo get_string('moodledocslink', 'install') . '</a></p>';
648 echo '</div>';
650 echo '<div id="odbc_mssql">'. get_string('databasesettingssub_odbc_mssql', 'install');
651 /// Link to mssql installation page
652 echo "<p style='text-align:right'><a href=\"javascript:void(0)\" ";
653 echo "onclick=\"return window.open('http://docs.moodle.org/en/Installing_MSSQL_for_PHP')\"";
654 echo ">";
655 echo '<img src="pix/docs.gif' . '" alt="Docs" class="iconhelp" />';
656 echo get_string('moodledocslink', 'install') . '</a></p>';
657 echo '</div>';
659 echo '<div id="oci8po">' . get_string('databasesettingssub_oci8po', 'install');
660 /// Link to oracle installation page
661 echo "<p style='text-align:right'><a href=\"javascript:void(0)\" ";
662 echo "onclick=\"return window.open('http://docs.moodle.org/en/Installing_Oracle_for_PHP')\"";
663 echo ">";
664 echo '<img src="pix/docs.gif' . '" alt="Docs" class="iconhelp" />';
665 echo get_string('moodledocslink', 'install') . '</a></p>';
666 echo '</div>';
667 } else {
668 if (!empty($substagetext[$nextstage])) {
669 echo '<p class="p_subheading">' . $substagetext[$nextstage] . '</p>';
673 </td>
674 </tr>
676 <tr>
677 <td class="td_main" colspan="2">
679 <?php
681 if (!empty($errormsg)) echo "<p class=\"errormsg\" style=\"text-align:center\">$errormsg</p>\n";
684 if ($nextstage == SAVE) {
685 $INSTALL['stage'] = WELCOME;
686 $options = array();
687 $options['lang'] = $INSTALL['language'];
688 if ($configsuccess) {
689 echo "<p class=\"p_install\">".get_string('configfilewritten', 'install')."</p>\n";
691 echo "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\">\n";
692 echo "<tr>\n";
693 echo "<td>&nbsp;</td>\n";
694 echo "<td>&nbsp;</td>\n";
695 echo "<td align=\"right\">\n";
696 print_single_button("index.php", $options, get_string('continue'));
697 echo "</td>\n";
698 echo "</tr>\n";
699 echo "</table>\n";
701 } else {
702 echo "<p class=\"errormsg\">".get_string('configfilenotwritten', 'install')."</p>";
704 echo "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\">\n";
705 echo "<tr>\n";
706 echo "<td>&nbsp;</td>\n";
707 echo "<td align=\"center\">\n";
708 $installoptions = array();
709 $installoptions['download'] = 1;
710 print_single_button("install.php", $installoptions, get_string('download', 'install'));
711 echo "</td>\n";
712 echo "<td align=\"right\">\n";
713 print_single_button("index.php", $options, get_string('continue'));
714 echo "</td>\n";
715 echo "</tr>\n";
716 echo "</table>\n";
718 echo "<hr />\n";
719 echo "<div style=\"text-align: ".fix_align_rtl("left")."\">\n";
720 echo "<pre>\n";
721 print_r(s($str));
722 echo "</pre>\n";
723 echo "</div>\n";
725 } else {
726 $formaction = (isset($_GET['configfile'])) ? "install.php?configfile=".$_GET['configfile'] : "install.php";
727 form_table($nextstage, $formaction);
732 </td>
733 </tr>
734 </table>
736 <?php
740 </body>
741 </html>
752 <?php
755 //==========================================================================//
757 function form_table($nextstage = WELCOME, $formaction = "install.php") {
758 global $INSTALL, $db;
760 $enablenext = true;
762 /// Print the standard form if we aren't in the DOWNLOADLANG page
763 /// because it has its own form.
764 if ($nextstage != DOWNLOADLANG) {
765 $needtoopenform = false;
767 <form id="installform" method="post" action="<?php echo $formaction ?>">
768 <div><input type="hidden" name="stage" value="<?php echo $nextstage ?>" /></div>
770 <?php
771 } else {
772 $needtoopenform = true;
775 <table class="install_table" cellspacing="3" cellpadding="3">
777 <?php
778 /// what we do depends on the stage we're at
779 switch ($nextstage) {
780 case WELCOME: /// Welcome and language settings
782 <tr>
783 <td class="td_left"><p class="p_install"><?php print_string('language') ?></p></td>
784 <td class="td_right">
785 <?php choose_from_menu (get_installer_list_of_languages(), 'language', $INSTALL['language'], '') ?>
786 </td>
787 </tr>
789 <?php
790 break;
791 case COMPATIBILITY: /// Compatibilty check
792 $compatsuccess = true;
794 /// Check that PHP is of a sufficient version
795 print_compatibility_row(inst_check_php_version(), get_string('phpversion', 'install'), get_string('phpversionerror', 'install'), 'phpversionhelp');
796 $enablenext = $enablenext && inst_check_php_version();
797 /// Check session auto start
798 print_compatibility_row(!ini_get_bool('session.auto_start'), get_string('sessionautostart', 'install'), get_string('sessionautostarterror', 'install'), 'sessionautostarthelp');
799 $enablenext = $enablenext && !ini_get_bool('session.auto_start');
800 /// Check magic quotes
801 print_compatibility_row(!ini_get_bool('magic_quotes_runtime'), get_string('magicquotesruntime', 'install'), get_string('magicquotesruntimeerror', 'install'), 'magicquotesruntimehelp');
802 $enablenext = $enablenext && !ini_get_bool('magic_quotes_runtime');
803 /// Check unsupported PHP configuration
804 print_compatibility_row(!ini_get_bool('register_globals'), get_string('globalsquotes', 'install'), get_string('globalswarning', 'install'));
805 $enablenext = $enablenext && !ini_get_bool('register_globals');
806 /// Check safe mode
807 print_compatibility_row(!ini_get_bool('safe_mode'), get_string('safemode', 'install'), get_string('safemodeerror', 'install'), 'safemodehelp', true);
808 /// Check file uploads
809 print_compatibility_row(ini_get_bool('file_uploads'), get_string('fileuploads', 'install'), get_string('fileuploadserror', 'install'), 'fileuploadshelp', true);
810 /// Check GD version
811 print_compatibility_row(check_gd_version(), get_string('gdversion', 'install'), get_string('gdversionerror', 'install'), 'gdversionhelp', true);
812 /// Check memory limit
813 print_compatibility_row(check_memory_limit(), get_string('memorylimit', 'install'), get_string('memorylimiterror', 'install'), 'memorylimithelp', true);
816 break;
817 case DIRECTORY: /// Directory settings
820 <tr>
821 <td class="td_left"><p class="p_install"><?php print_string('wwwroot', 'install') ?></p></td>
822 <td class="td_right">
823 <input type="text" size="40"name="wwwrootform" value="<?php p($INSTALL['wwwrootform'],true) ?>" />
824 </td>
825 </tr>
826 <tr>
827 <td class="td_left"><p class="p_install"><?php print_string('dirroot', 'install') ?></p></td>
828 <td class="td_right">
829 <input type="text" size="40" name="dirrootform" disabled="disabled" value="<?php p($INSTALL['dirrootform'],true) ?>" />
830 </td>
831 </tr>
832 <tr>
833 <td class="td_left"><p class="p_install"><?php print_string('dataroot', 'install') ?></p></td>
834 <td class="td_right">
835 <input type="text" size="40" name="dataroot" value="<?php p($INSTALL['dataroot'],true) ?>" />
836 </td>
837 </tr>
839 <?php
840 break;
841 case DATABASE: /// Database settings
844 <tr>
845 <td class="td_left"><p class="p_install"><?php print_string('dbtype', 'install') ?></p></td>
846 <td class="td_right">
847 <?php choose_from_menu (array('mysql' => get_string('mysql', 'install'),
848 'mysqli' => get_string('mysqli', 'install'),
849 'oci8po' => get_string('oci8po', 'install'),
850 'postgres7' => get_string('postgres7', 'install'),
851 'mssql' => get_string('mssql', 'install'),
852 'mssql_n' => get_string('mssql_n', 'install'),
853 'odbc_mssql' => get_string('odbc_mssql', 'install')),
854 'dbtype', $INSTALL['dbtype'], '', 'toggledbinfo();') ?>
855 </td>
856 </tr>
857 <tr>
858 <td class="td_left"><p class="p_install"><?php print_string('dbhost', 'install') ?></p></td>
859 <td class="td_right">
860 <input type="text" class="input_database" name="dbhost" value="<?php p($INSTALL['dbhost']) ?>" />
861 </td>
862 </tr>
863 <tr>
864 <td class="td_left"><p class="p_install"><?php print_string('database', 'install') ?></p></td>
865 <td class="td_right">
866 <input type="text" class="input_database" name="dbname" value="<?php p($INSTALL['dbname']) ?>" />
867 </td>
868 </tr>
869 <tr>
870 <td class="td_left"><p class="p_install"><?php print_string('user') ?></p></td>
871 <td class="td_right">
872 <input type="text" class="input_database" name="dbuser" value="<?php p($INSTALL['dbuser']) ?>" />
873 </td>
874 </tr>
875 <tr>
876 <td class="td_left"><p class="p_install"><?php print_string('password') ?></p></td>
877 <td class="td_right">
878 <input type="password" class="input_database" name="dbpass" value="<?php p($INSTALL['dbpass']) ?>" />
879 </td>
880 </tr>
881 <tr>
882 <td class="td_left"><p class="p_install"><?php print_string('dbprefix', 'install') ?></p></td>
883 <td class="td_right">
884 <input type="text" class="input_database" name="prefix" value="<?php p($INSTALL['prefix']) ?>" />
885 </td>
886 </tr>
888 <?php
889 break;
890 case ADMIN: /// Administration directory setting
893 <tr>
894 <td class="td_left"><p class="p_install"><?php print_string('admindirname', 'install') ?></p></td>
895 <td class="td_right">
896 <input type="text" size="40" name="admindirname" value="<?php p($INSTALL['admindirname']) ?>" />
897 </td>
898 </tr>
901 <?php
902 break;
903 case ENVIRONMENT: /// Environment checks
906 <tr>
907 <td colspan="2">
908 <?php
909 error_reporting(0); // Hide errors
910 $dbconnected = $db->Connect($INSTALL['dbhost'],$INSTALL['dbuser'],$INSTALL['dbpass'],$INSTALL['dbname']);
911 error_reporting(7); // Show errors
912 if ($dbconnected) {
913 /// Execute environment check, printing results
914 @remove_dir($INSTALL['dataroot'] . '/environment'); /// Always delete downloaded env. info to force use of the released one. MDL-9796
915 check_moodle_environment($INSTALL['release'], $environment_results, true);
916 } else {
917 /// We never should reach this because DB has been tested before arriving here
918 $errormsg = get_string('dbconnectionerror', 'install');
919 $nextstage = DATABASE;
920 echo '<p class="errormsg" style="text-align:center">'.get_string('dbconnectionerror', 'install').'</p>';
923 </td>
924 </tr>
926 <?php
927 break;
928 case DOWNLOADLANG: /// Download language from download.moodle.org
931 <tr>
932 <td colspan="2">
933 <?php
934 /// Get array of languages, we are going to use it
935 $languages=get_installer_list_of_languages();
936 /// Print the download form (button) if necessary
937 if ($INSTALL['showdownloadlangpack'] == true && substr($INSTALL['language'],0,2) != 'en') {
938 $options = array();
939 $options['downloadlangpack'] = true;
940 $options['stage'] = DOWNLOADLANG;
941 $options['same'] = true;
942 print_simple_box_start('center');
943 print_single_button('install.php', $options, get_string('downloadlanguagebutton','install', $languages[$INSTALL['language']]), 'post');
944 print_simple_box_end();
945 } else {
946 /// Show result info
947 /// English lang packs aren't downloaded
948 if (substr($INSTALL['language'],0,2) == 'en') {
949 print_simple_box(get_string('downloadlanguagenotneeded', 'install', $languages[$INSTALL['language']]), 'center', '80%');
950 } else {
951 if ($INSTALL['downloadlangpackerror']) {
952 echo "<p class=\"errormsg\" align=\"center\">".$INSTALL['downloadlangpackerror']."</p>\n";
953 print_simple_box(get_string('langdownloaderror', 'install', $languages[$INSTALL['language']]), 'center', '80%');
954 } else {
955 print_simple_box(get_string('langdownloadok', 'install', $languages[$INSTALL['language']]), 'center', '80%');
960 </td>
961 </tr>
963 <?php
964 break;
965 default:
969 <tr>
970 <td colspan="<?php echo ($nextstage == COMPATIBILITY) ? 3 : 2; ?>">
972 <?php
973 if ($needtoopenform) {
975 <form id="installform" method="post" action="<?php echo $formaction ?>">
976 <div><input type="hidden" name="stage" value="<?php echo $nextstage ?>" /></div>
977 <?php
980 $disabled = $enablenext ? '' : 'disabled="disabled"';
983 <?php echo ($nextstage < SAVE) ? "<div><input $disabled type=\"submit\" name=\"next\" value=\"".get_string('next')." &raquo;\" style=\"float: ".fix_align_rtl("right")."\"/></div>\n" : "&nbsp;\n" ?>
984 <?php echo ($nextstage > WELCOME) ? "<div><input type=\"submit\" name=\"prev\" value=\"&laquo; ".get_string('previous')."\" style=\"float: ".fix_align_rtl("left")."\"/></div>\n" : "&nbsp;\n" ?>
986 <?php
987 if ($needtoopenform) {
989 </form>
990 <?php
995 </td>
997 </tr>
999 </table>
1000 <?php
1001 if (!$needtoopenform) {
1003 </form>
1004 <?php
1008 <?php
1013 //==========================================================================//
1015 function print_compatibility_row($success, $testtext, $errormessage, $helpfield='', $caution=false) {
1016 echo "<tr>\n";
1017 echo "<td class=\"td_left_nowrap\" valign=\"top\"><p class=\"p_install\">$testtext</p></td>\n";
1018 if ($success) {
1019 echo "<td valign=\"top\"><p class=\"p_pass\">".get_string('pass', 'install')."</p></td>\n";
1020 echo "<td valign=\"top\">&nbsp;</td>\n";
1021 } else {
1022 echo "<td valign=\"top\">";
1023 echo ($caution) ? "<p class=\"p_caution\">".get_string('caution', 'install') : "<p class=\"p_fail\">".get_string('fail', 'install');
1024 echo "</p></td>\n";
1025 echo "<td valign=\"top\">";
1026 echo "<p class=\"p_install\">$errormessage ";
1027 if ($helpfield !== '') {
1028 install_helpbutton("install.php?help=$helpfield");
1030 echo "</p></td>\n";
1032 echo "</tr>\n";
1033 return $success;
1037 //==========================================================================//
1039 function install_helpbutton($url, $title='') {
1040 if ($title == '') {
1041 $title = get_string('help');
1043 echo "<a href=\"javascript:void(0)\" ";
1044 echo "onclick=\"return window.open('$url','Help','menubar=0,location=0,scrollbars,resizable,width=500,height=400')\"";
1045 echo ">";
1046 echo "<img src=\"pix/help.gif\" class=\"iconhelp\" alt=\"$title\" title=\"$title\"/>";
1047 echo "</a>\n";
1052 //==========================================================================//
1054 function print_install_help($help) {
1055 switch ($help) {
1056 case 'phpversionhelp':
1057 print_string($help, 'install', phpversion());
1058 break;
1059 case 'memorylimithelp':
1060 print_string($help, 'install', get_memory_limit());
1061 break;
1062 default:
1063 print_string($help, 'install');
1068 //==========================================================================//
1070 function get_memory_limit() {
1071 if ($limit = ini_get('memory_limit')) {
1072 return $limit;
1073 } else {
1074 return get_cfg_var('memory_limit');
1078 //==========================================================================//
1080 function check_memory_limit() {
1082 /// if limit is already 40 or more then we don't care if we can change it or not
1083 if ((int)str_replace('M', '', get_memory_limit()) >= 40) {
1084 return true;
1087 /// Otherwise, see if we can change it ourselves
1088 raise_memory_limit('40M');
1089 return ((int)str_replace('M', '', get_memory_limit()) >= 40);
1092 //==========================================================================//
1094 function inst_check_php_version() {
1095 if (!check_php_version("4.3.0")) {
1096 return false;
1097 } else if (check_php_version("5.0.0")) {
1098 return check_php_version("5.1.0"); // 5.0.x is too buggy
1100 return true; // 4.3.x or 4.4.x is fine
1102 //==========================================================================//
1104 /* This function returns a list of languages and their full names. The
1105 * list of available languages is fetched from install/lang/xx/installer.php
1106 * and it's used exclusively by the installation process
1107 * @return array An associative array with contents in the form of LanguageCode => LanguageName
1109 function get_installer_list_of_languages() {
1111 global $CFG;
1113 $languages = array();
1115 /// Get raw list of lang directories
1116 $langdirs = get_list_of_plugins('install/lang');
1117 asort($langdirs);
1118 /// Get some info from each lang
1119 foreach ($langdirs as $lang) {
1120 if (file_exists($CFG->dirroot .'/install/lang/'. $lang .'/installer.php')) {
1121 include($CFG->dirroot .'/install/lang/'. $lang .'/installer.php');
1122 if (substr($lang, -5) == '_utf8') { //Remove the _utf8 suffix from the lang to show
1123 $shortlang = substr($lang, 0, -5);
1124 } else {
1125 $shortlang = $lang;
1127 if ($lang == 'en') { //Explain this is non-utf8 en
1128 $shortlang = 'non-utf8 en';
1130 if (!empty($string['thislanguage'])) {
1131 $languages[$lang] = $string['thislanguage'] .' ('. $shortlang .')';
1133 unset($string);
1136 /// Return array
1137 return $languages;
1140 //==========================================================================//
1142 function css_styles() {
1145 <style type="text/css">
1147 body { background-color: #ffeece; }
1148 p, li, td {
1149 font-family: helvetica, arial, sans-serif;
1150 font-size: 10pt;
1152 a { text-decoration: none; color: blue; }
1153 a img {
1154 border: none;
1156 .errormsg {
1157 color: red;
1158 font-weight: bold;
1160 blockquote {
1161 font-family: courier, monospace;
1162 font-size: 10pt;
1164 .input_database {
1165 width: 270px;
1167 .install_table {
1168 width: 500px;
1169 margin-left:auto;
1170 margin-right:auto;
1172 .td_left {
1173 text-align: <?php echo fix_align_rtl("right") ?>;
1174 font-weight: bold;
1176 .td_left_nowrap{
1177 text-align: <?php echo fix_align_rtl("right") ?>;
1178 font-weight: bold;
1179 white-space: nowrap;
1180 width: 160px;
1181 padding-left: 10px;
1183 .td_right {
1184 text-align: <?php echo fix_align_rtl("left") ?>;
1186 .main {
1187 width: 80%;
1188 border-width: 1px;
1189 border-style: solid;
1190 border-color: #ffc85f;
1191 margin-left:auto;
1192 margin-right:auto;
1193 -moz-border-radius-bottomleft: 15px;
1194 -moz-border-radius-bottomright: 15px;
1196 .td_mainheading {
1197 background-color: #fee6b9;
1198 padding-left: 10px;
1200 .td_main {
1201 text-align: center;
1203 .td_mainlogo {
1204 vertical-align: middle;
1206 .p_mainlogo {
1207 margin-top: 0px;
1208 margin-bottom: 0px;
1210 .p_mainheading {
1211 font-size: 11pt;
1212 margin-top: 16px;
1213 margin-bottom: 16px;
1215 .p_subheading {
1216 font-size: 10pt;
1217 padding-left: 10px;
1218 margin-top: 16px;
1219 margin-bottom: 16px;
1221 .p_mainheader{
1222 text-align: right;
1223 font-size: 20pt;
1224 font-weight: bold;
1225 margin-top: 0px;
1226 margin-bottom: 0px;
1228 .p_pass {
1229 color: green;
1230 font-weight: bold;
1231 margin-top: 0px;
1232 margin-bottom: 0px;
1234 .p_fail {
1235 color: red;
1236 font-weight: bold;
1237 margin-top: 0px;
1238 margin-bottom: 0px;
1240 .p_caution {
1241 color: #ff6600;
1242 font-weight: bold;
1243 margin-top: 0px;
1244 margin-bottom: 0px;
1246 .p_help {
1247 text-align: center;
1248 font-family: helvetica, arial, sans-serif;
1249 font-size: 14pt;
1250 font-weight: bold;
1251 color: #333333;
1252 margin-top: 0px;
1253 margin-bottom: 0px;
1255 /* This override the p tag for every p tag in this installation script,
1256 but not in lang\xxx\installer.php
1258 .p_install {
1259 margin-top: 0px;
1260 margin-bottom: 0px;
1262 .environmenttable {
1263 font-size: 10pt;
1264 border-color: #ffc85f;
1266 table.environmenttable .error {
1267 background-color : red;
1268 color : inherit;
1271 table.environmenttable .warn {
1272 background-color : yellow;
1275 table.environmenttable .ok {
1276 background-color : lightgreen;
1278 .header {
1279 background-color: #fee6b9;
1280 font-size: 10pt;
1282 .cell {
1283 background-color: #ffeece;
1284 font-size: 10pt;
1286 .error {
1287 color: #ff0000;
1289 .errorboxcontent {
1290 text-align: center;
1291 font-weight: bold;
1292 padding-left: 20px;
1293 color: #ff0000;
1295 .invisiblefieldset {
1296 display:inline;
1297 border:0px;
1298 padding:0px;
1299 margin:0px;
1301 #mysql, #mysqli, #postgres7, #mssql, #mssql_n, #odbc_mssql, #oci8po {
1302 display: none;
1305 </style>
1307 <?php
1310 //==========================================================================//
1312 function database_js() {
1315 <script type="text/javascript" defer="defer">
1316 function toggledbinfo() {
1317 //Calculate selected value
1318 var showid = 'mysql';
1319 if (document.getElementById('installform').dbtype.value) {
1320 showid = document.getElementById('installform').dbtype.value;
1322 if (document.getElementById) {
1323 //Hide all the divs
1324 document.getElementById('mysql').style.display = '';
1325 document.getElementById('mysqli').style.display = '';
1326 document.getElementById('postgres7').style.display = '';
1327 document.getElementById('mssql').style.display = '';
1328 document.getElementById('mssql_n').style.display = '';
1329 document.getElementById('odbc_mssql').style.display = '';
1330 document.getElementById('oci8po').style.display = '';
1331 //Show the selected div
1332 document.getElementById(showid).style.display = 'block';
1333 } else if (document.all) {
1334 //This is the way old msie versions work
1335 //Hide all the divs
1336 document.all['mysql'].style.display = '';
1337 document.all['mysqli'].style.display = '';
1338 document.all['postgres7'].style.display = '';
1339 document.all['mssql'].style.display = '';
1340 document.all['mssql_n'].style.display = '';
1341 document.all['odbc_mssql'].style.display = '';
1342 document.all['oci8po'].style.display = '';
1343 //Show the selected div
1344 document.all[showid].style.display = 'block';
1345 } else if (document.layers) {
1346 //This is the way nn4 works
1347 //Hide all the divs
1348 document.layers['mysql'].style.display = '';
1349 document.layers['mysqli'].style.display = '';
1350 document.layers['postgres7'].style.display = '';
1351 document.layers['mssql'].style.display = '';
1352 document.layers['mssql_n'].style.display = '';
1353 document.layers['odbc_mssql'].style.display = '';
1354 document.layers['oci8po'].style.display = '';
1355 //Show the selected div
1356 document.layers[showid].style.display = 'block';
1359 </script>
1361 <?php
1365 * Add slashes for single quotes and backslashes
1366 * so they can be included in single quoted string
1367 * (for config.php)
1369 function addsingleslashes($input){
1370 return preg_replace("/(['\\\])/", "\\\\$1", $input);