<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[13571] trunk/wp-admin: First pass on network.php improvements.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13571">13571</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-03-03 07:43:32 +0000 (Wed, 03 Mar 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>First pass on network.php improvements. see <a href="http://trac.wordpress.org/ticket/12094">#12094</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminadminfooterphp">trunk/wp-admin/admin-footer.php</a></li>
<li><a href="#trunkwpadmincommentphp">trunk/wp-admin/comment.php</a></li>
<li><a href="#trunkwpadminnetworkphp">trunk/wp-admin/network.php</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesnetworkphp">trunk/wp-admin/includes/network.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminadminfooterphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/admin-footer.php (13570 => 13571)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/admin-footer.php        2010-03-03 07:34:20 UTC (rev 13570)
+++ trunk/wp-admin/admin-footer.php        2010-03-03 07:43:32 UTC (rev 13571)
</span><span class="lines">@@ -29,7 +29,7 @@
</span><span class="cx"> &lt;?php
</span><span class="cx"> do_action('admin_footer', '');
</span><span class="cx"> do_action('admin_print_footer_scripts');
</span><del>-do_action(&quot;admin_footer-$hook_suffix&quot;);
</del><ins>+do_action(&quot;admin_footer-&quot; . $GLOBALS['hook_suffix']);
</ins><span class="cx"> 
</span><span class="cx"> // get_site_option() won't exist when auto upgrading from &lt;= 2.7
</span><span class="cx"> if ( function_exists('get_site_option') ) {
</span></span></pre></div>
<a id="trunkwpadmincommentphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/comment.php (13570 => 13571)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/comment.php        2010-03-03 07:34:20 UTC (rev 13570)
+++ trunk/wp-admin/comment.php        2010-03-03 07:43:32 UTC (rev 13571)
</span><span class="lines">@@ -35,7 +35,6 @@
</span><span class="cx">  * @param string $msg Error Message. Assumed to contain HTML and be sanitized.
</span><span class="cx">  */
</span><span class="cx"> function comment_footer_die( $msg ) {
</span><del>-        global $hook_suffix;
</del><span class="cx">         echo &quot;&lt;div class='wrap'&gt;&lt;p&gt;$msg&lt;/p&gt;&lt;/div&gt;&quot;;
</span><span class="cx">         include('admin-footer.php');
</span><span class="cx">         die;
</span></span></pre></div>
<a id="trunkwpadminincludesnetworkphp"></a>
<div class="addfile"><h4>Added: trunk/wp-admin/includes/network.php (0 => 13571)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/network.php                                (rev 0)
+++ trunk/wp-admin/includes/network.php        2010-03-03 07:43:32 UTC (rev 13571)
</span><span class="lines">@@ -0,0 +1,78 @@
</span><ins>+&lt;?php
+/**
+ * Network installation functions.
+ *
+ * @since 3.0.0
+ *
+ * @package WordPress
+ * @subpackage Multisite
+ */
+
+/**
+ * Gets base domain of network.
+ *
+ * @since 3.0.0
+ */
+function get_clean_basedomain() {
+        global $wpdb;
+
+        $existing_domain = network_domain_check();
+        if ( $existing_domain )
+                return $existing_domain;
+
+        $domain = preg_replace( '|https?://|', '', get_option( 'siteurl' ) );
+        if ( strpos( $domain, '/' ) )
+                $domain = substr( $domain, 0, strpos( $domain, '/' ) );
+        return $domain;
+}
+
+/**
+ * Checks for existing network data/tables.
+ *
+ * @since 3.0.0
+ */
+function network_domain_check() {
+        global $wpdb;
+
+        if ( $wpdb-&gt;get_var( &quot;SHOW TABLES LIKE '$wpdb-&gt;site'&quot; ) )
+                return $wpdb-&gt;get_var( &quot;SELECT domain FROM $wpdb-&gt;site ORDER BY id ASC LIMIT 1&quot; );
+
+        return false;
+}
+
+/**
+ * Prints summary of server statistics in preparation for setting up a network.
+ *
+ * @since 3.0.0
+ */
+function filestats( $err ) {
+?&gt;
+        &lt;h2&gt;&lt;?php esc_html_e( 'Server Summary' ); ?&gt;&lt;/h2&gt;
+        &lt;p&gt;&lt;?php _e( 'If you post a message to the WordPress support forum at &lt;a target=&quot;_blank&quot; href=&quot;http://wordpress.org/support/&quot;&gt;http://wordpress.org/support/&lt;/a&gt; then copy and paste the following information into your message:' ); ?&gt;&lt;/p&gt;
+        &lt;blockquote style=&quot;background: #eee; border: 1px solid #333; padding: 5px;&quot;&gt;
+        &lt;br /&gt;&lt;strong&gt;&lt;?php printf( __( 'ERROR: %s' ), $err ); ?&gt;&lt;/strong&gt;&lt;br /&gt;
+&lt;?php
+        clearstatcache();
+        $files = array( 'htaccess.dist', '.htaccess' );
+
+        $indent = '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;';
+        foreach ( (array) $files as $val ) {
+                $stats = @stat( $val );
+                if ( $stats ) {
+?&gt;
+                        &lt;h2&gt;&lt;?php echo esc_html( $val ); ?&gt;&lt;/h2&gt;
+                        &lt;?php echo $indent . sprintf( __( 'uid/gid: %1$s/%2$s' ), $stats['uid'], $stats['gid'] ); ?&gt;&lt;br /&gt;
+                        &lt;?php echo $indent . sprintf( __( 'size: %s' ), $stats['size'] ); ?&gt;&lt;br/&gt;
+                        &lt;?php echo $indent . sprintf( __( 'perms: %s' ), substr( sprintf( '%o', fileperms( $val ) ), -4 ) ); ?&gt;&lt;br/&gt;
+                        &lt;?php echo $indent . sprintf( __( 'readable: %s' ), is_readable( $val ) ? __( 'yes' ) : __( 'no' ) ); ?&gt;&lt;br/&gt;
+                        &lt;?php echo $indent . sprintf( __( 'writeable: %s' ), is_writeable( $val ) ? __( 'yes' ) : __( 'no' ) ); ?&gt;&lt;br/&gt;
+&lt;?php
+                } elseif ( ! file_exists( $val ) ) {
+?&gt;
+                        &lt;h2&gt;&lt;?php echo esc_html( $val ); ?&gt;&lt;/h2&gt;
+                        &lt;?php echo $indent . sprintf( __( 'FILE NOT FOUND: %s' ), $val ); ?&gt;&lt;br/&gt;
+&lt;?php
+                }
+        }
+        echo &quot;&lt;/blockquote&gt;&quot;;
+}
</ins></span></pre></div>
<a id="trunkwpadminnetworkphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/network.php (13570 => 13571)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/network.php        2010-03-03 07:34:20 UTC (rev 13570)
+++ trunk/wp-admin/network.php        2010-03-03 07:43:32 UTC (rev 13571)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> &lt;?php
</span><span class="cx"> /**
</span><del>- * Network settings administration panel.
</del><ins>+ * Network installation administration panel.
</ins><span class="cx">  *
</span><span class="cx">  * A multi-step process allowing the user to enable a network of WordPress sites.
</span><span class="cx">  *
</span><span class="lines">@@ -14,13 +14,18 @@
</span><span class="cx"> require_once( './admin.php' );
</span><span class="cx"> 
</span><span class="cx"> if ( ! is_super_admin() )
</span><del>-        wp_die( __( 'You do not have sufficient permissions to manage options for this blog.' ) );
</del><ins>+        wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
</ins><span class="cx"> 
</span><ins>+if ( is_multisite() )
+        wp_die( __( 'The Network feature is already enabled.' ) );
+
+include( ABSPATH . 'wp-admin/includes/network.php' );
+
</ins><span class="cx"> // We need to create references to ms global tables to enable Network.
</span><span class="cx"> foreach ( $wpdb-&gt;tables( 'ms_global' ) as $table =&gt; $prefixed_table )
</span><span class="cx">         $wpdb-&gt;$table = $prefixed_table;
</span><span class="cx"> 
</span><del>-$title = __( 'Network Settings' );
</del><ins>+$title = __( 'Create a Network of WordPress Sites' );
</ins><span class="cx"> $parent_file = 'tools.php';
</span><span class="cx"> 
</span><span class="cx"> add_contextual_help( $current_screen, __( '&lt;a href=&quot;http://codex.wordpress.org/Settings_Network_SubPanel&quot; target=&quot;_blank&quot;&gt;Network Settings&lt;/a&gt;') );
</span><span class="lines">@@ -36,251 +41,142 @@
</span><span class="cx"> &lt;form method=&quot;post&quot; action=&quot;network.php&quot;&gt;
</span><span class="cx"> &lt;?php
</span><span class="cx"> /**
</span><del>- * Prints summary of server statistics in preparation for setting up a network.
</del><ins>+ * Prints step 1 for Network installation process.
</ins><span class="cx">  *
</span><ins>+ * @todo Realistically, step 1 should be a welcome screen explaining what a Network is and such. Navigating to Tools &gt; Network
+ *         should not be a sudden &quot;Welcome to a new install process! Fill this out and click here.&quot;
+ *
</ins><span class="cx">  * @since 3.0.0
</span><span class="cx">  */
</span><del>-function filestats( $err ) {
-?&gt;
-        &lt;h2&gt;&lt;?php esc_html_e( 'Server Summary' ); ?&gt;&lt;/h2&gt;
-        &lt;p&gt;&lt;?php _e( 'If you post a message to the WordPress support forum at &lt;a target=&quot;_blank&quot; href=&quot;http://wordpress.org/support/&quot;&gt;http://wordpress.org/support/&lt;/a&gt; then copy and paste the following information into your message:' ); ?&gt;&lt;/p&gt;
-        &lt;blockquote style=&quot;background: #eee; border: 1px solid #333; padding: 5px;&quot;&gt;
-        &lt;br /&gt;&lt;strong&gt;&lt;?php printf( __( 'ERROR: %s' ), $err ); ?&gt;&lt;/strong&gt;&lt;br /&gt;
-&lt;?php
-        clearstatcache();
-        $files = array( 'htaccess.dist', '.htaccess' );
</del><ins>+function ms_network_step1() {
</ins><span class="cx"> 
</span><del>-        $indent = '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;';
-        foreach ( (array) $files as $val ) {
-                $stats = @stat( $val );
-                if ( $stats ) {
-?&gt;
-                        &lt;h2&gt;&lt;?php echo esc_html( $val ); ?&gt;&lt;/h2&gt;
-                        &lt;?php echo $indent . sprintf( __( 'uid/gid: %1$s/%2$s' ), $stats['uid'], $stats['gid'] ); ?&gt;&lt;br /&gt;
-                        &lt;?php echo $indent . sprintf( __( 'size: %s' ), $stats['size'] ); ?&gt;&lt;br/&gt;
-                        &lt;?php echo $indent . sprintf( __( 'perms: %s' ), substr( sprintf( '%o', fileperms( $val ) ), -4 ) ); ?&gt;&lt;br/&gt;
-                        &lt;?php echo $indent . sprintf( __( 'readable: %s' ), is_readable( $val ) ? __( 'yes' ) : __( 'no' ) ); ?&gt;&lt;br/&gt;
-                        &lt;?php echo $indent . sprintf( __( 'writeable: %s' ), is_writeable( $val ) ? __( 'yes' ) : __( 'no' ) ); ?&gt;&lt;br/&gt;
-&lt;?php
-                } elseif ( ! file_exists( $val ) ) {
-?&gt;
-                        &lt;h2&gt;&lt;?php echo esc_html( $val ); ?&gt;&lt;/h2&gt;
-                        &lt;?php echo $indent . sprintf( __( 'FILE NOT FOUND: %s' ), $val ); ?&gt;&lt;br/&gt;
-&lt;?php
-                }
</del><ins>+        $active_plugins = get_option( 'active_plugins' );
+        if ( ! empty( $active_plugins ) ) {
+                printf( '&lt;p&gt;' . __( 'Please &lt;a href=&quot;%s&quot;&gt;deactivate&lt;/a&gt; your plugins before enabling the Network feature. Once the network is created, you may reactivate your plugins.' ) . '&lt;/p&gt;', admin_url( 'plugins.php' ) );
+                include( './admin-footer.php' );
+                die();
</ins><span class="cx">         }
</span><del>-        echo &quot;&lt;/blockquote&gt;&quot;;
-}
</del><span class="cx"> 
</span><del>-/**
- * Prints .htaccess component of step 2 for network settings.
- *
- * @since 3.0.0
- */
-function step2_htaccess() {
-        global $base;
-
-        // remove ending slash from $base and $url
-        $htaccess = '';
-        if ( substr( $base, -1 ) == '/' )
-                $base = substr( $base, 0, -1 );
-
-        $htaccess_sample = ABSPATH . 'wp-admin/includes/htaccess.ms';
-        if ( ! file_exists( $htaccess_sample ) )
-                wp_die( sprintf( __( 'Sorry, I need a %s to work from. Please re-upload this file to your WordPress installation.' ), $htaccess_sample ) );
-
-        $htaccess_file = file( $htaccess_sample );
-        $fp = @fopen( $htaccess_sample, &quot;r&quot; );
-        if ( $fp ) {
-                while ( ! feof( $fp ) ) {
-                        $htaccess .= fgets( $fp, 4096 );
-                }
-                fclose( $fp );
-                $htaccess_file = str_replace( &quot;BASE&quot;, $base, $htaccess );
-        } else {
-                wp_die( sprintf( __( 'Sorry, I need to be able to read %s. Please check the permissions on this file.' ), $htaccess_sample ) );
</del><ins>+        $hostname = get_clean_basedomain();
+        if ( 'localhost' == $hostname || preg_match( '|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+|', $hostname ) ) {
+                echo '&lt;p&gt;&lt;strong&gt;' . __('You cannot install a network of sites with your server address.' ) . '&lt;/strong&gt;&lt;/p&gt;';
+                echo '&lt;p&gt;' . __('You cannot use an IP address such as &lt;code&gt;127.0.0.1&lt;/code&gt; or a single-word hostname like &lt;code&gt;localhost&lt;/code&gt;.' ) . '&lt;/p&gt;';
+                if ( 'localhost' == $hostname )
+                        echo '&lt;p&gt;' . __('Consider using &lt;code&gt;localhost.localdomain&lt;/code&gt;.') . '&lt;/p&gt;';
+                include( './admin-footer.php' );
+                die();
</ins><span class="cx">         }
</span><del>-?&gt;
-                        &lt;li&gt;&lt;p&gt;&lt;?php printf( __( 'Replace the contents of your &lt;code&gt;%s.htaccess&lt;/code&gt; with the following:' ), ABSPATH ); ?&gt;&lt;/p&gt;
-                                &lt;textarea name=&quot;htaccess&quot; cols=&quot;120&quot; rows=&quot;20&quot;&gt;
-&lt;?php echo wp_htmledit_pre( $htaccess_file ); ?&gt;
-                                &lt;/textarea&gt;
-                        &lt;/li&gt;
-&lt;?php
-}
</del><span class="cx"> 
</span><del>-/**
- * Prints part of step 1 for network settings and checks for mod_rewrite.
- *
- * @since 3.0.0
- * @return bool Whether mod_rewrite is enabled.
- */
-function step1() {
-        $rewrite_enabled = false;
</del><span class="cx">         ?&gt;
</span><del>-        &lt;h2&gt;&lt;?php esc_html_e( 'Installing Network of WordPress Sites' ); ?&gt;&lt;/h2&gt;
-        &lt;p&gt;&lt;?php _e( 'I will help you enable the features for creating a network of sites by asking you a few questions so that you can create configuration files and make a directory to store all your uploaded files.' ); ?&gt;&lt;/p&gt;
-
-        &lt;h2&gt;&lt;?php esc_html_e( 'What do I need?' ); ?&gt;&lt;/h2&gt;
-        &lt;ul&gt;
-                &lt;li&gt;&lt;?php _e( 'Access to your server to change directory permissions. This can be done through ssh or ftp for example.' ); ?&gt;&lt;/li&gt;
-                &lt;li&gt;&lt;?php _e( 'A valid email where your password and administrative emails will be sent.' ); ?&gt;&lt;/li&gt;
-                &lt;li&gt;&lt;?php _e( &quot;Wildcard dns records if you're going to use the virtual host (sub-domain) functionality. Check the &lt;a href='http://trac.mu.wordpress.org/browser/trunk/README.txt'&gt;README&lt;/a&gt; for further details.&quot; ); ?&gt;&lt;/li&gt;
-        &lt;/ul&gt;
</del><ins>+        &lt;p&gt;&lt;?php _e( 'Welcome to the Network installation process!' ); ?&gt;&lt;/p&gt;
+        &lt;p&gt;&lt;?php _e( &quot;Fill in the information below and you&amp;#8217;ll be on your way to creating a network of WordPress sites. We'll create configuration files in the next step.&quot; ); ?&gt;&lt;/p&gt;
</ins><span class="cx">         &lt;?php
</span><del>-        $mod_rewrite_msg = &quot;\n&lt;p&gt;&quot; . __( 'If the &lt;code&gt;mod_rewrite&lt;/code&gt; module is disabled ask your administrator to enable that module, or look at the &lt;a href=&quot;http://httpd.apache.org/docs/mod/mod_rewrite.html&quot;&gt;Apache documentation&lt;/a&gt; or &lt;a href=&quot;http://www.google.com/search?q=apache+mod_rewrite&quot;&gt;elsewhere&lt;/a&gt; for help setting it up.' ) . '&lt;/p&gt;';
</del><span class="cx"> 
</span><del>-        if ( function_exists( 'apache_get_modules' ) ) {
-                $modules = apache_get_modules();
-                if ( ! in_array( 'mod_rewrite', $modules ) )
-                        echo '&lt;p&gt;' . __( '&lt;strong&gt;Warning!&lt;/strong&gt; It looks like mod_rewrite is not installed.' ) . '&lt;/p&gt;' . $mod_rewrite_msg;
-                else
-                        $rewrite_enabled = true;
</del><ins>+        if ( apache_mod_loaded('mod_rewrite') ) { // assume nothing
+                $rewrite_enabled = true;
</ins><span class="cx">         } else {
</span><del>-                echo '&lt;p&gt;' . __( 'Please make sure &lt;code&gt;mod_rewrite&lt;/code&gt; is installed as it will be activated at the end of this install.' ) . '&lt;/p&gt;' . $mod_rewrite_msg;
</del><ins>+                $rewrite_enabled = false;
+                if ( got_mod_rewrite() ) // dangerous assumptions
+                        echo '&lt;p&gt;' . __( 'Please make sure the Apache &lt;code&gt;mod_rewrite&lt;/code&gt; module is installed as it will be used at the end of this install.' ) . '&lt;/p&gt;';
+                else
+                        echo '&lt;p&gt;' . __( '&lt;strong&gt;Warning!&lt;/strong&gt; It looks like Apache &lt;code&gt;mod_rewrite&lt;/code&gt; module is not installed.' ) . '&lt;/p&gt;';
+                echo '&lt;p&gt;' . __( 'If &lt;code&gt;mod_rewrite&lt;/code&gt; is disabled ask your administrator to enable that module, or look at the &lt;a href=&quot;http://httpd.apache.org/docs/mod/mod_rewrite.html&quot;&gt;Apache documentation&lt;/a&gt; or &lt;a href=&quot;http://www.google.com/search?q=apache+mod_rewrite&quot;&gt;elsewhere&lt;/a&gt; for help setting it up.' ) . '&lt;/p&gt;';
</ins><span class="cx">         }
</span><del>-        return $rewrite_enabled;
-}
</del><span class="cx"> 
</span><del>-/**
- * Prints most of step 1 for network settings.
- *
- * @since 3.0.0
- * @param bool $rewrite_enabled Whether mod_rewrite is enabled. Default false.
- */
-function printstep1form( $rewrite_enabled = false ) {
-        $weblog_title = sprintf( __( '%s Sites' ), ucfirst( get_option( 'blogname' ) ) );
-        $email = get_option( 'admin_email' );
-        $hostname = get_clean_basedomain();
-        $invalid_host = false;
-        if ( 'localhost' == $hostname || preg_match( '|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+|', $hostname, $match ) )
-                $invalid_host = true;
-        if ( substr( $hostname, 0, 4 ) == 'www.' )
-                $nowww = substr( $hostname, 4 );
-
</del><span class="cx">         wp_nonce_field( 'install-network-1' );
</span><span class="cx">         if ( network_domain_check() ) { ?&gt;
</span><span class="cx">                 &lt;h2&gt;&lt;?php esc_html_e( 'Existing Sites' ); ?&gt;&lt;/h2&gt;
</span><span class="cx">                 &lt;p&gt;&lt;?php _e( 'An existing WordPress Network was detected.' ); ?&gt;&lt;/p&gt;
</span><span class="cx">                 &lt;p class=&quot;existing-network&quot;&gt;
</span><del>-                        &lt;label&gt;&lt;input type='checkbox' name='existing_network' value='yes' /&gt; &lt;?php _e( 'Yes, keep the existing network of sites.' ); ?&gt;&lt;/label&gt;&lt;br /&gt;
</del><ins>+                        &lt;label&gt;&lt;input type='checkbox' name='existing_network' value='1' /&gt; &lt;?php _e( 'Yes, keep the existing network of sites.' ); ?&gt;&lt;/label&gt;&lt;br /&gt;
</ins><span class="cx">                 &lt;/p&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php         } else { ?&gt;
</span><del>-                &lt;input type='hidden' name='existing_network' value='none' /&gt;
</del><ins>+                &lt;input type='hidden' name='existing_network' value='0' /&gt;
</ins><span class="cx"> &lt;?php        } ?&gt;
</span><span class="cx">                 &lt;input type='hidden' name='action' value='step2' /&gt;
</span><del>-                &lt;h2&gt;&lt;?php esc_html_e( 'Site Addresses' ); ?&gt;&lt;/h2&gt;
-                &lt;p&gt;&lt;?php _e( 'Please choose whether you would like sites in your WordPress install to use sub-domains or sub-directories. You cannot change this later.' ); ?&gt;&lt;/p&gt;
</del><ins>+                &lt;h3&gt;&lt;?php esc_html_e( 'Addresses of Sites in your Network' ); ?&gt;&lt;/h3&gt;
+        
+                &lt;p&gt;&lt;?php _e( 'Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories. &lt;strong&gt;You cannot change this later.&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
+                &lt;p&gt;&lt;?php _e( &quot;You will need a wildcard DNS record if you're going to use the virtual host (sub-domain) functionality.&quot; ); ?&gt;&lt;/p&gt;
+                &lt;?php /* @todo: Link to an MS readme? */ ?&gt;
</ins><span class="cx">                 &lt;?php if ( ! $rewrite_enabled ) { ?&gt;
</span><span class="cx">                 &lt;p&gt;&lt;?php _e( '&lt;strong&gt;Note&lt;/strong&gt; It looks like &lt;code&gt;mod_rewrite&lt;/code&gt; is not installed.' ); ?&gt;&lt;/p&gt;
</span><span class="cx">                 &lt;?php } ?&gt;
</span><del>-                &lt;p class=&quot;blog-address&quot;&gt;
-                        &lt;label&gt;&lt;input type='radio' name='vhost' value='yes'&lt;?php if ( $rewrite_enabled ) echo ' checked=&quot;checked&quot;'; ?&gt; /&gt; &lt;?php _e( 'Sub-domains (like &lt;code&gt;blog1.example.com&lt;/code&gt;)' ); ?&gt;&lt;/label&gt;&lt;br /&gt;
-                        &lt;label&gt;&lt;input type='radio' name='vhost' value='no'&lt;?php if ( ! $rewrite_enabled ) echo ' checked=&quot;checked&quot;'; ?&gt; /&gt; &lt;?php _e( 'Sub-directories (like &lt;code&gt;example.com/blog1&lt;/code&gt;)' ); ?&gt;&lt;/label&gt;
-                &lt;/p&gt;
</del><ins>+                &lt;table class=&quot;form-table&quot;&gt;
+                        &lt;tr&gt;
+                                &lt;th&gt;&lt;label&gt;&lt;input type='radio' name='vhost' value='yes'&lt;?php checked( $rewrite_enabled ); ?&gt; /&gt; Sub-domains&lt;/label&gt;&lt;/th&gt;
+                                &lt;td&gt;&lt;?php _e('like &lt;code&gt;blog1.example.com&lt;/code&gt; and &lt;code&gt;blog2.example.com&lt;/code&gt;'); ?&gt;&lt;/td&gt;
+                        &lt;/tr&gt;
+                        &lt;tr&gt;
+                                &lt;th&gt;&lt;label&gt;&lt;input type='radio' name='vhost' value='no'&lt;?php checked( ! $rewrite_enabled ); ?&gt; /&gt; Sub-directories&lt;/label&gt;&lt;/th&gt;
+                                &lt;td&gt;&lt;?php _e('like &lt;code&gt;example.com/blog1&lt;/code&gt; and &lt;code&gt;example.com/blog2&lt;/code&gt;'); ?&gt;&lt;/td&gt;
+                        &lt;/tr&gt;
+                &lt;/table&gt;
</ins><span class="cx"> 
</span><del>-                &lt;h2&gt;&lt;?php esc_html_e( 'Server Address' ); ?&gt;&lt;/h2&gt;
-                &lt;?php if ( isset( $nowww ) ) { ?&gt;
-                &lt;h3&gt;&lt;?php printf( __( 'We recommend you change your siteurl to &lt;code&gt;%1$s&lt;/code&gt; before enabling the network feature. It will still be possible to visit your site using the &quot;www&quot; prefix with an address like &lt;code&gt;%2$s&lt;/code&gt; but any links will not have the &quot;www&quot; prefix.' ), $nowww, $hostname ); ?&gt;&lt;/h3&gt;
-                &lt;?php } ?&gt;
</del><ins>+                &lt;?php
+                $is_www = ( substr( $hostname, 0, 4 ) == 'www.' );
+                if ( $is_www ) :
+                ?&gt;
+                &lt;h3&gt;&lt;?php esc_html_e( 'Server Address' ); ?&gt;&lt;/h3&gt;
+                &lt;p&gt;&lt;?php printf( __( 'We recommend you change your siteurl to &lt;code&gt;%1$s&lt;/code&gt; before enabling the network feature. It will still be possible to visit your site using the &quot;www&quot; prefix with an address like &lt;code&gt;%2$s&lt;/code&gt; but any links will not have the &quot;www&quot; prefix.' ), substr( $hostname, 4 ), $hostname ); ?&gt;&lt;/h3&gt;
</ins><span class="cx">                 &lt;table class=&quot;form-table&quot;&gt;
</span><span class="cx">                         &lt;tr&gt;
</span><span class="cx">                                 &lt;th scope='row'&gt;&lt;?php esc_html_e( 'Server Address' ); ?&gt;&lt;/th&gt;
</span><span class="cx">                                 &lt;td&gt;
</span><del>-                &lt;?php if ( !$invalid_host ) { ?&gt;
-                                        &lt;?php printf( __( 'This will be the Internet address of your site: &lt;strong&gt;&lt;em&gt;%s&lt;/em&gt;&lt;/strong&gt;.' ), $hostname ); ?&gt;
</del><ins>+                                        &lt;?php printf( __( 'The Internet address of your network will be &lt;code&gt;%s&lt;/code&gt;.' ), $hostname ); ?&gt;
</ins><span class="cx">                                         &lt;input type='hidden' name='basedomain' value='&lt;?php echo esc_attr( $hostname ); ?&gt;' /&gt;
</span><del>-                &lt;?php } else { ?&gt;
-                                        &lt;?php _e( 'Do not use an IP address (like 127.0.0.1) or a single word hostname like &lt;q&gt;localhost&lt;/q&gt; as your server address.' ); ?&gt;
-                &lt;?php } ?&gt;
</del><span class="cx">                                 &lt;/td&gt;
</span><span class="cx">                         &lt;/tr&gt;
</span><span class="cx">                 &lt;/table&gt;
</span><ins>+                &lt;?php endif; ?&gt;
</ins><span class="cx"> 
</span><del>-                &lt;h2&gt;&lt;?php esc_html_e( 'Site Details' ); ?&gt;&lt;/h2&gt;
</del><ins>+                &lt;h3&gt;&lt;?php esc_html_e( 'Network Details' ); ?&gt;&lt;/h3&gt;
</ins><span class="cx">                 &lt;table class=&quot;form-table&quot;&gt;
</span><ins>+                &lt;?php if ( ! $is_www ) : ?&gt;
</ins><span class="cx">                         &lt;tr&gt;
</span><del>-                                &lt;th scope='row'&gt;&lt;?php esc_html_e( 'Site&amp;nbsp;Title' ); ?&gt;&lt;/th&gt;
</del><ins>+                                &lt;th scope='row'&gt;&lt;?php esc_html_e( 'Server Address' ); ?&gt;&lt;/th&gt;
</ins><span class="cx">                                 &lt;td&gt;
</span><del>-                                        &lt;input name='weblog_title' type='text' size='45' value='&lt;?php echo esc_attr( $weblog_title ); ?&gt;' /&gt;
-                                        &lt;br /&gt;&lt;?php _e( 'What would you like to call your site?' ); ?&gt;
</del><ins>+                                        &lt;?php printf( __( 'The Internet address of your network will be &lt;code&gt;%s&lt;/code&gt;.' ), $hostname ); ?&gt;
</ins><span class="cx">                                 &lt;/td&gt;
</span><span class="cx">                         &lt;/tr&gt;
</span><ins>+                &lt;?php endif; ?&gt;
</ins><span class="cx">                         &lt;tr&gt;
</span><del>-                                &lt;th scope='row'&gt;&lt;?php esc_html_e( 'Email' ); ?&gt;&lt;/th&gt;
</del><ins>+                                &lt;th scope='row'&gt;&lt;?php esc_html_e( 'Network Title' ); ?&gt;&lt;/th&gt;
</ins><span class="cx">                                 &lt;td&gt;
</span><del>-                                        &lt;input name='email' type='text' size='45' value='&lt;?php echo esc_attr( $email ); ?&gt;' /&gt;
</del><ins>+                                        &lt;input name='weblog_title' type='text' size='45' value='&lt;?php echo esc_attr( sprintf( __('%s Sites'), get_option( 'blogname' ) ) ); ?&gt;' /&gt;
+                                        &lt;br /&gt;&lt;?php _e( 'What would you like to call your network?' ); ?&gt;
+                                &lt;/td&gt;
+                        &lt;/tr&gt;
+                        &lt;tr&gt;
+                                &lt;th scope='row'&gt;&lt;?php esc_html_e( 'Admin E-mail Address' ); ?&gt;&lt;/th&gt;
+                                &lt;td&gt;
+                                        &lt;input name='email' type='text' size='45' value='&lt;?php echo esc_attr( get_option( 'admin_email' ) ); ?&gt;' /&gt;
</ins><span class="cx">                                         &lt;br /&gt;&lt;?php _e( 'Your email address.' ); ?&gt;
</span><span class="cx">                                 &lt;/td&gt;
</span><span class="cx">                         &lt;/tr&gt;
</span><span class="cx">                 &lt;/table&gt;
</span><del>-                &lt;?php if ( !$invalid_host ) { ?&gt;
-                &lt;p class='submit'&gt;&lt;input class=&quot;button&quot; name='submit' type='submit' value='&lt;?php esc_attr_e( 'Proceed' ); ?&gt;' /&gt;&lt;/p&gt;
-                &lt;?php } ?&gt;
-        &lt;?php
</del><ins>+                &lt;p class='submit'&gt;&lt;input class=&quot;button-primary&quot; name='submit' type='submit' value='&lt;?php esc_attr_e( 'Install' ); ?&gt;' /&gt;&lt;/p&gt;
+                &lt;?php
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><del>- * Checks for active plugins &amp; displays a notice to deactivate them.
</del><ins>+ * Prints step 2 for Network installation process.
</ins><span class="cx">  *
</span><span class="cx">  * @since 3.0.0
</span><span class="cx">  */
</span><del>-function step1_plugin_check() {
-        $active_plugins = get_option( 'active_plugins' );
-        if ( is_array( $active_plugins ) &amp;&amp; !empty( $active_plugins ) ) {
</del><ins>+function ms_network_step2() {
+        global $base, $wpdb;
</ins><span class="cx"> ?&gt;
</span><del>-                &lt;h2&gt;&lt;?php esc_html_e( 'Enabling WordPress Sites' ); ?&gt;&lt;/h2&gt;
-                &lt;p&gt;&lt;?php printf( __( 'Please &lt;a href=&quot;%s&quot;&gt;deactivate&lt;/a&gt; your plugins before enabling WordPress Sites. Once WordPress Sites are enabled, you may reactivate your plugins.' ), admin_url( 'plugins.php' ) ); ?&gt;&lt;/p&gt;
-&lt;?php
-                return false;
-        }
-        return true;
-}
-
-/**
- * Checks for existing network data/tables.
- *
- * @since 3.0.0
- */
-function network_domain_check() {
-        global $wpdb;
-
-        if ( $wpdb-&gt;get_var( &quot;SHOW TABLES LIKE '$wpdb-&gt;site'&quot; ) == $wpdb-&gt;site )
-                return $wpdb-&gt;get_var( &quot;SELECT domain FROM $wpdb-&gt;site ORDER BY id ASC LIMIT 1&quot; );
-
-        return false;
-}
-
-/**
- * Prints step 2 for network settings.
- *
- * @since 3.0.0
- */
-function step2() {
-?&gt;
-                &lt;h2&gt;&lt;?php esc_html_e( 'Enabling WordPress Sites' ); ?&gt;&lt;/h2&gt;
</del><ins>+                &lt;h3&gt;&lt;?php esc_html_e( 'Enabling the Network' ); ?&gt;&lt;/h3&gt;
</ins><span class="cx">                 &lt;p&gt;&lt;?php _e( 'Complete the following steps to enable the features for creating a network of sites. &lt;strong&gt;Note:&lt;/strong&gt; We recommend you make a backup copy of your existing &lt;code&gt;wp-config.php&lt;/code&gt; and &lt;code&gt;.htaccess&lt;/code&gt; files.' ); ?&gt;&lt;/p&gt;
</span><span class="cx">                 &lt;ol&gt;
</span><span class="cx">                         &lt;li&gt;&lt;?php printf( __( 'Create a &lt;code&gt;%s/blogs.dir&lt;/code&gt; directory. This directory is used to stored uploaded media for your additional sites and must be writeable by the web server.' ), WP_CONTENT_DIR ); ?&gt;&lt;/li&gt;
</span><del>-&lt;?php step2_config(); ?&gt;
-&lt;?php step2_htaccess(); ?&gt;
-                &lt;/ol&gt;
</del><span class="cx"> &lt;?php
</span><del>-}
-
-/**
- * Prints configuration file component of step 2 for network settings.
- *
- * @since 3.0.0
- */
-function step2_config() {
-        global $base, $wpdb, $vhost;
-
</del><span class="cx">         $vhost   = stripslashes( $_POST['vhost' ] );
</span><span class="cx">         $prefix  = $wpdb-&gt;base_prefix;
</span><span class="cx"> 
</span><del>-        $config_sample = ABSPATH . 'wp-admin/includes/wp-config.ms';
</del><ins>+        $config_sample = ABSPATH . 'wp-admin/includes/ms-config-sample.php';
</ins><span class="cx">         if ( ! file_exists( $config_sample ) )
</span><span class="cx">                 wp_die( sprintf( __( 'Sorry, I need a &lt;code&gt;%s&lt;/code&gt; to work from. Please re-upload this file to your WordPress installation.' ), $config_sample ) );
</span><span class="cx"> 
</span><span class="lines">@@ -341,57 +237,58 @@
</span><span class="cx">                                 &lt;/textarea&gt;
</span><span class="cx">                         &lt;/li&gt;
</span><span class="cx"> &lt;?php
</span><del>-}
</del><span class="cx"> 
</span><del>-/**
- * Gets base domain of network.
- *
- * @since 3.0.0
- */
-function get_clean_basedomain() {
-        global $wpdb;
</del><ins>+        // remove ending slash from $base and $url
+        $htaccess = '';
+        if ( substr( $base, -1 ) == '/' )
+                $base = substr( $base, 0, -1 );
</ins><span class="cx"> 
</span><del>-        $existing_domain = network_domain_check();
-        if ( $existing_domain )
-                return $existing_domain;
</del><ins>+        $htaccess_sample = ABSPATH . 'wp-admin/includes/htaccess.ms';
+        if ( ! file_exists( $htaccess_sample ) )
+                wp_die( sprintf( __( 'Sorry, I need a %s to work from. Please re-upload this file to your WordPress installation.' ), $htaccess_sample ) );
</ins><span class="cx"> 
</span><del>-        $domain = preg_replace( '|https?://|', '', get_option( 'siteurl' ) );
-        if ( strpos( $domain, '/' ) )
-                $domain = substr( $domain, 0, strpos( $domain, '/' ) );
-        return $domain;
</del><ins>+        $htaccess_file = file( $htaccess_sample );
+        $fp = @fopen( $htaccess_sample, &quot;r&quot; );
+        if ( $fp ) {
+                while ( ! feof( $fp ) ) {
+                        $htaccess .= fgets( $fp, 4096 );
+                }
+                fclose( $fp );
+                $htaccess_file = str_replace( &quot;BASE&quot;, $base, $htaccess );
+        } else {
+                wp_die( sprintf( __( 'Sorry, I need to be able to read %s. Please check the permissions on this file.' ), $htaccess_sample ) );
+        }
+?&gt;
+                        &lt;li&gt;&lt;p&gt;&lt;?php printf( __( 'Replace the contents of your &lt;code&gt;%s.htaccess&lt;/code&gt; with the following:' ), ABSPATH ); ?&gt;&lt;/p&gt;
+                                &lt;textarea name=&quot;htaccess&quot; cols=&quot;120&quot; rows=&quot;20&quot;&gt;
+&lt;?php echo wp_htmledit_pre( $htaccess_file ); ?&gt;
+                                &lt;/textarea&gt;
+                        &lt;/li&gt;
+                &lt;/ol&gt;
+&lt;?php
</ins><span class="cx"> }
</span><span class="cx"> 
</span><del>-$action = isset( $_POST[ 'action' ] ) ? $_POST[ 'action' ] : null;
</del><ins>+$action = isset( $_POST['action'] ) ? $_POST['action'] : null;
</ins><span class="cx"> 
</span><del>-switch( $action ) {
</del><ins>+switch ( $action ) {
</ins><span class="cx">         case 'step2':
</span><span class="cx">                 check_admin_referer( 'install-network-1' );
</span><span class="cx"> 
</span><del>-                if ( isset( $_POST[ 'existing_network' ] ) ) {
-                        // Install!
-                        $base = stripslashes( dirname( dirname( $_SERVER['SCRIPT_NAME'] ) ) );
-                        if ( $base != '/' )
-                                $base .= '/';
</del><ins>+                // Install!
+                $base = trailingslashit( stripslashes( dirname( dirname( $_SERVER['SCRIPT_NAME'] ) ) ) );
</ins><span class="cx"> 
</span><del>-                        require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
-                        // create network tables
-                        $domain = get_clean_basedomain();
-                        install_network();
-                        if ( !network_domain_check() || $_POST[ 'existing_network' ] == 'none' )
-                                populate_network( 1, $domain, sanitize_email( $_POST['email'] ), $_POST['weblog_title'], $base, $_POST['vhost'] );
-                        // create wp-config.php / htaccess
-                        step2();
-                        break;
-                }
</del><ins>+                require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
+                // create network tables
+                install_network();
+                if ( !network_domain_check() || $_POST['existing_network'] == '0' )
+                        populate_network( 1, get_clean_basedomain(), sanitize_email( $_POST['email'] ), $_POST['weblog_title'], $base, $_POST['vhost'] );
+                // create wp-config.php / htaccess
+                ms_network_step2();
+                break;
+
</ins><span class="cx">         default:
</span><del>-                //@todo: give an informative screen instead
-                if ( is_multisite() ) {
-                        _e( 'Network already enabled.' );
-                } elseif ( step1_plugin_check() ) {
-                        $rewrite_enabled = step1();
-                        printstep1form( $rewrite_enabled );
-                }
-        break;
</del><ins>+                ms_network_step1();
+                break;
</ins><span class="cx"> }
</span><span class="cx"> ?&gt;
</span><span class="cx"> &lt;/form&gt;
</span></span></pre>
</div>
</div>

</body>
</html>