diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php index 70cb14ea93..481fd94982 100644 --- a/wp-admin/includes/network.php +++ b/wp-admin/includes/network.php @@ -378,12 +378,13 @@ function network_step1( $errors = false ) { * * @since 3.0.0 * - * @global wpdb $wpdb WordPress database abstraction object. + * @global wpdb $wpdb WordPress database abstraction object. + * @global bool $is_nginx Whether the server software is Nginx or something else. * * @param WP_Error $errors */ function network_step2( $errors = false ) { - global $wpdb; + global $wpdb, $is_nginx; $hostname = get_clean_basedomain(); $slashed_home = trailingslashit( get_option( 'home' ) ); @@ -616,7 +617,17 @@ define('BLOG_ID_CURRENT_SITE', 1);
'; + printf( + /* translators: %s: Documentation URL. */ + __( 'It seems your network is running with Nginx web server. Learn more about further configuration.' ), + __( 'https://wordpress.org/support/article/nginx/' ) + ); + echo '
'; + + else : // End $is_nginx. Construct an .htaccess file instead: $ms_files_rewriting = ''; if ( is_multisite() && get_site_option( 'ms_files_rewriting' ) ) { @@ -658,7 +669,7 @@ EOF; diff --git a/wp-includes/version.php b/wp-includes/version.php index e26ed83219..0dfec852e3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47631'; +$wp_version = '5.5-alpha-47632'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.