Merge branch 'MDL-48202-M30' of git://github.com/lazydaisy/moodle
[moodle.git] / lib / setup.php
blob4a63ba88a88eb4fc05fb5a0511ddc1e24b5243b3
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * setup.php - Sets up sessions, connects to databases and so on
21 * Normally this is only called by the main config.php file
22 * Normally this file does not need to be edited.
24 * @package core
25 * @subpackage lib
26 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
27 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30 /**
31 * Holds the core settings that affect how Moodle works. Some of its fields
32 * are set in config.php, and the rest are loaded from the config table.
34 * Some typical settings in the $CFG global:
35 * - $CFG->wwwroot - Path to moodle index directory in url format.
36 * - $CFG->dataroot - Path to moodle data files directory on server's filesystem.
37 * - $CFG->dirroot - Path to moodle's library folder on server's filesystem.
38 * - $CFG->libdir - Path to moodle's library folder on server's filesystem.
39 * - $CFG->tempdir - Path to moodle's temp file directory on server's filesystem.
40 * - $CFG->cachedir - Path to moodle's cache directory on server's filesystem (shared by cluster nodes).
41 * - $CFG->localcachedir - Path to moodle's local cache directory (not shared by cluster nodes).
43 * @global object $CFG
44 * @name $CFG
46 global $CFG; // this should be done much earlier in config.php before creating new $CFG instance
48 if (!isset($CFG)) {
49 if (defined('PHPUNIT_TEST') and PHPUNIT_TEST) {
50 echo('There is a missing "global $CFG;" at the beginning of the config.php file.'."\n");
51 exit(1);
52 } else {
53 // this should never happen, maybe somebody is accessing this file directly...
54 exit(1);
58 // We can detect real dirroot path reliably since PHP 4.0.2,
59 // it can not be anything else, there is no point in having this in config.php
60 $CFG->dirroot = dirname(dirname(__FILE__));
62 // File permissions on created directories in the $CFG->dataroot
63 if (!isset($CFG->directorypermissions)) {
64 $CFG->directorypermissions = 02777; // Must be octal (that's why it's here)
66 if (!isset($CFG->filepermissions)) {
67 $CFG->filepermissions = ($CFG->directorypermissions & 0666); // strip execute flags
69 // Better also set default umask because developers often forget to include directory
70 // permissions in mkdir() and chmod() after creating new files.
71 if (!isset($CFG->umaskpermissions)) {
72 $CFG->umaskpermissions = (($CFG->directorypermissions & 0777) ^ 0777);
74 umask($CFG->umaskpermissions);
76 if (defined('BEHAT_SITE_RUNNING')) {
77 // We already switched to behat test site previously.
79 } else if (!empty($CFG->behat_wwwroot) or !empty($CFG->behat_dataroot) or !empty($CFG->behat_prefix)) {
80 // The behat is configured on this server, we need to find out if this is the behat test
81 // site based on the URL used for access.
82 require_once(__DIR__ . '/../lib/behat/lib.php');
84 // Update config variables for parallel behat runs.
85 behat_update_vars_for_process();
87 if (behat_is_test_site()) {
88 clearstatcache();
90 // Checking the integrity of the provided $CFG->behat_* vars and the
91 // selected wwwroot to prevent conflicts with production and phpunit environments.
92 behat_check_config_vars();
94 // Check that the directory does not contains other things.
95 if (!file_exists("$CFG->behat_dataroot/behattestdir.txt")) {
96 if ($dh = opendir($CFG->behat_dataroot)) {
97 while (($file = readdir($dh)) !== false) {
98 if ($file === 'behat' or $file === '.' or $file === '..' or $file === '.DS_Store' or is_numeric($file)) {
99 continue;
101 behat_error(BEHAT_EXITCODE_CONFIG, "$CFG->behat_dataroot directory is not empty, ensure this is the " .
102 "directory where you want to install behat test dataroot");
104 closedir($dh);
105 unset($dh);
106 unset($file);
109 if (defined('BEHAT_UTIL')) {
110 // Now we create dataroot directory structure for behat tests.
111 testing_initdataroot($CFG->behat_dataroot, 'behat');
112 } else {
113 behat_error(BEHAT_EXITCODE_INSTALL);
117 if (!defined('BEHAT_UTIL') and !defined('BEHAT_TEST')) {
118 // Somebody tries to access test site directly, tell them if not enabled.
119 if (!file_exists($CFG->behat_dataroot . '/behat/test_environment_enabled.txt')) {
120 behat_error(BEHAT_EXITCODE_CONFIG, 'Behat is configured but not enabled on this test site.');
124 // Constant used to inform that the behat test site is being used,
125 // this includes all the processes executed by the behat CLI command like
126 // the site reset, the steps executed by the browser drivers when simulating
127 // a user session and a real session when browsing manually to $CFG->behat_wwwroot
128 // like the browser driver does automatically.
129 // Different from BEHAT_TEST as only this last one can perform CLI
130 // actions like reset the site or use data generators.
131 define('BEHAT_SITE_RUNNING', true);
133 // Clean extra config.php settings.
134 behat_clean_init_config();
136 // Now we can begin switching $CFG->X for $CFG->behat_X.
137 $CFG->wwwroot = $CFG->behat_wwwroot;
138 $CFG->prefix = $CFG->behat_prefix;
139 $CFG->dataroot = $CFG->behat_dataroot;
143 // Normalise dataroot - we do not want any symbolic links, trailing / or any other weirdness there
144 if (!isset($CFG->dataroot)) {
145 if (isset($_SERVER['REMOTE_ADDR'])) {
146 header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service Unavailable');
148 echo('Fatal error: $CFG->dataroot is not specified in config.php! Exiting.'."\n");
149 exit(1);
151 $CFG->dataroot = realpath($CFG->dataroot);
152 if ($CFG->dataroot === false) {
153 if (isset($_SERVER['REMOTE_ADDR'])) {
154 header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service Unavailable');
156 echo('Fatal error: $CFG->dataroot is not configured properly, directory does not exist or is not accessible! Exiting.'."\n");
157 exit(1);
158 } else if (!is_writable($CFG->dataroot)) {
159 if (isset($_SERVER['REMOTE_ADDR'])) {
160 header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service Unavailable');
162 echo('Fatal error: $CFG->dataroot is not writable, admin has to fix directory permissions! Exiting.'."\n");
163 exit(1);
166 // wwwroot is mandatory
167 if (!isset($CFG->wwwroot) or $CFG->wwwroot === 'http://example.com/moodle') {
168 if (isset($_SERVER['REMOTE_ADDR'])) {
169 header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service Unavailable');
171 echo('Fatal error: $CFG->wwwroot is not configured! Exiting.'."\n");
172 exit(1);
175 // Make sure there is some database table prefix.
176 if (!isset($CFG->prefix)) {
177 $CFG->prefix = '';
180 // Define admin directory
181 if (!isset($CFG->admin)) { // Just in case it isn't defined in config.php
182 $CFG->admin = 'admin'; // This is relative to the wwwroot and dirroot
185 // Set up some paths.
186 $CFG->libdir = $CFG->dirroot .'/lib';
188 // Allow overriding of tempdir but be backwards compatible
189 if (!isset($CFG->tempdir)) {
190 $CFG->tempdir = "$CFG->dataroot/temp";
193 // Allow overriding of cachedir but be backwards compatible
194 if (!isset($CFG->cachedir)) {
195 $CFG->cachedir = "$CFG->dataroot/cache";
198 // Allow overriding of localcachedir.
199 if (!isset($CFG->localcachedir)) {
200 $CFG->localcachedir = "$CFG->dataroot/localcache";
203 // Location of all languages except core English pack.
204 if (!isset($CFG->langotherroot)) {
205 $CFG->langotherroot = $CFG->dataroot.'/lang';
208 // Location of local lang pack customisations (dirs with _local suffix).
209 if (!isset($CFG->langlocalroot)) {
210 $CFG->langlocalroot = $CFG->dataroot.'/lang';
213 // The current directory in PHP version 4.3.0 and above isn't necessarily the
214 // directory of the script when run from the command line. The require_once()
215 // would fail, so we'll have to chdir()
216 if (!isset($_SERVER['REMOTE_ADDR']) && isset($_SERVER['argv'][0])) {
217 // do it only once - skip the second time when continuing after prevous abort
218 if (!defined('ABORT_AFTER_CONFIG') and !defined('ABORT_AFTER_CONFIG_CANCEL')) {
219 chdir(dirname($_SERVER['argv'][0]));
223 // sometimes default PHP settings are borked on shared hosting servers, I wonder why they have to do that??
224 ini_set('precision', 14); // needed for upgrades and gradebook
225 ini_set('serialize_precision', 17); // Make float serialization consistent on all systems.
227 // Scripts may request no debug and error messages in output
228 // please note it must be defined before including the config.php script
229 // and in some cases you also need to set custom default exception handler
230 if (!defined('NO_DEBUG_DISPLAY')) {
231 if (defined('AJAX_SCRIPT') and AJAX_SCRIPT) {
232 // Moodle AJAX scripts are expected to return json data, any PHP notices or errors break it badly,
233 // developers simply must learn to watch error log.
234 define('NO_DEBUG_DISPLAY', true);
235 } else {
236 define('NO_DEBUG_DISPLAY', false);
240 // Some scripts such as upgrade may want to prevent output buffering
241 if (!defined('NO_OUTPUT_BUFFERING')) {
242 define('NO_OUTPUT_BUFFERING', false);
245 // PHPUnit tests need custom init
246 if (!defined('PHPUNIT_TEST')) {
247 define('PHPUNIT_TEST', false);
250 // Performance tests needs to always display performance info, even in redirections.
251 if (!defined('MDL_PERF_TEST')) {
252 define('MDL_PERF_TEST', false);
253 } else {
254 // We force the ones we need.
255 if (!defined('MDL_PERF')) {
256 define('MDL_PERF', true);
258 if (!defined('MDL_PERFDB')) {
259 define('MDL_PERFDB', true);
261 if (!defined('MDL_PERFTOFOOT')) {
262 define('MDL_PERFTOFOOT', true);
266 // When set to true MUC (Moodle caching) will be disabled as much as possible.
267 // A special cache factory will be used to handle this situation and will use special "disabled" equivalents objects.
268 // This ensure we don't attempt to read or create the config file, don't use stores, don't provide persistence or
269 // storage of any kind.
270 if (!defined('CACHE_DISABLE_ALL')) {
271 define('CACHE_DISABLE_ALL', false);
274 // When set to true MUC (Moodle caching) will not use any of the defined or default stores.
275 // The Cache API will continue to function however this will force the use of the cachestore_dummy so all requests
276 // will be interacting with a static property and will never go to the proper cache stores.
277 // Useful if you need to avoid the stores for one reason or another.
278 if (!defined('CACHE_DISABLE_STORES')) {
279 define('CACHE_DISABLE_STORES', false);
282 // Servers should define a default timezone in php.ini, but if they don't then make sure no errors are shown.
283 date_default_timezone_set(@date_default_timezone_get());
285 // Detect CLI scripts - CLI scripts are executed from command line, do not have session and we do not want HTML in output
286 // In your new CLI scripts just add "define('CLI_SCRIPT', true);" before requiring config.php.
287 // Please note that one script can not be accessed from both CLI and web interface.
288 if (!defined('CLI_SCRIPT')) {
289 define('CLI_SCRIPT', false);
291 if (defined('WEB_CRON_EMULATED_CLI')) {
292 if (!isset($_SERVER['REMOTE_ADDR'])) {
293 echo('Web cron can not be executed as CLI script any more, please use admin/cli/cron.php instead'."\n");
294 exit(1);
296 } else if (isset($_SERVER['REMOTE_ADDR'])) {
297 if (CLI_SCRIPT) {
298 echo('Command line scripts can not be executed from the web interface');
299 exit(1);
301 } else {
302 if (!CLI_SCRIPT) {
303 echo('Command line scripts must define CLI_SCRIPT before requiring config.php'."\n");
304 exit(1);
308 // All web service requests have WS_SERVER == true.
309 if (!defined('WS_SERVER')) {
310 define('WS_SERVER', false);
313 // Detect CLI maintenance mode - this is useful when you need to mess with database, such as during upgrades
314 if (file_exists("$CFG->dataroot/climaintenance.html")) {
315 if (!CLI_SCRIPT) {
316 header('Content-type: text/html; charset=utf-8');
317 header('X-UA-Compatible: IE=edge');
318 /// Headers to make it not cacheable and json
319 header('Cache-Control: no-store, no-cache, must-revalidate');
320 header('Cache-Control: post-check=0, pre-check=0', false);
321 header('Pragma: no-cache');
322 header('Expires: Mon, 20 Aug 1969 09:23:00 GMT');
323 header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
324 header('Accept-Ranges: none');
325 readfile("$CFG->dataroot/climaintenance.html");
326 die;
327 } else {
328 if (!defined('CLI_MAINTENANCE')) {
329 define('CLI_MAINTENANCE', true);
332 } else {
333 if (!defined('CLI_MAINTENANCE')) {
334 define('CLI_MAINTENANCE', false);
338 if (CLI_SCRIPT) {
339 // sometimes people use different PHP binary for web and CLI, make 100% sure they have the supported PHP version
340 if (version_compare(phpversion(), '5.4.4') < 0) {
341 $phpversion = phpversion();
342 // do NOT localise - lang strings would not work here and we CAN NOT move it to later place
343 echo "Moodle 2.7 or later requires at least PHP 5.4.4 (currently using version $phpversion).\n";
344 echo "Some servers may have multiple PHP versions installed, are you using the correct executable?\n";
345 exit(1);
349 // Detect ajax scripts - they are similar to CLI because we can not redirect, output html, etc.
350 if (!defined('AJAX_SCRIPT')) {
351 define('AJAX_SCRIPT', false);
354 // Exact version of currently used yui2 and 3 library.
355 $CFG->yui2version = '2.9.0';
356 $CFG->yui3version = '3.17.2';
358 // Patching the upstream YUI release.
359 // For important information on patching YUI modules, please see http://docs.moodle.org/dev/YUI/Patching.
360 // If we need to patch a YUI modules between official YUI releases, the yuipatchlevel will need to be manually
361 // incremented here. The module will also need to be listed in the yuipatchedmodules.
362 // When upgrading to a subsequent version of YUI, these should be reset back to 0 and an empty array.
363 $CFG->yuipatchlevel = 0;
364 $CFG->yuipatchedmodules = array(
367 // Store settings from config.php in array in $CFG - we can use it later to detect problems and overrides.
368 if (!isset($CFG->config_php_settings)) {
369 $CFG->config_php_settings = (array)$CFG;
370 // Forced plugin settings override values from config_plugins table.
371 unset($CFG->config_php_settings['forced_plugin_settings']);
372 if (!isset($CFG->forced_plugin_settings)) {
373 $CFG->forced_plugin_settings = array();
377 if (isset($CFG->debug)) {
378 $CFG->debug = (int)$CFG->debug;
379 } else {
380 $CFG->debug = 0;
382 $CFG->debugdeveloper = (($CFG->debug & (E_ALL | E_STRICT)) === (E_ALL | E_STRICT)); // DEBUG_DEVELOPER is not available yet.
384 if (!defined('MOODLE_INTERNAL')) { // Necessary because cli installer has to define it earlier.
385 /** Used by library scripts to check they are being called by Moodle. */
386 define('MOODLE_INTERNAL', true);
389 // core_component can be used in any scripts, it does not need anything else.
390 require_once($CFG->libdir .'/classes/component.php');
392 // special support for highly optimised scripts that do not need libraries and DB connection
393 if (defined('ABORT_AFTER_CONFIG')) {
394 if (!defined('ABORT_AFTER_CONFIG_CANCEL')) {
395 // hide debugging if not enabled in config.php - we do not want to disclose sensitive info
396 error_reporting($CFG->debug);
397 if (NO_DEBUG_DISPLAY) {
398 // Some parts of Moodle cannot display errors and debug at all.
399 ini_set('display_errors', '0');
400 ini_set('log_errors', '1');
401 } else if (empty($CFG->debugdisplay)) {
402 ini_set('display_errors', '0');
403 ini_set('log_errors', '1');
404 } else {
405 ini_set('display_errors', '1');
407 require_once("$CFG->dirroot/lib/configonlylib.php");
408 return;
412 // Early profiling start, based exclusively on config.php $CFG settings
413 if (!empty($CFG->earlyprofilingenabled)) {
414 require_once($CFG->libdir . '/xhprof/xhprof_moodle.php');
415 profiling_start();
419 * Database connection. Used for all access to the database.
420 * @global moodle_database $DB
421 * @name $DB
423 global $DB;
426 * Moodle's wrapper round PHP's $_SESSION.
428 * @global object $SESSION
429 * @name $SESSION
431 global $SESSION;
434 * Holds the user table record for the current user. Will be the 'guest'
435 * user record for people who are not logged in.
437 * $USER is stored in the session.
439 * Items found in the user record:
440 * - $USER->email - The user's email address.
441 * - $USER->id - The unique integer identified of this user in the 'user' table.
442 * - $USER->email - The user's email address.
443 * - $USER->firstname - The user's first name.
444 * - $USER->lastname - The user's last name.
445 * - $USER->username - The user's login username.
446 * - $USER->secret - The user's ?.
447 * - $USER->lang - The user's language choice.
449 * @global object $USER
450 * @name $USER
452 global $USER;
455 * Frontpage course record
457 global $SITE;
460 * A central store of information about the current page we are
461 * generating in response to the user's request.
463 * @global moodle_page $PAGE
464 * @name $PAGE
466 global $PAGE;
469 * The current course. An alias for $PAGE->course.
470 * @global object $COURSE
471 * @name $COURSE
473 global $COURSE;
476 * $OUTPUT is an instance of core_renderer or one of its subclasses. Use
477 * it to generate HTML for output.
479 * $OUTPUT is initialised the first time it is used. See {@link bootstrap_renderer}
480 * for the magic that does that. After $OUTPUT has been initialised, any attempt
481 * to change something that affects the current theme ($PAGE->course, logged in use,
482 * httpsrequried ... will result in an exception.)
484 * Please note the $OUTPUT is replacing the old global $THEME object.
486 * @global object $OUTPUT
487 * @name $OUTPUT
489 global $OUTPUT;
492 * Full script path including all params, slash arguments, scheme and host.
494 * Note: Do NOT use for getting of current page URL or detection of https,
495 * instead use $PAGE->url or is_https().
497 * @global string $FULLME
498 * @name $FULLME
500 global $FULLME;
503 * Script path including query string and slash arguments without host.
504 * @global string $ME
505 * @name $ME
507 global $ME;
510 * $FULLME without slasharguments and query string.
511 * @global string $FULLSCRIPT
512 * @name $FULLSCRIPT
514 global $FULLSCRIPT;
517 * Relative moodle script path '/course/view.php'
518 * @global string $SCRIPT
519 * @name $SCRIPT
521 global $SCRIPT;
523 // Set httpswwwroot default value (this variable will replace $CFG->wwwroot
524 // inside some URLs used in HTTPSPAGEREQUIRED pages.
525 $CFG->httpswwwroot = $CFG->wwwroot;
527 require_once($CFG->libdir .'/setuplib.php'); // Functions that MUST be loaded first
529 if (NO_OUTPUT_BUFFERING) {
530 // we have to call this always before starting session because it discards headers!
531 disable_output_buffering();
534 // Increase memory limits if possible
535 raise_memory_limit(MEMORY_STANDARD);
537 // Time to start counting
538 init_performance_info();
540 // Put $OUTPUT in place, so errors can be displayed.
541 $OUTPUT = new bootstrap_renderer();
543 // set handler for uncaught exceptions - equivalent to print_error() call
544 if (!PHPUNIT_TEST or PHPUNIT_UTIL) {
545 set_exception_handler('default_exception_handler');
546 set_error_handler('default_error_handler', E_ALL | E_STRICT);
549 // Acceptance tests needs special output to capture the errors,
550 // but not necessary for behat CLI command.
551 if (defined('BEHAT_SITE_RUNNING') && !defined('BEHAT_TEST')) {
552 require_once(__DIR__ . '/behat/lib.php');
553 set_error_handler('behat_error_handler', E_ALL | E_STRICT);
556 // If there are any errors in the standard libraries we want to know!
557 error_reporting(E_ALL | E_STRICT);
559 // Just say no to link prefetching (Moz prefetching, Google Web Accelerator, others)
560 // http://www.google.com/webmasters/faq.html#prefetchblock
561 if (!empty($_SERVER['HTTP_X_moz']) && $_SERVER['HTTP_X_moz'] === 'prefetch'){
562 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Prefetch Forbidden');
563 echo('Prefetch request forbidden.');
564 exit(1);
567 //point pear include path to moodles lib/pear so that includes and requires will search there for files before anywhere else
568 //the problem is that we need specific version of quickforms and hacked excel files :-(
569 ini_set('include_path', $CFG->libdir.'/pear' . PATH_SEPARATOR . ini_get('include_path'));
570 //point zend include path to moodles lib/zend so that includes and requires will search there for files before anywhere else
571 //please note zend library is supposed to be used only from web service protocol classes, it may be removed in future
572 ini_set('include_path', $CFG->libdir.'/zend' . PATH_SEPARATOR . ini_get('include_path'));
574 // Register our classloader, in theory somebody might want to replace it to load other hacked core classes.
575 if (defined('COMPONENT_CLASSLOADER')) {
576 spl_autoload_register(COMPONENT_CLASSLOADER);
577 } else {
578 spl_autoload_register('core_component::classloader');
581 // Remember the default PHP timezone, we will need it later.
582 core_date::store_default_php_timezone();
584 // Load up standard libraries
585 require_once($CFG->libdir .'/filterlib.php'); // Functions for filtering test as it is output
586 require_once($CFG->libdir .'/ajax/ajaxlib.php'); // Functions for managing our use of JavaScript and YUI
587 require_once($CFG->libdir .'/weblib.php'); // Functions relating to HTTP and content
588 require_once($CFG->libdir .'/outputlib.php'); // Functions for generating output
589 require_once($CFG->libdir .'/navigationlib.php'); // Class for generating Navigation structure
590 require_once($CFG->libdir .'/dmllib.php'); // Database access
591 require_once($CFG->libdir .'/datalib.php'); // Legacy lib with a big-mix of functions.
592 require_once($CFG->libdir .'/accesslib.php'); // Access control functions
593 require_once($CFG->libdir .'/deprecatedlib.php'); // Deprecated functions included for backward compatibility
594 require_once($CFG->libdir .'/moodlelib.php'); // Other general-purpose functions
595 require_once($CFG->libdir .'/enrollib.php'); // Enrolment related functions
596 require_once($CFG->libdir .'/pagelib.php'); // Library that defines the moodle_page class, used for $PAGE
597 require_once($CFG->libdir .'/blocklib.php'); // Library for controlling blocks
598 require_once($CFG->libdir .'/eventslib.php'); // Events functions
599 require_once($CFG->libdir .'/grouplib.php'); // Groups functions
600 require_once($CFG->libdir .'/sessionlib.php'); // All session and cookie related stuff
601 require_once($CFG->libdir .'/editorlib.php'); // All text editor related functions and classes
602 require_once($CFG->libdir .'/messagelib.php'); // Messagelib functions
603 require_once($CFG->libdir .'/modinfolib.php'); // Cached information on course-module instances
604 require_once($CFG->dirroot.'/cache/lib.php'); // Cache API
606 // make sure PHP is not severly misconfigured
607 setup_validate_php_configuration();
609 // Connect to the database
610 setup_DB();
612 if (PHPUNIT_TEST and !PHPUNIT_UTIL) {
613 // make sure tests do not run in parallel
614 test_lock::acquire('phpunit');
615 $dbhash = null;
616 try {
617 if ($dbhash = $DB->get_field('config', 'value', array('name'=>'phpunittest'))) {
618 // reset DB tables
619 phpunit_util::reset_database();
621 } catch (Exception $e) {
622 if ($dbhash) {
623 // we ned to reinit if reset fails
624 $DB->set_field('config', 'value', 'na', array('name'=>'phpunittest'));
627 unset($dbhash);
630 // Load up any configuration from the config table or MUC cache.
631 if (PHPUNIT_TEST) {
632 phpunit_util::initialise_cfg();
633 } else {
634 initialise_cfg();
637 if (isset($CFG->debug)) {
638 $CFG->debug = (int)$CFG->debug;
639 error_reporting($CFG->debug);
640 } else {
641 $CFG->debug = 0;
643 $CFG->debugdeveloper = (($CFG->debug & DEBUG_DEVELOPER) === DEBUG_DEVELOPER);
645 // Find out if PHP configured to display warnings,
646 // this is a security problem because some moodle scripts may
647 // disclose sensitive information.
648 if (ini_get_bool('display_errors')) {
649 define('WARN_DISPLAY_ERRORS_ENABLED', true);
651 // If we want to display Moodle errors, then try and set PHP errors to match.
652 if (!isset($CFG->debugdisplay)) {
653 // Keep it "as is" during installation.
654 } else if (NO_DEBUG_DISPLAY) {
655 // Some parts of Moodle cannot display errors and debug at all.
656 ini_set('display_errors', '0');
657 ini_set('log_errors', '1');
658 } else if (empty($CFG->debugdisplay)) {
659 ini_set('display_errors', '0');
660 ini_set('log_errors', '1');
661 } else {
662 // This is very problematic in XHTML strict mode!
663 ini_set('display_errors', '1');
666 // Register our shutdown manager, do NOT use register_shutdown_function().
667 core_shutdown_manager::initialize();
669 // Verify upgrade is not running unless we are in a script that needs to execute in any case
670 if (!defined('NO_UPGRADE_CHECK') and isset($CFG->upgraderunning)) {
671 if ($CFG->upgraderunning < time()) {
672 unset_config('upgraderunning');
673 } else {
674 print_error('upgraderunning');
678 // enable circular reference collector in PHP 5.3,
679 // it helps a lot when using large complex OOP structures such as in amos or gradebook
680 if (function_exists('gc_enable')) {
681 gc_enable();
684 // detect unsupported upgrade jump as soon as possible - do not change anything, do not use system functions
685 if (!empty($CFG->version) and $CFG->version < 2007101509) {
686 print_error('upgraderequires19', 'error');
687 die;
690 // Calculate and set $CFG->ostype to be used everywhere. Possible values are:
691 // - WINDOWS: for any Windows flavour.
692 // - UNIX: for the rest
693 // Also, $CFG->os can continue being used if more specialization is required
694 if (stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'darwin')) {
695 $CFG->ostype = 'WINDOWS';
696 } else {
697 $CFG->ostype = 'UNIX';
699 $CFG->os = PHP_OS;
701 // Configure ampersands in URLs
702 ini_set('arg_separator.output', '&amp;');
704 // Work around for a PHP bug see MDL-11237
705 ini_set('pcre.backtrack_limit', 20971520); // 20 MB
707 // Set PHP default timezone to server timezone.
708 core_date::set_default_server_timezone();
710 // Location of standard files
711 $CFG->wordlist = $CFG->libdir .'/wordlist.txt';
712 $CFG->moddata = 'moddata';
714 // neutralise nasty chars in PHP_SELF
715 if (isset($_SERVER['PHP_SELF'])) {
716 $phppos = strpos($_SERVER['PHP_SELF'], '.php');
717 if ($phppos !== false) {
718 $_SERVER['PHP_SELF'] = substr($_SERVER['PHP_SELF'], 0, $phppos+4);
720 unset($phppos);
723 // initialise ME's - this must be done BEFORE starting of session!
724 initialise_fullme();
726 // define SYSCONTEXTID in config.php if you want to save some queries,
727 // after install it must match the system context record id.
728 if (!defined('SYSCONTEXTID')) {
729 context_system::instance();
732 // Defining the site - aka frontpage course
733 try {
734 $SITE = get_site();
735 } catch (moodle_exception $e) {
736 $SITE = null;
737 if (empty($CFG->version)) {
738 $SITE = new stdClass();
739 $SITE->id = 1;
740 $SITE->shortname = null;
741 } else {
742 throw $e;
745 // And the 'default' course - this will usually get reset later in require_login() etc.
746 $COURSE = clone($SITE);
747 // Id of the frontpage course.
748 define('SITEID', $SITE->id);
750 // init session prevention flag - this is defined on pages that do not want session
751 if (CLI_SCRIPT) {
752 // no sessions in CLI scripts possible
753 define('NO_MOODLE_COOKIES', true);
755 } else if (WS_SERVER) {
756 // No sessions possible in web services.
757 define('NO_MOODLE_COOKIES', true);
759 } else if (!defined('NO_MOODLE_COOKIES')) {
760 if (empty($CFG->version) or $CFG->version < 2009011900) {
761 // no session before sessions table gets created
762 define('NO_MOODLE_COOKIES', true);
763 } else if (CLI_SCRIPT) {
764 // CLI scripts can not have session
765 define('NO_MOODLE_COOKIES', true);
766 } else {
767 define('NO_MOODLE_COOKIES', false);
771 // Start session and prepare global $SESSION, $USER.
772 if (empty($CFG->sessiontimeout)) {
773 $CFG->sessiontimeout = 7200;
775 \core\session\manager::start();
777 // Set default content type and encoding, developers are still required to use
778 // echo $OUTPUT->header() everywhere, anything that gets set later should override these headers.
779 // This is intended to mitigate some security problems.
780 if (AJAX_SCRIPT) {
781 if (!core_useragent::supports_json_contenttype()) {
782 // Some bloody old IE.
783 @header('Content-type: text/plain; charset=utf-8');
784 @header('X-Content-Type-Options: nosniff');
785 } else if (!empty($_FILES)) {
786 // Some ajax code may have problems with json and file uploads.
787 @header('Content-type: text/plain; charset=utf-8');
788 } else {
789 @header('Content-type: application/json; charset=utf-8');
791 } else if (!CLI_SCRIPT) {
792 @header('Content-type: text/html; charset=utf-8');
795 // Initialise some variables that are supposed to be set in config.php only.
796 if (!isset($CFG->filelifetime)) {
797 $CFG->filelifetime = 60*60*6;
800 // Late profiling, only happening if early one wasn't started
801 if (!empty($CFG->profilingenabled)) {
802 require_once($CFG->libdir . '/xhprof/xhprof_moodle.php');
803 profiling_start();
806 // Hack to get around max_input_vars restrictions,
807 // we need to do this after session init to have some basic DDoS protection.
808 workaround_max_input_vars();
810 // Process theme change in the URL.
811 if (!empty($CFG->allowthemechangeonurl) and !empty($_GET['theme'])) {
812 // we have to use _GET directly because we do not want this to interfere with _POST
813 $urlthemename = optional_param('theme', '', PARAM_PLUGIN);
814 try {
815 $themeconfig = theme_config::load($urlthemename);
816 // Makes sure the theme can be loaded without errors.
817 if ($themeconfig->name === $urlthemename) {
818 $SESSION->theme = $urlthemename;
819 } else {
820 unset($SESSION->theme);
822 unset($themeconfig);
823 unset($urlthemename);
824 } catch (Exception $e) {
825 debugging('Failed to set the theme from the URL.', DEBUG_DEVELOPER, $e->getTrace());
828 unset($urlthemename);
830 // Ensure a valid theme is set.
831 if (!isset($CFG->theme)) {
832 $CFG->theme = 'clean';
835 // Set language/locale of printed times. If user has chosen a language that
836 // that is different from the site language, then use the locale specified
837 // in the language file. Otherwise, if the admin hasn't specified a locale
838 // then use the one from the default language. Otherwise (and this is the
839 // majority of cases), use the stored locale specified by admin.
840 // note: do not accept lang parameter from POST
841 if (isset($_GET['lang']) and ($lang = optional_param('lang', '', PARAM_SAFEDIR))) {
842 if (get_string_manager()->translation_exists($lang, false)) {
843 $SESSION->lang = $lang;
846 unset($lang);
848 // PARAM_SAFEDIR used instead of PARAM_LANG because using PARAM_LANG results
849 // in an empty string being returned when a non-existant language is specified,
850 // which would make it necessary to log out to undo the forcelang setting.
851 // With PARAM_SAFEDIR, it's possible to specify ?forcelang=none to drop the forcelang effect.
852 if ($forcelang = optional_param('forcelang', '', PARAM_SAFEDIR)) {
853 if (isloggedin()
854 && get_string_manager()->translation_exists($forcelang, false)
855 && has_capability('moodle/site:forcelanguage', context_system::instance())) {
856 $SESSION->forcelang = $forcelang;
857 } else if (isset($SESSION->forcelang)) {
858 unset($SESSION->forcelang);
861 unset($forcelang);
863 setup_lang_from_browser();
865 if (empty($CFG->lang)) {
866 if (empty($SESSION->lang)) {
867 $CFG->lang = 'en';
868 } else {
869 $CFG->lang = $SESSION->lang;
873 // Set the default site locale, a lot of the stuff may depend on this
874 // it is definitely too late to call this first in require_login()!
875 moodle_setlocale();
877 // Create the $PAGE global - this marks the PAGE and OUTPUT fully initialised, this MUST be done at the end of setup!
878 if (!empty($CFG->moodlepageclass)) {
879 if (!empty($CFG->moodlepageclassfile)) {
880 require_once($CFG->moodlepageclassfile);
882 $classname = $CFG->moodlepageclass;
883 } else {
884 $classname = 'moodle_page';
886 $PAGE = new $classname();
887 unset($classname);
890 if (!empty($CFG->debugvalidators) and !empty($CFG->guestloginbutton)) {
891 if ($CFG->theme == 'standard') { // Temporary measure to help with XHTML validation
892 if (isset($_SERVER['HTTP_USER_AGENT']) and empty($USER->id)) { // Allow W3CValidator in as user called w3cvalidator (or guest)
893 if ((strpos($_SERVER['HTTP_USER_AGENT'], 'W3C_Validator') !== false) or
894 (strpos($_SERVER['HTTP_USER_AGENT'], 'Cynthia') !== false )) {
895 if ($user = get_complete_user_data("username", "w3cvalidator")) {
896 $user->ignoresesskey = true;
897 } else {
898 $user = guest_user();
900 \core\session\manager::set_user($user);
906 // Apache log integration. In apache conf file one can use ${MOODULEUSER}n in
907 // LogFormat to get the current logged in username in moodle.
908 if ($USER && function_exists('apache_note')
909 && !empty($CFG->apacheloguser) && isset($USER->username)) {
910 $apachelog_userid = $USER->id;
911 $apachelog_username = clean_filename($USER->username);
912 $apachelog_name = '';
913 if (isset($USER->firstname)) {
914 // We can assume both will be set
915 // - even if to empty.
916 $apachelog_name = clean_filename($USER->firstname . " " .
917 $USER->lastname);
919 if (\core\session\manager::is_loggedinas()) {
920 $realuser = \core\session\manager::get_realuser();
921 $apachelog_username = clean_filename($realuser->username." as ".$apachelog_username);
922 $apachelog_name = clean_filename($realuser->firstname." ".$realuser->lastname ." as ".$apachelog_name);
923 $apachelog_userid = clean_filename($realuser->id." as ".$apachelog_userid);
925 switch ($CFG->apacheloguser) {
926 case 3:
927 $logname = $apachelog_username;
928 break;
929 case 2:
930 $logname = $apachelog_name;
931 break;
932 case 1:
933 default:
934 $logname = $apachelog_userid;
935 break;
937 apache_note('MOODLEUSER', $logname);
940 // Use a custom script replacement if one exists
941 if (!empty($CFG->customscripts)) {
942 if (($customscript = custom_script_path()) !== false) {
943 require ($customscript);
947 if (PHPUNIT_TEST) {
948 // no ip blocking, these are CLI only
949 } else if (CLI_SCRIPT and !defined('WEB_CRON_EMULATED_CLI')) {
950 // no ip blocking
951 } else if (!empty($CFG->allowbeforeblock)) { // allowed list processed before blocked list?
952 // in this case, ip in allowed list will be performed first
953 // for example, client IP is 192.168.1.1
954 // 192.168 subnet is an entry in allowed list
955 // 192.168.1.1 is banned in blocked list
956 // This ip will be banned finally
957 if (!empty($CFG->allowedip)) {
958 if (!remoteip_in_list($CFG->allowedip)) {
959 die(get_string('ipblocked', 'admin'));
962 // need further check, client ip may a part of
963 // allowed subnet, but a IP address are listed
964 // in blocked list.
965 if (!empty($CFG->blockedip)) {
966 if (remoteip_in_list($CFG->blockedip)) {
967 die(get_string('ipblocked', 'admin'));
971 } else {
972 // in this case, IPs in blocked list will be performed first
973 // for example, client IP is 192.168.1.1
974 // 192.168 subnet is an entry in blocked list
975 // 192.168.1.1 is allowed in allowed list
976 // This ip will be allowed finally
977 if (!empty($CFG->blockedip)) {
978 if (remoteip_in_list($CFG->blockedip)) {
979 // if the allowed ip list is not empty
980 // IPs are not included in the allowed list will be
981 // blocked too
982 if (!empty($CFG->allowedip)) {
983 if (!remoteip_in_list($CFG->allowedip)) {
984 die(get_string('ipblocked', 'admin'));
986 } else {
987 die(get_string('ipblocked', 'admin'));
991 // if blocked list is null
992 // allowed list should be tested
993 if(!empty($CFG->allowedip)) {
994 if (!remoteip_in_list($CFG->allowedip)) {
995 die(get_string('ipblocked', 'admin'));
1001 // // try to detect IE6 and prevent gzip because it is extremely buggy browser
1002 if (!empty($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6') !== false) {
1003 ini_set('zlib.output_compression', 'Off');
1004 if (function_exists('apache_setenv')) {
1005 apache_setenv('no-gzip', 1);
1009 // Switch to CLI maintenance mode if required, we need to do it here after all the settings are initialised.
1010 if (isset($CFG->maintenance_later) and $CFG->maintenance_later <= time()) {
1011 if (!file_exists("$CFG->dataroot/climaintenance.html")) {
1012 require_once("$CFG->libdir/adminlib.php");
1013 enable_cli_maintenance_mode();
1015 unset_config('maintenance_later');
1016 if (AJAX_SCRIPT) {
1017 die;
1018 } else if (!CLI_SCRIPT) {
1019 redirect(new moodle_url('/'));
1023 // note: we can not block non utf-8 installations here, because empty mysql database
1024 // might be converted to utf-8 in admin/index.php during installation
1028 // this is a funny trick to make Eclipse believe that $OUTPUT and other globals
1029 // contains an instance of core_renderer, etc. which in turn fixes autocompletion ;-)
1030 if (false) {
1031 $DB = new moodle_database();
1032 $OUTPUT = new core_renderer(null, null);
1033 $PAGE = new moodle_page();