Advertisement
Hectorss1

wp-load.php

Oct 31st, 2019
97,712
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. <?php
  2. /**
  3. * Bootstrap file for setting the ABSPATH constant
  4. * and loading the wp-config.php file. The wp-config.php
  5. * file will then load the wp-settings.php file, which
  6. * will then set up the WordPress environment.
  7. *
  8. * If the wp-config.php file is not found then an error
  9. * will be displayed asking the visitor to set up the
  10. * wp-config.php file.
  11. *
  12. * Will also search for wp-config.php in WordPress' parent
  13. * directory to allow the WordPress directory to remain
  14. * untouched.
  15. *
  16. * @package WordPress
  17. */
  18. /** Define ABSPATH as this file's directory */
  19. if ( ! defined( 'ABSPATH' ) ) {
  20. define( 'ABSPATH', dirname( __FILE__ ) . '/' );
  21. }
  22. error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
  23. /*
  24. * If wp-config.php exists in the WordPress root, or if it exists in the root and wp-settings.php
  25. * doesn't, load wp-config.php. The secondary check for wp-settings.php has the added benefit
  26. * of avoiding cases where the current directory is a nested installation, e.g. / is WordPress(a)
  27. * and /blog/ is WordPress(b).
  28. *
  29. * If neither set of conditions is true, initiate loading the setup process.
  30. */
  31. if ( file_exists( ABSPATH . 'wp-config.php' ) ) {
  32. /** The config file resides in ABSPATH */
  33. require_once( ABSPATH . 'wp-config.php' );
  34. } elseif ( @file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! @file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) {
  35. /** The config file resides one level above ABSPATH but is not part of another installation */
  36. require_once( dirname( ABSPATH ) . '/wp-config.php' );
  37. } else {
  38. // A config file doesn't exist
  39. define( 'WPINC', 'wp-includes' );
  40. require_once( ABSPATH . WPINC . '/load.php' );
  41. // Standardize $_SERVER variables across setups.
  42. wp_fix_server_vars();
  43. require_once( ABSPATH . WPINC . '/functions.php' );
  44. $path = wp_guess_url() . '/wp-admin/setup-config.php';
  45. /*
  46. * We're going to redirect to setup-config.php. While this shouldn't result
  47. * in an infinite loop, that's a silly thing to assume, don't you think? If
  48. * we're traveling in circles, our last-ditch effort is "Need more help?"
  49. */
  50. if ( false === strpos( $_SERVER['REQUEST_URI'], 'setup-config' ) ) {
  51. header( 'Location: ' . $path );
  52. exit;
  53. }
  54. define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
  55. require_once( ABSPATH . WPINC . '/version.php' );
  56. wp_check_php_mysql_versions();
  57. wp_load_translations_early();
  58. // Die with an error message
  59. $die = sprintf(
  60. /* translators: %s: wp-config.php */
  61. __( "There doesn't seem to be a %s file. I need this before we can get started." ),
  62. '<code>wp-config.php</code>'
  63. ) . '</p>';
  64. $die .= '<p>' . sprintf(
  65. /* translators: %s: Documentation URL. */
  66. __( "Need more help? <a href='%s'>We got it</a>." ),
  67. __( 'https://wordpress.org/support/article/editing-wp-config-php/' )
  68. ) . '</p>';
  69. $die .= '<p>' . sprintf(
  70. /* translators: %s: wp-config.php */
  71. __( "You can create a %s file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." ),
  72. '<code>wp-config.php</code>'
  73. ) . '</p>';
  74. $die .= '<p><a href="' . $path . '" class="button button-large">' . __( 'Create a Configuration File' ) . '</a>';
  75. wp_die( $die, __( 'WordPress &rsaquo; Error' ) );
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement