Ticket #22639: 22639.3.diff
File 22639.3.diff, 3.6 KB (added by , 11 years ago) |
---|
-
wp-admin/network.php
316 316 $wp_siteurl_subdir = trailingslashit( '/' . preg_replace( '#^' . preg_quote( $base, '#' ) . '#', '', $wp_dir_from_root ) ); 317 317 $rewrite_base = ! empty( $wp_siteurl_subdir ) ? ltrim( trailingslashit( $wp_siteurl_subdir ), '/' ) : ''; 318 318 319 $home_path = get_home_path(); 320 321 $location_of_wp_config = ABSPATH; 322 if ( ! file_exists( ABSPATH . 'wp-config.php' ) && file_exists( dirname( ABSPATH ) . '/wp-config.php' ) ) 323 $location_of_wp_config = trailingslashit( dirname( ABSPATH ) ); 324 319 325 // Wildcard DNS message. 320 326 if ( is_wp_error( $errors ) ) 321 327 echo '<div class="error">' . $errors->get_error_message() . '</div>'; … … 349 355 <h3><?php esc_html_e( 'Enabling the Network' ); ?></h3> 350 356 <p><?php _e( 'Complete the following steps to enable the features for creating a network of sites.' ); ?></p> 351 357 <div class="updated inline"><p><?php 352 if ( file_exists( ABSPATH. '.htaccess' ) )358 if ( file_exists( $home_path . '.htaccess' ) ) 353 359 printf( __( '<strong>Caution:</strong> We recommend you back up your existing <code>wp-config.php</code> and <code>%s</code> files.' ), '.htaccess' ); 354 elseif ( file_exists( ABSPATH. 'web.config' ) )360 elseif ( file_exists( $home_path . 'web.config' ) ) 355 361 printf( __( '<strong>Caution:</strong> We recommend you back up your existing <code>wp-config.php</code> and <code>%s</code> files.' ), 'web.config' ); 356 362 else 357 363 _e( '<strong>Caution:</strong> We recommend you back up your existing <code>wp-config.php</code> file.' ); … … 360 366 } 361 367 ?> 362 368 <ol> 363 <li><p><?php printf( __( 'Add the following to your <code>wp-config.php</code> file in <code>%s</code> <strong>above</strong> the line reading <code>/* That’s all, stop editing! Happy blogging. */</code>:' ), ABSPATH); ?></p>369 <li><p><?php printf( __( 'Add the following to your <code>wp-config.php</code> file in <code>%s</code> <strong>above</strong> the line reading <code>/* That’s all, stop editing! Happy blogging. */</code>:' ), $location_of_wp_config ); ?></p> 364 370 <textarea class="code" readonly="readonly" cols="100" rows="6"> 365 371 define('MULTISITE', true); 366 372 define('SUBDOMAIN_INSTALL', <?php echo $subdomain_install ? 'true' : 'false'; ?>); … … 454 460 EOF; 455 461 456 462 ?> 457 <li><p><?php printf( __( 'Add the following to your <code>web.config</code> file in <code>%s</code>, replacing other WordPress rules:' ), trailingslashit( str_replace( trailingslashit( $wp_siteurl_subdir ), '', ABSPATH ) )); ?></p>463 <li><p><?php printf( __( 'Add the following to your <code>web.config</code> file in <code>%s</code>, replacing other WordPress rules:' ), $home_path ); ?></p> 458 464 <?php 459 465 if ( ! $subdomain_install && WP_CONTENT_DIR != ABSPATH . 'wp-content' ) 460 466 echo '<p><strong>' . __('Warning:') . ' ' . __( 'Subdirectory networks may not be fully compatible with custom wp-content directories.' ) . '</strong></p>'; … … 488 494 EOF; 489 495 490 496 ?> 491 <li><p><?php printf( __( 'Add the following to your <code>.htaccess</code> file in <code>%s</code>, replacing other WordPress rules:' ), ABSPATH); ?></p>497 <li><p><?php printf( __( 'Add the following to your <code>.htaccess</code> file in <code>%s</code>, replacing other WordPress rules:' ), $home_path ); ?></p> 492 498 <?php 493 499 if ( ! $subdomain_install && WP_CONTENT_DIR != ABSPATH . 'wp-content' ) 494 500 echo '<p><strong>' . __('Warning:') . ' ' . __( 'Subdirectory networks may not be fully compatible with custom wp-content directories.' ) . '</strong></p>';