2010-01-31 12:55:39 +01:00
< ? php
/**
2010-03-03 08:43:32 +01:00
* Network installation administration panel .
2010-01-31 12:55:39 +01:00
*
* A multi - step process allowing the user to enable a network of WordPress sites .
*
* @ since 3.0 . 0
*
* @ package WordPress
* @ subpackage Administration
*/
2010-05-29 22:35:19 +02:00
define ( 'WP_NETWORK_ADMIN_PAGE' , true );
2010-01-31 12:55:39 +01:00
/** WordPress Administration Bootstrap */
require_once ( './admin.php' );
if ( ! is_super_admin () )
2010-03-03 08:43:32 +01:00
wp_die ( __ ( 'You do not have sufficient permissions to manage options for this site.' ) );
2010-03-12 00:53:03 +01:00
if ( is_multisite () && ! defined ( 'MULTISITE' ) )
2010-04-11 12:41:54 +02:00
wp_die ( __ ( 'The Network creation panel is not for WordPress MU networks.' ) );
2010-03-12 00:53:03 +01:00
2010-02-23 20:58:53 +01:00
// We need to create references to ms global tables to enable Network.
foreach ( $wpdb -> tables ( 'ms_global' ) as $table => $prefixed_table )
$wpdb -> $table = $prefixed_table ;
2010-03-10 09:46:05 +01:00
/**
2010-03-11 23:33:52 +01:00
* Check for an existing network .
2010-03-10 09:46:05 +01:00
*
* @ since 3.0 . 0
2010-03-11 23:33:52 +01:00
* @ return Whether a network exists .
2010-03-10 09:46:05 +01:00
*/
function network_domain_check () {
global $wpdb ;
if ( $wpdb -> get_var ( " SHOW TABLES LIKE ' $wpdb->site ' " ) )
return $wpdb -> get_var ( " SELECT domain FROM $wpdb->site ORDER BY id ASC LIMIT 1 " );
return false ;
}
2010-04-02 04:04:25 +02:00
/**
* Allow subdomain install
*
* @ since 3.0 . 0
2010-05-04 22:48:28 +02:00
* @ return bool Whether subdomain install is allowed
2010-04-02 04:04:25 +02:00
*/
function allow_subdomain_install () {
2010-05-28 18:40:55 +02:00
$domain = preg_replace ( '|https?://([^/]+)|' , '$1' , get_option ( 'siteurl' ) );
2010-05-03 21:23:37 +02:00
if ( false !== strpos ( $domain , '/' ) || 'localhost' == $domain || preg_match ( '|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+|' , $domain ) )
2010-04-02 04:04:25 +02:00
return false ;
return true ;
}
2010-05-08 17:25:33 +02:00
/**
2010-05-25 17:16:31 +02:00
* Allow subdirectory install
2010-05-08 17:25:33 +02:00
*
* @ since 3.0 . 0
2010-05-25 17:16:31 +02:00
* @ return bool Whether subdirectory install is allowed
2010-05-08 17:25:33 +02:00
*/
2010-05-25 17:16:31 +02:00
function allow_subdirectory_install () {
2010-05-08 17:25:33 +02:00
global $wpdb ;
2010-05-25 17:16:31 +02:00
if ( apply_filters ( 'allow_subdirectory_install' , false ) )
2010-05-08 17:25:33 +02:00
return true ;
2010-06-11 18:38:11 +02:00
if ( defined ( 'ALLOW_SUBDIRECTORY_INSTALL' ) && ALLOW_SUBDIRECTORY_INSTALL )
return true ;
2010-05-08 17:25:33 +02:00
$post = $wpdb -> get_row ( " SELECT ID FROM $wpdb->posts WHERE post_date < DATE_SUB(NOW(), INTERVAL 1 MONTH) AND post_status = 'publish' " );
if ( empty ( $post ) )
return true ;
return false ;
}
2010-03-10 09:46:05 +01:00
/**
* Get base domain of network .
*
* @ since 3.0 . 0
2010-03-11 23:33:52 +01:00
* @ return string Base domain .
2010-03-10 09:46:05 +01:00
*/
function get_clean_basedomain () {
2010-03-11 23:33:52 +01:00
if ( $existing_domain = network_domain_check () )
2010-03-10 09:46:05 +01:00
return $existing_domain ;
$domain = preg_replace ( '|https?://|' , '' , get_option ( 'siteurl' ) );
2010-03-11 23:33:52 +01:00
if ( $slash = strpos ( $domain , '/' ) )
$domain = substr ( $domain , 0 , $slash );
2010-03-10 09:46:05 +01:00
return $domain ;
}
2010-03-09 20:10:07 +01:00
if ( ! network_domain_check () && ( ! defined ( 'WP_ALLOW_MULTISITE' ) || ! WP_ALLOW_MULTISITE ) )
wp_die ( __ ( 'You must define the <code>WP_ALLOW_MULTISITE</code> constant as true in your wp-config.php file to allow creation of a Network.' ) );
2010-03-03 08:43:32 +01:00
$title = __ ( 'Create a Network of WordPress Sites' );
2010-01-31 12:55:39 +01:00
$parent_file = 'tools.php' ;
2010-06-02 22:04:07 +02:00
add_contextual_help ( $current_screen ,
2010-06-03 15:37:51 +02:00
'<p>' . __ ( 'This screen allows you to configure a network as having subdomains (<code>site1.example.com</code>) or subdirectories (<code>example.com/site1</code>). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.' ) . '</p>' .
2010-05-27 23:20:23 +02:00
'<p>' . __ ( 'Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your install. Fill out the network details, and click install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).' ) . '</p>' .
'<p>' . __ ( 'The next screen for Network will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.' ) . '</p>' .
2010-06-03 15:37:51 +02:00
'<p>' . __ ( 'Add a <code>blogs.dir</code> directory under <code>/wp-content</code> and add the designated lines of code to wp-config.php (just before <code>/*...stop editing...*/</code>) and <code>.htaccess</code> (replacing the existing WordPress rules).' ) . '</p>' .
2010-05-27 23:20:23 +02:00
'<p>' . __ ( 'Refreshing your browser will take you to a screen with an archive of those added lines of code. A set of six links under Super Admin will appear at the top of the main left navigation menu. The multisite network is now enabled.' ) . '</p>' .
'<p>' . __ ( 'The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed soon in a future version.' ) . '</p>' .
'<p><strong>' . __ ( 'For more information:' ) . '</strong></p>' .
2010-06-03 23:00:39 +02:00
'<p>' . __ ( '<a href="http://codex.wordpress.org/Create_A_Network" target="_blank">General Network Creation Documentation</a>' ) . '</p>' .
'<p>' . __ ( '<a href="http://codex.wordpress.org/Tools_Network_SubPanel" target="_blank">Tools > Network Documentation</a>' ) . '</p>' .
'<p>' . __ ( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
2010-05-27 23:20:23 +02:00
);
2010-01-31 12:55:39 +01:00
include ( './admin-header.php' );
?>
< div class = " wrap " >
< ? php screen_icon (); ?>
< h2 >< ? php echo esc_html ( $title ); ?> </h2>
< ? php
/**
2010-03-03 08:43:32 +01:00
* Prints step 1 for Network installation process .
2010-01-31 12:55:39 +01:00
*
2010-03-03 08:43:32 +01:00
* @ todo Realistically , step 1 should be a welcome screen explaining what a Network is and such . Navigating to Tools > Network
2010-03-11 04:15:09 +01:00
* should not be a sudden " Welcome to a new install process! Fill this out and click here. " See also contextual help todo .
2010-01-31 12:55:39 +01:00
*
* @ since 3.0 . 0
*/
2010-03-11 02:51:24 +01:00
function network_step1 ( $errors = false ) {
2010-05-28 04:52:40 +02:00
global $is_apache ;
2010-01-31 12:55:39 +01:00
2010-04-02 05:24:18 +02:00
if ( get_option ( 'siteurl' ) != get_option ( 'home' ) ) {
2010-05-15 08:49:16 +02:00
echo '<div class="error"><p><strong>' . __ ( 'Error:' ) . '</strong> ' . sprintf ( __ ( 'Your <strong>WordPress address</strong> must match your <strong>Site address</strong> before creating a Network. See <a href="%s">General Settings</a>.' ), esc_url ( admin_url ( 'options-general.php' ) ) ) . '</p></div>' ;
2010-05-14 14:34:48 +02:00
echo '</div>' ;
2010-04-02 05:24:18 +02:00
include ( './admin-footer.php' );
die ();
}
2010-10-30 00:44:05 +02:00
if ( defined ( 'DO_NOT_UPGRADE_GLOBAL_TABLES' ) ) {
echo '<div class="error"><p><strong>' . __ ( 'Error:' ) . '</strong> ' . __ ( 'The constant DO_NOT_UPGRADE_GLOBAL_TABLES cannot be defined when creating a network.' ) . '</p></div>' ;
echo '</div>' ;
include ( './admin-footer.php' );
die ();
}
2010-03-03 08:43:32 +01:00
$active_plugins = get_option ( 'active_plugins' );
if ( ! empty ( $active_plugins ) ) {
2010-05-29 14:12:48 +02:00
echo '<div class="updated"><p><strong>' . __ ( 'Warning:' ) . '</strong> ' . sprintf ( __ ( 'Please <a href="%s">deactivate your plugins</a> before enabling the Network feature.' ), admin_url ( 'plugins.php?plugin_status=active' ) ) . '</p></div><p>' . __ ( 'Once the network is created, you may reactivate your plugins.' ) . '</p>' ;
2010-05-14 14:34:48 +02:00
echo '</div>' ;
2010-03-03 08:43:32 +01:00
include ( './admin-footer.php' );
die ();
}
2010-01-31 12:55:39 +01:00
2010-03-03 08:43:32 +01:00
$hostname = get_clean_basedomain ();
2010-03-09 23:01:49 +01:00
$has_ports = strstr ( $hostname , ':' );
2010-05-03 21:23:37 +02:00
if ( ( false !== $has_ports && ! in_array ( $has_ports , array ( ':80' , ':443' ) ) ) ) {
2010-05-15 08:49:16 +02:00
echo '<div class="error"><p><strong>' . __ ( 'Error:' ) . '</strong> ' . __ ( 'You cannot install a network of sites with your server address.' ) . '</p></div>' ;
2010-05-08 17:25:33 +02:00
echo '<p>' . sprintf ( __ ( 'You cannot use port numbers such as <code>%s</code>.' ), $has_ports ) . '</p>' ;
2010-05-03 20:16:22 +02:00
echo '<a href="' . esc_url ( admin_url () ) . '">' . __ ( 'Return to Dashboard' ) . '</a>' ;
2010-05-14 14:34:48 +02:00
echo '</div>' ;
2010-03-03 08:43:32 +01:00
include ( './admin-footer.php' );
die ();
2010-01-31 12:55:39 +01:00
}
2010-05-15 08:49:16 +02:00
echo '<form method="post" action="">' ;
2010-03-11 02:51:24 +01:00
wp_nonce_field ( 'install-network-1' );
$error_codes = array ();
if ( is_wp_error ( $errors ) ) {
echo '<div class="error"><p><strong>' . __ ( 'ERROR: The network could not be created.' ) . '</strong></p>' ;
foreach ( $errors -> get_error_messages () as $error )
echo " <p> $error </p> " ;
echo '</div>' ;
$error_codes = $errors -> get_error_codes ();
}
2010-05-24 00:19:09 +02:00
if ( WP_CONTENT_DIR != ABSPATH . 'wp-content' )
echo '<div class="error"><p><strong>' . __ ( 'Warning!' ) . '</strong> ' . __ ( 'Networks may not be fully compatible with custom wp-content directories.' ) . '</p></div>' ;
2010-03-11 02:51:24 +01:00
$site_name = ( ! empty ( $_POST [ 'sitename' ] ) && ! in_array ( 'empty_sitename' , $error_codes ) ) ? $_POST [ 'sitename' ] : sprintf ( _x ( '%s Sites' , 'Default network name' ), get_option ( 'blogname' ) );
$admin_email = ( ! empty ( $_POST [ 'email' ] ) && ! in_array ( 'invalid_email' , $error_codes ) ) ? $_POST [ 'email' ] : get_option ( 'admin_email' );
2010-01-31 12:55:39 +01:00
?>
2010-03-03 08:43:32 +01:00
< p >< ? php _e ( 'Welcome to the Network installation process!' ); ?> </p>
2010-04-11 12:41:54 +02:00
< p >< ? php _e ( 'Fill in the information below and you’ll be on your way to creating a network of WordPress sites. We will create configuration files in the next step.' ); ?> </p>
2010-01-31 12:55:39 +01:00
< ? php
2010-03-20 23:44:07 +01:00
if ( isset ( $_POST [ 'subdomain_install' ] ) ) {
2010-03-11 02:51:24 +01:00
$subdomain_install = ( bool ) $_POST [ 'subdomain_install' ];
} elseif ( apache_mod_loaded ( 'mod_rewrite' ) ) { // assume nothing
$subdomain_install = true ;
2010-05-25 17:16:31 +02:00
} elseif ( ! allow_subdirectory_install () ) {
2010-05-08 17:25:33 +02:00
$subdomain_install = true ;
2010-01-31 12:55:39 +01:00
} else {
2010-03-11 02:51:24 +01:00
$subdomain_install = false ;
2010-05-28 04:58:21 +02:00
if ( $got_mod_rewrite = got_mod_rewrite () ) // dangerous assumptions
2010-04-11 12:41:54 +02:00
echo '<div class="updated inline"><p><strong>' . __ ( 'Note:' ) . '</strong> ' . __ ( 'Please make sure the Apache <code>mod_rewrite</code> module is installed as it will be used at the end of this installation.' ) . '</p>' ;
2010-05-28 04:52:40 +02:00
elseif ( $is_apache )
2010-03-20 23:44:07 +01:00
echo '<div class="error inline"><p><strong>' . __ ( 'Warning!' ) . '</strong> ' . __ ( 'It looks like the Apache <code>mod_rewrite</code> module is not installed.' ) . '</p>' ;
2010-05-28 04:58:21 +02:00
if ( $got_mod_rewrite || $is_apache ) // Protect against mod_rewrite mimicry (but ! Apache)
2010-05-28 04:52:40 +02:00
echo '<p>' . __ ( 'If <code>mod_rewrite</code> is disabled, ask your administrator to enable that module, or look at the <a href="http://httpd.apache.org/docs/mod/mod_rewrite.html">Apache documentation</a> or <a href="http://www.google.com/search?q=apache+mod_rewrite">elsewhere</a> for help setting it up.' ) . '</p></div>' ;
2010-01-31 12:55:39 +01:00
}
2010-05-25 17:16:31 +02:00
if ( allow_subdomain_install () && allow_subdirectory_install () ) : ?>
2010-03-03 08:43:32 +01:00
< h3 >< ? php esc_html_e ( 'Addresses of Sites in your Network' ); ?> </h3>
< p >< ? php _e ( 'Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories. <strong>You cannot change this later.</strong>' ); ?> </p>
2010-04-11 12:41:54 +02:00
< p >< ? php _e ( 'You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.' ); ?> </p>
2010-03-20 23:44:07 +01:00
< ? php // @todo: Link to an MS readme? ?>
2010-03-03 08:43:32 +01:00
< table class = " form-table " >
< tr >
2010-05-18 06:41:08 +02:00
< th >< label >< input type = 'radio' name = 'subdomain_install' value = '1' < ? php checked ( $subdomain_install ); ?> /> <?php _e( 'Sub-domains' ); ?></label></th>
2010-03-25 03:49:23 +01:00
< td >< ? php printf ( _x ( 'like <code>site1.%1$s</code> and <code>site2.%1$s</code>' , 'subdomain examples' ), $hostname ); ?> </td>
2010-03-03 08:43:32 +01:00
</ tr >
< tr >
2010-05-18 06:41:08 +02:00
< th >< label >< input type = 'radio' name = 'subdomain_install' value = '0' < ? php checked ( ! $subdomain_install ); ?> /> <?php _e( 'Sub-directories' ); ?></label></th>
2010-03-25 03:49:23 +01:00
< td >< ? php printf ( _x ( 'like <code>%1$s/site1</code> and <code>%1$s/site2</code>' , 'subdirectory examples' ), $hostname ); ?> </td>
2010-03-03 08:43:32 +01:00
</ tr >
</ table >
2010-01-31 12:55:39 +01:00
2010-03-09 19:58:05 +01:00
< ? php
endif ;
2010-03-09 07:14:42 +01:00
2010-03-11 02:51:24 +01:00
$is_www = ( 0 === strpos ( $hostname , 'www.' ) );
2010-03-03 08:43:32 +01:00
if ( $is_www ) :
?>
< h3 >< ? php esc_html_e ( 'Server Address' ); ?> </h3>
2010-04-11 12:41:54 +02:00
< p >< ? php printf ( __ ( 'We recommend you change your siteurl to <code>%1$s</code> before enabling the network feature. It will still be possible to visit your site using the <code>www</code> prefix with an address like <code>%2$s</code> but any links will not have the <code>www</code> prefix.' ), substr ( $hostname , 4 ), $hostname ); ?> </h3>
2010-01-31 12:55:39 +01:00
< table class = " form-table " >
< tr >
< th scope = 'row' >< ? php esc_html_e ( 'Server Address' ); ?> </th>
< td >
2010-04-11 12:41:54 +02:00
< ? php printf ( __ ( 'The internet address of your network will be <code>%s</code>.' ), $hostname ); ?>
2010-01-31 12:55:39 +01:00
</ td >
</ tr >
</ table >
2010-03-03 08:43:32 +01:00
< ? php endif ; ?>
2010-01-31 12:55:39 +01:00
2010-03-03 08:43:32 +01:00
< h3 >< ? php esc_html_e ( 'Network Details' ); ?> </h3>
2010-01-31 12:55:39 +01:00
< table class = " form-table " >
2010-03-09 07:14:42 +01:00
< ? php if ( 'localhost' == $hostname ) : ?>
< tr >
< th scope = " row " >< ? php esc_html_e ( 'Sub-directory Install' ); ?> </th>
2010-05-25 17:16:31 +02:00
< td >< ? php
_e ( 'Because you are using <code>localhost</code>, the sites in your WordPress network must use sub-directories. Consider using <code>localhost.localdomain</code> if you wish to use sub-domains.' );
// Uh oh:
if ( ! allow_subdirectory_install () )
echo ' <strong>' . __ ( 'Warning!' ) . ' ' . __ ( 'The main site in a sub-directory install will need to use a modified permalink structure, potentially breaking existing links.' ) . '</strong>' ;
?> </td>
2010-03-09 07:14:42 +01:00
</ tr >
2010-04-02 04:04:25 +02:00
< ? php elseif ( ! allow_subdomain_install () ) : ?>
< tr >
< th scope = " row " >< ? php esc_html_e ( 'Sub-directory Install' ); ?> </th>
2010-05-25 17:16:31 +02:00
< td >< ? php
_e ( 'Because your install is in a directory, the sites in your WordPress network must use sub-directories.' );
// Uh oh:
if ( ! allow_subdirectory_install () )
2010-05-26 04:42:15 +02:00
echo ' <strong>' . __ ( 'Warning!' ) . ' ' . __ ( 'The main site in a sub-directory install will need to use a modified permalink structure, potentially breaking existing links.' ) . '</strong>' ;
2010-05-25 17:16:31 +02:00
?> </td>
2010-04-02 04:04:25 +02:00
</ tr >
2010-05-25 17:16:31 +02:00
< ? php elseif ( ! allow_subdirectory_install () ) : ?>
2010-05-08 17:43:00 +02:00
< tr >
< th scope = " row " >< ? php esc_html_e ( 'Sub-domain Install' ); ?> </th>
2010-05-25 17:16:31 +02:00
< td >< ? php _e ( 'Because your install is not new, the sites in your WordPress network must use sub-domains.' );
echo ' <strong>' . __ ( 'The main site in a sub-directory install will need to use a modified permalink structure, potentially breaking existing links.' ) . '</strong>' ;
?> </td>
2010-05-08 17:43:00 +02:00
</ tr >
2010-03-09 07:14:42 +01:00
< ? php endif ; ?>
2010-03-03 08:43:32 +01:00
< ? php if ( ! $is_www ) : ?>
2010-01-31 12:55:39 +01:00
< tr >
2010-03-03 08:43:32 +01:00
< th scope = 'row' >< ? php esc_html_e ( 'Server Address' ); ?> </th>
< td >
2010-04-11 12:41:54 +02:00
< ? php printf ( __ ( 'The internet address of your network will be <code>%s</code>.' ), $hostname ); ?>
2010-03-03 08:43:32 +01:00
</ td >
</ tr >
< ? php endif ; ?>
< tr >
< th scope = 'row' >< ? php esc_html_e ( 'Network Title' ); ?> </th>
2010-01-31 12:55:39 +01:00
< td >
2010-03-11 02:51:24 +01:00
< input name = 'sitename' type = 'text' size = '45' value = '<?php echo esc_attr( $site_name ); ?>' />
2010-03-03 08:43:32 +01:00
< br />< ? php _e ( 'What would you like to call your network?' ); ?>
2010-01-31 12:55:39 +01:00
</ td >
</ tr >
< tr >
2010-03-03 08:43:32 +01:00
< th scope = 'row' >< ? php esc_html_e ( 'Admin E-mail Address' ); ?> </th>
2010-01-31 12:55:39 +01:00
< td >
2010-03-11 02:51:24 +01:00
< input name = 'email' type = 'text' size = '45' value = '<?php echo esc_attr( $admin_email ); ?>' />
2010-01-31 12:55:39 +01:00
< br />< ? php _e ( 'Your email address.' ); ?>
</ td >
</ tr >
</ table >
2010-10-28 23:56:43 +02:00
< ? php submit_button ( __ ( 'Install' ), 'primary' , 'submit' ); ?>
2010-05-15 08:49:16 +02:00
</ form >
2010-10-28 23:56:43 +02:00
< ? php
2010-02-07 03:13:20 +01:00
}
/**
2010-03-03 08:43:32 +01:00
* Prints step 2 for Network installation process .
2010-02-07 03:13:20 +01:00
*
* @ since 3.0 . 0
*/
2010-03-11 02:51:24 +01:00
function network_step2 ( $errors = false ) {
2010-03-03 08:43:32 +01:00
global $base , $wpdb ;
2010-03-10 09:34:42 +01:00
$hostname = get_clean_basedomain ();
2010-03-11 02:51:24 +01:00
// Wildcard DNS message.
if ( is_wp_error ( $errors ) )
echo '<div class="error">' . $errors -> get_error_message () . '</div>' ;
2010-03-10 09:17:07 +01:00
if ( $_POST ) {
2010-05-25 17:16:31 +02:00
$subdomain_install = allow_subdomain_install () ? ( allow_subdirectory_install () ? ! empty ( $_POST [ 'subdomain_install' ] ) : true ) : false ;
2010-03-10 09:17:07 +01:00
} else {
if ( is_multisite () ) {
2010-05-04 22:48:28 +02:00
$subdomain_install = is_subdomain_install ();
2010-03-10 09:17:07 +01:00
?>
2010-03-09 23:42:36 +01:00
< div class = " updated " >< p >< strong >< ? php _e ( 'Notice: The Network feature is already enabled.' ); ?> </strong> <?php _e( 'The original configuration steps are shown here for reference.' ); ?></p></div>
2010-03-10 09:17:07 +01:00
< ? php } else {
2010-05-04 22:48:28 +02:00
$subdomain_install = ( bool ) $wpdb -> get_var ( " SELECT meta_value FROM $wpdb->sitemeta WHERE site_id = 1 AND meta_key = 'subdomain_install' " );
2010-03-10 09:17:07 +01:00
?>
2010-03-09 19:58:05 +01:00
< div class = " error " >< p >< strong >< ? php _e ( 'Warning:' ); ?> </strong> <?php _e( 'An existing WordPress network was detected.' ); ?></p></div>
< p >< ? php _e ( 'Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.' ); ?> </p>
2010-03-10 09:34:42 +01:00
< ? php
}
}
if ( $_POST || ! is_multisite () ) {
?>
2010-03-03 08:43:32 +01:00
< h3 >< ? php esc_html_e ( 'Enabling the Network' ); ?> </h3>
2010-03-06 21:01:32 +01:00
< p >< ? php _e ( 'Complete the following steps to enable the features for creating a network of sites.' ); ?> </p>
2010-05-28 04:41:01 +02:00
< div class = " updated inline " >< p >< ? php
if ( iis7_supports_permalinks () )
_e ( '<strong>Caution:</strong> We recommend you back up your existing <code>wp-config.php</code> file.' );
else
_e ( '<strong>Caution:</strong> We recommend you back up your existing <code>wp-config.php</code> and <code>.htaccess</code> files.' );
?> </p></div>
2010-03-09 23:42:36 +01:00
< ? php
2010-03-10 09:17:07 +01:00
}
2010-03-09 23:42:36 +01:00
?>
2010-01-31 12:55:39 +01:00
< ol >
2010-05-24 00:19:09 +02:00
< li >< p >< ? php
2010-09-14 18:53:28 +02:00
printf ( __ ( 'Create a <code>blogs.dir</code> directory at <code>%s/blogs.dir</code>. This directory is used to store uploaded media for your additional sites and must be writeable by the web server.' ), WP_CONTENT_DIR );
2010-05-24 00:19:09 +02:00
if ( WP_CONTENT_DIR != ABSPATH . 'wp-content' )
echo ' <strong>' . __ ( 'Warning:' ) . ' ' . __ ( 'Networks may not be fully compatible with custom wp-content directories.' ) . '</strong' ;
?> </p></li>
2010-04-05 01:49:11 +02:00
< 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>
2010-03-06 21:01:32 +01:00
< textarea class = " code " readonly = " readonly " cols = " 100 " rows = " 7 " >
define ( 'MULTISITE' , true );
2010-05-04 22:48:28 +02:00
define ( 'SUBDOMAIN_INSTALL' , < ? php echo $subdomain_install ? 'true' : 'false' ; ?> );
2010-03-06 21:01:32 +01:00
$base = '<?php echo $base; ?>' ;
2010-03-10 09:34:42 +01:00
define ( 'DOMAIN_CURRENT_SITE' , '<?php echo $hostname; ?>' );
2010-03-06 21:01:32 +01:00
define ( 'PATH_CURRENT_SITE' , '<?php echo $base; ?>' );
define ( 'SITE_ID_CURRENT_SITE' , 1 );
2010-03-06 22:01:58 +01:00
define ( 'BLOG_ID_CURRENT_SITE' , 1 ); </ textarea >
< ? php
$keys_salts = array ( 'AUTH_KEY' => '' , 'SECURE_AUTH_KEY' => '' , 'LOGGED_IN_KEY' => '' , 'NONCE_KEY' => '' , 'AUTH_SALT' => '' , 'SECURE_AUTH_SALT' => '' , 'LOGGED_IN_SALT' => '' , 'NONCE_SALT' => '' );
foreach ( $keys_salts as $c => $v ) {
if ( defined ( $c ) )
unset ( $keys_salts [ $c ] );
}
if ( ! empty ( $keys_salts ) ) {
$from_api = wp_remote_get ( 'https://api.wordpress.org/secret-key/1.1/salt/' );
if ( is_wp_error ( $from_api ) ) {
foreach ( $keys_salts as $c => $v ) {
$keys_salts [ $c ] = wp_generate_password ( 64 , true , true );
}
} else {
$from_api = explode ( " \n " , wp_remote_retrieve_body ( $from_api ) );
foreach ( $keys_salts as $c => $v ) {
$keys_salts [ $c ] = substr ( array_shift ( $from_api ), 28 , 64 );
}
}
$num_keys_salts = count ( $keys_salts );
?>
< p >< ? php
echo _n ( 'This unique authentication key is also missing from your <code>wp-config.php</code> file.' , 'These unique authentication keys are also missing from your <code>wp-config.php</code> file.' , $num_keys_salts ); ?> <?php _e( 'To make your installation more secure, you should also add:' ) ?></p>
< textarea class = " code " readonly = " readonly " cols = " 100 " rows = " <?php echo $num_keys_salts ; ?> " >< ? php
foreach ( $keys_salts as $c => $v ) {
2010-10-26 05:36:23 +02:00
echo " \n define( ' $c ', ' " . wp_htmledit_pre ( $v ) . " ' ); " ;
2010-03-06 22:01:58 +01:00
}
?> </textarea>
2010-03-17 17:27:25 +01:00
< ? php
2010-03-06 22:01:58 +01:00
}
?>
</ li >
2010-01-31 12:55:39 +01:00
< ? php
2010-05-28 04:41:01 +02:00
if ( iis7_supports_permalinks () ) :
2010-05-28 04:12:57 +02:00
if ( $subdomain_install ) {
2010-05-26 04:42:15 +02:00
$web_config_file =
2010-05-25 07:12:47 +02:00
' < ? xml version = " 1.0 " encoding = " UTF-8 " ?>
< configuration >
< system . webServer >
< rewrite >
< rules >
< rule name = " WordPress Rule 1 " stopProcessing = " true " >
< match url = " ^index \ .php $ " ignoreCase = " false " />
< action type = " None " />
</ rule >
< rule name = " WordPress Rule 2 " stopProcessing = " true " >
< match url = " ^files/(.+) " ignoreCase = " false " />
< action type = " Rewrite " url = " wp-includes/ms-files.php?file= { R:1} " appendQueryString = " false " />
</ rule >
< rule name = " WordPress Rule 3 " stopProcessing = " true " >
< match url = " ^ " ignoreCase = " false " />
< conditions logicalGrouping = " MatchAny " >
< add input = " { REQUEST_FILENAME} " matchType = " IsFile " ignoreCase = " false " />
< add input = " { REQUEST_FILENAME} " matchType = " IsDirectory " ignoreCase = " false " />
</ conditions >
< action type = " None " />
</ rule >
< rule name = " WordPress Rule 4 " stopProcessing = " true " >
< match url = " . " ignoreCase = " false " />
< action type = " Rewrite " url = " index.php " />
</ rule >
</ rules >
</ rewrite >
</ system . webServer >
</ configuration > ' ;
} else {
2010-05-26 04:42:15 +02:00
$web_config_file =
2010-05-25 07:12:47 +02:00
' < ? xml version = " 1.0 " encoding = " UTF-8 " ?>
< configuration >
< system . webServer >
< rewrite >
< rules >
< rule name = " WordPress Rule 1 " stopProcessing = " true " >
< match url = " ^index \ .php $ " ignoreCase = " false " />
< action type = " None " />
</ rule >
< rule name = " WordPress Rule 2 " stopProcessing = " true " >
< match url = " ^([_0-9a-zA-Z-]+/)?files/(.+) " ignoreCase = " false " />
< action type = " Rewrite " url = " wp-includes/ms-files.php?file= { R:2} " appendQueryString = " false " />
</ rule >
< rule name = " WordPress Rule 3 " stopProcessing = " true " >
< match url = " ^([_0-9a-zA-Z-]+/)?wp-admin $ " ignoreCase = " false " />
< action type = " Redirect " url = " { R:1}wp-admin/ " redirectType = " Permanent " />
</ rule >
< rule name = " WordPress Rule 4 " stopProcessing = " true " >
< match url = " ^ " ignoreCase = " false " />
< conditions logicalGrouping = " MatchAny " >
< add input = " { REQUEST_FILENAME} " matchType = " IsFile " ignoreCase = " false " />
< add input = " { REQUEST_FILENAME} " matchType = " IsDirectory " ignoreCase = " false " />
</ conditions >
< action type = " None " />
</ rule >
< rule name = " WordPress Rule 5 " stopProcessing = " true " >
2010-10-24 23:09:33 +02:00
< match url = " ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) " ignoreCase = " false " />
2010-05-25 07:12:47 +02:00
< action type = " Rewrite " url = " { R:2} " />
</ rule >
< rule name = " WordPress Rule 6 " stopProcessing = " true " >
< match url = " ^([_0-9a-zA-Z-]+/)?(.* \ .php) $ " ignoreCase = " false " />
< action type = " Rewrite " url = " { R:2} " />
</ rule >
< rule name = " WordPress Rule 7 " stopProcessing = " true " >
< match url = " . " ignoreCase = " false " />
< action type = " Rewrite " url = " index.php " />
</ rule >
</ rules >
</ rewrite >
</ system . webServer >
</ configuration > ' ;
}
?>
< li >< p >< ? php printf ( __ ( 'Add the following to your <code>web.config</code> file in <code>%s</code>, replacing other WordPress rules:' ), ABSPATH ); ?> </p>
< textarea class = " code " readonly = " readonly " cols = " 100 " rows = " 20 " >
< ? php echo wp_htmledit_pre ( $web_config_file ); ?>
</ textarea ></ li >
</ ol >
2010-05-28 04:41:01 +02:00
< ? php else : // end iis7_supports_permalinks(). construct an htaccess file instead:
2010-05-25 07:12:47 +02:00
$htaccess_file = ' RewriteEngine On
2010-05-26 01:55:32 +02:00
RewriteBase ' . $base . '
RewriteRule ^ index\ . php $ - [ L ]
# uploaded files
RewriteRule ^ ' . ( $subdomain_install ? ' ' : ' ([ _0 - 9 a - zA - Z - ] +/ ) ? ' ) . ' files / ( .+ ) wp - includes / ms - files . php ? file = $ ' . ( $subdomain_install ? 1 : 2 ) . ' [ L ] ' . " \n " ;
2010-05-26 04:42:15 +02:00
2010-05-25 07:12:47 +02:00
if ( ! $subdomain_install )
$htaccess_file .= " \n # add a trailing slash to /wp-admin \n " . 'RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]' . " \n " ;
2010-05-26 04:42:15 +02:00
2010-05-25 07:12:47 +02:00
$htaccess_file .= " \n " . ' RewriteCond % { REQUEST_FILENAME } - f [ OR ]
2010-05-26 01:55:32 +02:00
RewriteCond % { REQUEST_FILENAME } - d
RewriteRule ^ - [ L ] ' ;
2010-05-26 04:42:15 +02:00
2010-05-25 07:12:47 +02:00
// @todo custom content dir.
if ( ! $subdomain_install )
2010-10-24 23:09:33 +02:00
$htaccess_file .= " \n RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $ 1 [L] \n RewriteRule ^[_0-9a-zA-Z-]+/(.* \ .php) $ $ 1 [L] " ;
2010-05-26 04:42:15 +02:00
2010-05-25 07:12:47 +02:00
$htaccess_file .= " \n RewriteRule . index.php [L] " ;
2010-05-26 04:42:15 +02:00
2010-05-25 07:12:47 +02:00
?>
< li >< p >< ? php printf ( __ ( 'Add the following to your <code>.htaccess</code> file in <code>%s</code>, replacing other WordPress rules:' ), ABSPATH ); ?> </p>
2010-05-31 17:27:31 +02:00
< textarea class = " code " readonly = " readonly " cols = " 100 " rows = " <?php echo $subdomain_install ? 11 : 16; ?> " >
< ? php echo wp_htmledit_pre ( $htaccess_file ); ?> </textarea></li>
2010-03-03 08:43:32 +01:00
</ ol >
2010-05-28 04:41:01 +02:00
< ? php endif ; // end IIS/Apache code branches.
2010-05-25 07:12:47 +02:00
if ( ! is_multisite () ) { ?>
2010-05-08 17:25:33 +02:00
< p >< ? php printf ( __ ( 'Once you complete these steps, your network is enabled and configured. You will have to log in again.' ) ); ?> <a href="<?php echo esc_url( site_url( 'wp-login.php' ) ); ?>"><?php _e( 'Log In' ); ?></a></p>
2010-03-03 08:43:32 +01:00
< ? php
2010-03-09 23:42:36 +01:00
}
2010-01-31 12:55:39 +01:00
}
2010-03-10 09:17:07 +01:00
$base = trailingslashit ( stripslashes ( dirname ( dirname ( $_SERVER [ 'SCRIPT_NAME' ] ) ) ) );
2010-03-09 19:58:05 +01:00
if ( $_POST ) {
check_admin_referer ( 'install-network-1' );
2010-01-31 12:55:39 +01:00
2010-03-09 19:58:05 +01:00
require_once ( ABSPATH . 'wp-admin/includes/upgrade.php' );
// create network tables
install_network ();
$hostname = get_clean_basedomain ();
2010-04-02 04:04:25 +02:00
$subdomain_install = ! allow_subdomain_install () ? false : ( bool ) $_POST [ 'subdomain_install' ];
2010-03-11 02:51:24 +01:00
if ( ! network_domain_check () ) {
2010-05-24 21:18:30 +02:00
$result = populate_network ( 1 , get_clean_basedomain (), sanitize_email ( $_POST [ 'email' ] ), stripslashes ( $_POST [ 'sitename' ] ), $base , $subdomain_install );
2010-03-11 02:51:24 +01:00
if ( is_wp_error ( $result ) ) {
if ( 1 == count ( $result -> get_error_codes () ) && 'no_wildcard_dns' == $result -> get_error_code () )
network_step2 ( $result );
else
network_step1 ( $result );
} else {
network_step2 ();
}
} else {
network_step2 ();
}
2010-03-09 23:42:36 +01:00
} elseif ( is_multisite () || network_domain_check () ) {
2010-03-09 19:58:05 +01:00
network_step2 ();
} else {
network_step1 ();
2010-01-31 12:55:39 +01:00
}
?>
</ div >
< ? php include ( './admin-footer.php' ); ?>