NoLocalSettings.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * Display an error page when there is no LocalSettings.php file.
  4. *
  5. * This program 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 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program 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 along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. * http://www.gnu.org/copyleft/gpl.html
  19. *
  20. * @file
  21. */
  22. # T32219 : can not use pathinfo() on URLs since slashes do not match
  23. $matches = [];
  24. $path = '/';
  25. foreach ( array_filter( explode( '/', $_SERVER['PHP_SELF'] ) ) as $part ) {
  26. if ( !preg_match( '/\.(php)$/', $part, $matches ) ) {
  27. $path .= "$part/";
  28. } else {
  29. break;
  30. }
  31. }
  32. # Check to see if the installer is running
  33. if ( !function_exists( 'session_name' ) ) {
  34. $installerStarted = false;
  35. } else {
  36. if ( !wfIniGetBool( 'session.auto_start' ) ) {
  37. session_name( 'mw_installer_session' );
  38. }
  39. $oldReporting = error_reporting( E_ALL & ~E_NOTICE );
  40. $success = session_start();
  41. error_reporting( $oldReporting );
  42. $installerStarted = ( $success && isset( $_SESSION['installData'] ) );
  43. }
  44. $templateParser = new TemplateParser();
  45. # Render error page if no LocalSettings file can be found
  46. try {
  47. global $wgVersion;
  48. echo $templateParser->processTemplate(
  49. 'NoLocalSettings',
  50. [
  51. 'wgVersion' => ( $wgVersion ?? 'VERSION' ),
  52. 'path' => $path,
  53. 'localSettingsExists' => file_exists( MW_CONFIG_FILE ),
  54. 'installerStarted' => $installerStarted
  55. ]
  56. );
  57. } catch ( Exception $e ) {
  58. echo 'Error: ' . htmlspecialchars( $e->getMessage() );
  59. }