index.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * This is the main web entry point for MediaWiki.
  4. *
  5. * If you are reading this in your web browser, your server is probably
  6. * not configured correctly to run PHP applications!
  7. *
  8. * See the README, INSTALL, and UPGRADE files for basic setup instructions
  9. * and pointers to the online documentation.
  10. *
  11. * https://www.mediawiki.org/
  12. *
  13. * ----------
  14. *
  15. * This program is free software; you can redistribute it and/or modify
  16. * it under the terms of the GNU General Public License as published by
  17. * the Free Software Foundation; either version 2 of the License, or
  18. * (at your option) any later version.
  19. *
  20. * This program is distributed in the hope that it will be useful,
  21. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. * GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License along
  26. * with this program; if not, write to the Free Software Foundation, Inc.,
  27. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  28. * http://www.gnu.org/copyleft/gpl.html
  29. *
  30. * @file
  31. */
  32. # Bail on old versions of PHP. Pretty much every other file in the codebase
  33. # has structures (try/catch, foo()->bar(), etc etc) which throw parse errors in
  34. # PHP 4. Setup.php and ObjectCache.php have structures invalid in PHP 5.0 and
  35. # 5.1, respectively.
  36. if ( !function_exists( 'version_compare' ) || version_compare( phpversion(), '5.3.2' ) < 0 ) {
  37. // We need to use dirname( __FILE__ ) here cause __DIR__ is PHP5.3+
  38. require dirname( __FILE__ ) . '/includes/PHPVersionError.php';
  39. wfPHPVersionError( 'index.php' );
  40. }
  41. require __DIR__ . '/includes/WebStart.php';
  42. $mediaWiki = new MediaWiki();
  43. $mediaWiki->run();