Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
/lib/ -> setup.php (source)

Differences Between: [Versions 310 and 311] [Versions 311 and 400] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403] [Versions 39 and 311]

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