IP : 3.145.33.123Hostname : server86.web-hosting.comKernel : Linux server86.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
servlmvm/
./
puppiesoftexas.com/
wp-includes/
ms-settings.php/
/
<?php /** * Used to set up and fix common variables and include * the Multisite procedural and class library. * * Allows for some configuration in wp-config.php (see ms-default-constants.php) * * @package WordPress * @subpackage Multisite * @since 3.0.0 */
/** * 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. * @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. * * @since 3.0.0 */ global $current_site, $current_blog, $domain, $path, $site_id, $public;
/** WP_Network class */ require_once ABSPATH . WPINC . '/class-wp-network.php';
/** WP_Site class */ require_once ABSPATH . WPINC . '/class-wp-site.php';
/** Check for and define SUBDOMAIN_INSTALL and the deprecated VHOST constant. */ ms_subdomain_constants();
// 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`. if ( ! isset( $current_site ) || ! isset( $current_blog ) ) {
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. $current_blog->site_id = 1; }