libdir.'/adminlib.php'); // Contains various admin-only functions $id = optional_param('id', '', PARAM_TEXT); $confirmupgrade = optional_param('confirmupgrade', 0, PARAM_BOOL); $confirmrelease = optional_param('confirmrelease', 0, PARAM_BOOL); $confirmplugins = optional_param('confirmplugincheck', 0, PARAM_BOOL); $agreelicense = optional_param('agreelicense', 0, PARAM_BOOL); /// Check some PHP server settings $documentationlink = 'Installation docs'; if (ini_get_bool('session.auto_start')) { print_error('phpvaroff', 'debug', '', (object)array('name'=>'session.auto_start', 'link'=>$documentationlink)); } if (ini_get_bool('magic_quotes_runtime')) { print_error('phpvaroff', 'debug', '', (object)array('name'=>'magic_quotes_runtime', 'link'=>$documentationlink)); } if (!ini_get_bool('file_uploads')) { print_error('phpvaron', 'debug', '', (object)array('name'=>'file_uploads', 'link'=>$documentationlink)); } /// Check that config.php has been edited if ($CFG->wwwroot == "http://example.com/moodle") { print_error('configmoodle', 'debug'); } /// Check settings in config.php $dirroot = dirname(realpath("../index.php")); if (!empty($dirroot) and $dirroot != $CFG->dirroot) { print_error('fixsetting', 'debug', '', (object)array('current'=>$CFG->dirroot, 'found'=>$dirroot)); } /// Set some necessary variables during set-up to avoid PHP warnings later on this page if (!isset($CFG->framename)) { $CFG->framename = "_top"; } if (!isset($CFG->release)) { $CFG->release = ""; } if (!isset($CFG->version)) { $CFG->version = ""; } $version = null; $release = null; include("$CFG->dirroot/version.php"); // defines $version and $release if (!$version or !$release) { print_error('withoutversion', 'debug'); // without version, stop } /// Check if the main tables have been installed yet or not. if (!$tables = $DB->get_tables() ) { // No tables yet at all. $maintables = false; } else { // Check for missing main tables $maintables = true; $mtables = array('config', 'course', 'groupings'); // some tables used in 1.9 and 2.0, preferable something from the start and end of install.xml foreach ($mtables as $mtable) { if (!in_array($mtable, $tables)) { $maintables = false; break; } } unset($mtables); } unset($tables); if (!$maintables) { /// hide errors from headers in case debug enabled in config.php $origdebug = $CFG->debug; $CFG->debug = DEBUG_MINIMAL; error_reporting($CFG->debug); if (empty($agreelicense)) { $strlicense = get_string('license'); $navigation = build_navigation(array(array('name'=>$strlicense, 'link'=>null, 'type'=>'misc'))); print_header($strlicense, $strlicense, $navigation, "", "", false, " ", " "); print_heading("Moodle - Modular Object-Oriented Dynamic Learning Environment"); print_heading(get_string('copyrightnotice')); print_box(text_to_html(get_string('gpl')), 'copyrightnotice'); echo "
"; notice_yesno(get_string('doyouagree'), "index.php?agreelicense=1", "http://docs.moodle.org/en/License"); print_footer('none'); exit; } if (empty($confirmrelease)) { $strcurrentrelease = get_string("currentrelease"); $navigation = build_navigation(array(array('name'=>$strcurrentrelease, 'link'=>null, 'type'=>'misc'))); print_header($strcurrentrelease, $strcurrentrelease, $navigation, "", "", false, " ", " "); print_heading("Moodle $release"); print_box(get_string('releasenoteslink', 'admin', 'http://docs.moodle.org/en/Release_Notes'), 'generalbox boxaligncenter boxwidthwide'); echo '
'; echo ''; echo ''; echo '
'; echo '

