2010-01-06 08:50:12 +01:00
|
|
|
<?php
|
2010-01-08 22:25:01 +01:00
|
|
|
/**
|
2010-03-17 05:39:50 +01:00
|
|
|
* Used to set up and fix common variables and include
|
2010-01-28 17:09:52 +01:00
|
|
|
* the Multisite procedural and class library.
|
2010-01-08 22:25:01 +01:00
|
|
|
*
|
2010-01-28 17:09:52 +01:00
|
|
|
* Allows for some configuration in wp-config.php (see ms-default-constants.php)
|
2010-01-08 22:25:01 +01:00
|
|
|
*
|
2010-01-28 17:09:52 +01:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Multisite
|
2010-04-04 15:29:35 +02:00
|
|
|
* @since 3.0.0
|
2010-01-08 22:25:01 +01:00
|
|
|
*/
|
|
|
|
|
2016-04-17 07:12:26 +02:00
|
|
|
/**
|
|
|
|
* Objects representing the current network and current site.
|
|
|
|
*
|
|
|
|
* These may be populated through a custom `sunrise.php`. If not, then this
|
|
|
|
* file will attempt to populate them based on the current request.
|
|
|
|
*
|
|
|
|
* @global WP_Network $current_site The current network.
|
|
|
|
* @global object $current_blog The current site.
|
2017-10-16 19:06:48 +02:00
|
|
|
* @global string $domain Deprecated. The domain of the site found on load.
|
|
|
|
* Use `get_site()->domain` instead.
|
|
|
|
* @global string $path Deprecated. The path of the site found on load.
|
|
|
|
* Use `get_site()->path` instead.
|
|
|
|
* @global int $site_id Deprecated. The ID of the network found on load.
|
|
|
|
* Use `get_current_network_id()` instead.
|
|
|
|
* @global bool $public Deprecated. Whether the site found on load is public.
|
|
|
|
* Use `get_site()->public` instead.
|
|
|
|
*
|
2016-04-17 07:12:26 +02:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-10-16 19:06:48 +02:00
|
|
|
global $current_site, $current_blog, $domain, $path, $site_id, $public;
|
2016-04-17 07:12:26 +02:00
|
|
|
|
2016-08-31 18:31:29 +02:00
|
|
|
/** WP_Network class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/class-wp-network.php';
|
2016-08-31 18:31:29 +02:00
|
|
|
|
|
|
|
/** WP_Site class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/class-wp-site.php';
|
2016-08-31 18:31:29 +02:00
|
|
|
|
2015-09-14 01:31:26 +02:00
|
|
|
/** Multisite loader */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/ms-load.php';
|
2015-09-14 01:31:26 +02:00
|
|
|
|
|
|
|
/** Default Multisite constants */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/ms-default-constants.php';
|
2014-07-01 01:50:15 +02:00
|
|
|
|
2014-06-30 00:51:16 +02:00
|
|
|
if ( defined( 'SUNRISE' ) ) {
|
2020-02-06 07:33:11 +01:00
|
|
|
include_once WP_CONTENT_DIR . '/sunrise.php';
|
2014-06-30 00:51:16 +02:00
|
|
|
}
|
2010-01-08 22:25:01 +01:00
|
|
|
|
2010-05-04 22:48:28 +02:00
|
|
|
/** Check for and define SUBDOMAIN_INSTALL and the deprecated VHOST constant. */
|
|
|
|
ms_subdomain_constants();
|
|
|
|
|
2016-05-20 22:57:28 +02:00
|
|
|
// This block will process a request if the current network or current site objects
|
|
|
|
// have not been populated in the global scope through something like `sunrise.php`.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! isset( $current_site ) || ! isset( $current_blog ) ) {
|
2010-02-26 01:05:11 +01:00
|
|
|
|
2014-03-02 23:25:14 +01:00
|
|
|
$domain = strtolower( stripslashes( $_SERVER['HTTP_HOST'] ) );
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( ':80' === substr( $domain, -3 ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$domain = substr( $domain, 0, -3 );
|
2014-03-02 23:25:14 +01:00
|
|
|
$_SERVER['HTTP_HOST'] = substr( $_SERVER['HTTP_HOST'], 0, -3 );
|
2020-05-16 20:42:12 +02:00
|
|
|
} elseif ( ':443' === substr( $domain, -4 ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$domain = substr( $domain, 0, -4 );
|
2014-03-02 23:25:14 +01:00
|
|
|
$_SERVER['HTTP_HOST'] = substr( $_SERVER['HTTP_HOST'], 0, -4 );
|
|
|
|
}
|
|
|
|
|
2014-05-06 07:24:14 +02:00
|
|
|
$path = stripslashes( $_SERVER['REQUEST_URI'] );
|
2014-03-02 23:25:14 +01:00
|
|
|
if ( is_admin() ) {
|
|
|
|
$path = preg_replace( '#(.*)/wp-admin/.*#', '$1/', $path );
|
|
|
|
}
|
|
|
|
list( $path ) = explode( '?', $path );
|
|
|
|
|
2016-05-20 22:57:28 +02:00
|
|
|
$bootstrap_result = ms_load_current_site_and_network( $domain, $path, is_subdomain_install() );
|
2015-09-10 07:06:24 +02:00
|
|
|
|
2016-05-20 22:57:28 +02:00
|
|
|
if ( true === $bootstrap_result ) {
|
|
|
|
// `$current_blog` and `$current_site are now populated.
|
|
|
|
} elseif ( false === $bootstrap_result ) {
|
2015-09-10 05:53:24 +02:00
|
|
|
ms_not_installed( $domain, $path );
|
2016-05-20 22:57:28 +02:00
|
|
|
} else {
|
|
|
|
header( 'Location: ' . $bootstrap_result );
|
2014-03-24 01:14:15 +01:00
|
|
|
exit;
|
|
|
|
}
|
2016-05-20 22:57:28 +02:00
|
|
|
unset( $bootstrap_result );
|
2010-01-06 08:50:12 +01:00
|
|
|
|
2010-02-26 01:05:11 +01:00
|
|
|
$blog_id = $current_blog->blog_id;
|
|
|
|
$public = $current_blog->public;
|
2010-01-06 08:50:12 +01:00
|
|
|
|
2014-03-02 23:25:14 +01:00
|
|
|
if ( empty( $current_blog->site_id ) ) {
|
|
|
|
// This dates to [MU134] and shouldn't be relevant anymore,
|
|
|
|
// but it could be possible for arguments passed to insert_blog() etc.
|
2010-02-26 01:05:11 +01:00
|
|
|
$current_blog->site_id = 1;
|
|
|
|
}
|
2014-03-02 23:25:14 +01:00
|
|
|
|
|
|
|
$site_id = $current_blog->site_id;
|
|
|
|
wp_load_core_site_options( $site_id );
|
2010-01-06 08:50:12 +01:00
|
|
|
}
|
2014-03-02 23:25:14 +01:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
$wpdb->set_prefix( $table_prefix, false ); // $table_prefix can be set in sunrise.php.
|
2010-02-24 22:07:23 +01:00
|
|
|
$wpdb->set_blog_id( $current_blog->blog_id, $current_blog->site_id );
|
2017-12-01 00:11:00 +01:00
|
|
|
$table_prefix = $wpdb->get_blog_prefix();
|
2012-08-09 18:28:15 +02:00
|
|
|
$_wp_switched_stack = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
$switched = false;
|
2010-01-06 08:50:12 +01:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Need to init cache again after blog_id is set.
|
2010-01-28 18:28:44 +01:00
|
|
|
wp_start_object_cache();
|
2010-01-06 08:50:12 +01:00
|
|
|
|
2015-09-14 01:31:26 +02:00
|
|
|
if ( ! $current_site instanceof WP_Network ) {
|
|
|
|
$current_site = new WP_Network( $current_site );
|
|
|
|
}
|
|
|
|
|
2016-01-25 22:51:26 +01:00
|
|
|
if ( ! $current_blog instanceof WP_Site ) {
|
|
|
|
$current_blog = new WP_Site( $current_blog );
|
|
|
|
}
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Define upload directory constants.
|
2010-02-20 15:07:23 +01:00
|
|
|
ms_upload_constants();
|
2016-06-29 21:00:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fires after the current site and network have been detected and loaded
|
|
|
|
* in multisite's bootstrap.
|
|
|
|
*
|
|
|
|
* @since 4.6.0
|
|
|
|
*/
|
|
|
|
do_action( 'ms_loaded' );
|