'; echo '
'; print_footer('none'); die; } $strdatabasesetup = get_string("databasesetup"); $strdatabasesuccess = get_string("databasesuccess"); $navigation = build_navigation(array(array('name'=>$strdatabasesetup, 'link'=>null, 'type'=>'misc'))); print_header($strdatabasesetup, $strdatabasesetup, $navigation, "", upgrade_get_javascript(), false, " ", " "); /// return to original debugging level $CFG->debug = $origdebug; error_reporting($CFG->debug); $DB->set_debug(true); if (!$DB->setup_is_unicodedb()) { if (!$DB->change_db_encoding()) { // If could not convert successfully, throw error, and prevent installation print_error('unicoderequired', 'admin'); } } $DB->get_manager()->install_from_xmldb_file("$CFG->libdir/db/install.xml"); upgrade_log_start(); // move here because we want the flag to be stored in config table ;-) /// set all core default records and default settings require_once("$CFG->libdir/db/install.php"); xmldb_main_install($version); /// Continue with the instalation // Install the roles system. moodle_install_roles(); // Install core event handlers events_update_definition(); // Install core message providers message_update_providers(); message_update_providers('message'); // Write default settings unconditionally (i.e. even if a setting is already set, overwrite it) admin_apply_default_settings(NULL, true); notify($strdatabasesuccess, 'notifysuccess'); /// do not show certificates in log ;-) $DB->set_debug(false); print_continue("index.php"); print_footer('none'); die; } /// Check version of Moodle code on disk compared with database /// and upgrade if possible. $stradministration = get_string('administration'); if (empty($CFG->version)) { print_error('missingconfigversion', 'debug'); } if ($version > $CFG->version) { // upgrade require_once($CFG->libdir.'/db/upgrade.php'); // Defines upgrades require_once($CFG->libdir.'/db/upgradelib.php'); // Upgrade-related functions $a->oldversion = "$CFG->release ($CFG->version)"; $a->newversion = "$release ($version)"; $strdatabasechecking = get_string("databasechecking", "", $a); // hide errors from headers in case debug is enabled $origdebug = $CFG->debug; $CFG->debug = DEBUG_MINIMAL; error_reporting($CFG->debug); $CFG->xmlstrictheaders = false; // logo ut in case we are upgrading from pre 1.9 version in order to prevent // weird session/role problems caused by incorrect data in USER and SESSION if ($CFG->version < 2007101500) { require_logout(); } if (empty($confirmupgrade)) { $navigation = build_navigation(array(array('name'=>$strdatabasechecking, 'link'=>null, 'type'=>'misc'))); print_header($strdatabasechecking, $stradministration, $navigation, "", "", false, " ", " "); notice_yesno(get_string('upgradesure', 'admin', $a->newversion), 'index.php?confirmupgrade=1', 'index.php'); print_footer('none'); exit; } else if (empty($confirmrelease)){ $strcurrentrelease = get_string("currentrelease"); $navigation = build_navigation(array(array('name'=>$strcurrentrelease, 'link'=>null, 'type'=>'misc'))); print_header($strcurrentrelease, $strcurrentrelease, $navigation, "", "", false, " ", " "); print_heading("Moodle $release"); print_box(get_string('releasenoteslink', 'admin', 'http://docs.moodle.org/en/Release_Notes')); require_once($CFG->libdir.'/environmentlib.php'); print_heading(get_string('environment', 'admin')); if (!check_moodle_environment($release, $environment_results, true)) { if (empty($CFG->skiplangupgrade)) { print_box_start('generalbox', 'notice'); // MDL-8330 print_string('langpackwillbeupdated', 'admin'); print_box_end(); } notice_yesno(get_string('environmenterrorupgrade', 'admin'), 'index.php?confirmupgrade=1&confirmrelease=1', 'index.php'); } else { notify(get_string('environmentok', 'admin'), 'notifysuccess'); if (empty($CFG->skiplangupgrade)) { print_box_start('generalbox', 'notice'); // MDL-8330 print_string('langpackwillbeupdated', 'admin'); print_box_end(); } echo '
'; echo ''; echo ''; echo '
'; echo '
'; echo '

'; echo '
'; } print_footer('none'); die; } elseif (empty($confirmplugins)) { $strplugincheck = get_string('plugincheck'); $navigation = build_navigation(array(array('name'=>$strplugincheck, 'link'=>null, 'type'=>'misc'))); print_header($strplugincheck, $strplugincheck, $navigation, "", "", false, " ", " "); print_heading($strplugincheck); print_box_start('generalbox', 'notice'); // MDL-8330 print_string('pluginchecknotice'); print_box_end(); print_plugin_tables(); echo "
"; echo '
'; print_single_button('index.php', array('confirmupgrade' => 1, 'confirmrelease' => 1), get_string('reload'), 'get'); echo '

'; echo '
'; echo ''; echo ''; echo ''; echo '
'; echo '

'; echo '
'; print_footer('none'); die(); } else { $strdatabasesuccess = get_string("databasesuccess"); $navigation = build_navigation(array(array('name'=>$strdatabasesuccess, 'link'=>null, 'type'=>'misc'))); print_header($strdatabasechecking, $stradministration, $navigation, "", upgrade_get_javascript(), false, " ", " "); /// return to original debugging level $CFG->debug = $origdebug; error_reporting($CFG->debug); upgrade_log_start(); /// Upgrade current language pack if we can if (empty($CFG->skiplangupgrade)) { upgrade_language_pack(); } print_heading($strdatabasechecking); $DB->set_debug(true); /// Launch the old main upgrade (if exists) $status = xmldb_main_upgrade($CFG->version); $DB->set_debug(false); /// If successful, continue upgrading roles and setting everything properly if ($status) { if (!update_capabilities()) { print_error('cannotupgradecapabilities', 'debug'); } // Update core events events_update_definition(); // Update core message providers message_update_providers(); message_update_providers('message'); if (set_config("version", $version)) { remove_dir($CFG->dataroot . '/cache', true); // flush cache notify($strdatabasesuccess, "green"); print_continue("upgradesettings.php"); print_footer('none'); exit; } else { print_error('cannotupdateversion', 'debug'); } /// Main upgrade not success } else { notify('Main Upgrade failed! See lib/db/upgrade.php'); print_continue('index.php?confirmupgrade=1&confirmrelease=1&confirmplugincheck=1'); print_footer('none'); die; } } } else if ($version < $CFG->version) { notify("WARNING!!! The code you are using is OLDER than the version that made these databases!"); } /// Updated human-readable release version if necessary if ($release <> $CFG->release) { // Update the release version if (!set_config("release", $release)) { print_error("cannotupdaterelease", 'debug'); } } // Turn off xmlstrictheaders during upgrade. $origxmlstrictheaders = !empty($CFG->xmlstrictheaders); $CFG->xmlstrictheaders = false; /// upgrade all plugins types $upgradedplugins = false; $plugintypes = get_plugin_types(); foreach ($plugintypes as $type=>$location) { $upgradedplugins = upgrade_plugins($type, $location) || $upgradedplugins; } if ($upgradedplugins) { print_continue($FULLSCRIPT); print_footer('none'); die; } /// Check for changes to RPC functions if ($CFG->mnet_dispatcher_mode != 'off') { require_once("$CFG->dirroot/$CFG->admin/mnet/adminlib.php"); upgrade_RPC_functions($FULLSCRIPT); // Return here afterwards } /// Check for local database customisations require_once("$CFG->dirroot/lib/locallib.php"); upgrade_local_db($FULLSCRIPT); // Return here afterwards /// just make sure upgrade logging is properly terminated upgrade_log_finish(); // Turn xmlstrictheaders back on now. $CFG->xmlstrictheaders = $origxmlstrictheaders; /// make sure admin user is created - this is the last step because we need /// session to be working properly in order to edit admin account if (empty($CFG->rolesactive)) { $adminuser = create_admin_user(); $adminuser->newadminuser = 1; complete_user_login($adminuser); redirect("$CFG->wwwroot/user/editadvanced.php?id=$adminuser->id"); // Edit thyself } /// Check for valid admin user - no guest autologin require_login(0, false); $context = get_context_instance(CONTEXT_SYSTEM); require_capability('moodle/site:config', $context); /// check that site is properly customized $site = get_site(); if (empty($site->shortname)) { // probably new installation - lets return to frontpage after this step // remove settings that we want uninitialised unset_config('registerauth'); redirect('upgradesettings.php?return=site'); } /// Check if we are returning from moodle.org registration and if so, we mark that fact to remove reminders if (!empty($id) and $id == $CFG->siteidentifier) { set_config('registered', time()); } /// setup critical warnings before printing admin tree block $insecuredataroot = is_dataroot_insecure(true); $register_globals_enabled = ini_get_bool('register_globals'); $SESSION->admin_critical_warning = ($register_globals_enabled || $insecuredataroot==INSECURE_DATAROOT_ERROR); $adminroot = admin_get_root(); /// Check if there are any new admin settings which have still yet to be set if (any_new_admin_settings($adminroot)){ redirect('upgradesettings.php'); } /// Everything should now be set up, and the user is an admin /// Print default admin page with notifications. admin_externalpage_setup('adminnotifications'); admin_externalpage_print_header(); /// Deprecated database! Warning!! if (!empty($CFG->migrated_to_new_db)) { print_box(print_string('dbmigrationdeprecateddb', 'admin'), 'generalbox adminwarning'); } /// Check for any special upgrades that might need to be run if (!empty($CFG->upgrade)) { print_box(get_string("upgrade$CFG->upgrade", "admin", "$CFG->wwwroot/$CFG->admin/upgrade$CFG->upgrade.php")); } if ($register_globals_enabled) { print_box(get_string('globalswarning', 'admin'), 'generalbox adminerror'); } if ($insecuredataroot == INSECURE_DATAROOT_WARNING) { print_box(get_string('datarootsecuritywarning', 'admin', $CFG->dataroot), 'generalbox adminwarning'); } else if ($insecuredataroot == INSECURE_DATAROOT_ERROR) { print_box(get_string('datarootsecurityerror', 'admin', $CFG->dataroot), 'generalbox adminerror'); } if (defined('WARN_DISPLAY_ERRORS_ENABLED')) { print_box(get_string('displayerrorswarning', 'admin'), 'generalbox adminwarning'); } /// If no recently cron run $lastcron = $DB->get_field_sql('SELECT MAX(lastcron) FROM {modules}'); if (time() - $lastcron > 3600 * 24) { $strinstallation = get_string('installation', 'install'); $helpbutton = helpbutton('install', $strinstallation, 'moodle', true, false, '', true); print_box(get_string('cronwarning', 'admin')." ".$helpbutton, 'generalbox adminwarning'); } /// Print multilang upgrade notice if needed if (empty($CFG->filter_multilang_converted)) { print_box(get_string('multilangupgradenotice', 'admin'), 'generalbox adminwarning'); } /// Alert if we are currently in maintenance mode if (file_exists($CFG->dataroot.'/1/maintenance.html')) { print_box(get_string('sitemaintenancewarning', 'admin'), 'generalbox adminwarning'); } ////////////////////////////////////////////////////////////////////////////////////////////////// //// IT IS ILLEGAL AND A VIOLATION OF THE GPL TO HIDE, REMOVE OR MODIFY THIS COPYRIGHT NOTICE /// $copyrighttext = 'Moodle '. ''.$CFG->release.'
'. 'Copyright © 1999 onwards, Martin Dougiamas
'. 'and many other contributors.
'. 'GNU Public License'; print_box($copyrighttext, 'copyright'); ////////////////////////////////////////////////////////////////////////////////////////////////// admin_externalpage_print_footer(); ?>