<!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>[13782] trunk/wp-admin/network.php: Some improvements to the network.
 php mod_rewrite checks.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13782">13782</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-03-20 22:44:07 +0000 (Sat, 20 Mar 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Some improvements to the network.php mod_rewrite checks. see <a href="http://trac.wordpress.org/ticket/12255">#12255</a></pre>

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

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminnetworkphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/network.php (13781 => 13782)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/network.php        2010-03-20 06:27:27 UTC (rev 13781)
+++ trunk/wp-admin/network.php        2010-03-20 22:44:07 UTC (rev 13782)
</span><span class="lines">@@ -117,28 +117,25 @@
</span><span class="cx">         &lt;p&gt;&lt;?php _e( &quot;Fill in the information below and you'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;
</span><span class="cx">         &lt;?php
</span><span class="cx"> 
</span><del>-        // @todo IIS...
-        if ( ! empty( $_POST['subdomain_install'] ) ) {
</del><ins>+        // @todo IIS and ! $is_apache
+        if ( isset( $_POST['subdomain_install'] ) ) {
</ins><span class="cx">                 $subdomain_install = (bool) $_POST['subdomain_install'];
</span><span class="cx">         } elseif ( apache_mod_loaded('mod_rewrite') ) { // assume nothing
</span><span class="cx">                 $subdomain_install = true;
</span><span class="cx">         } else {
</span><span class="cx">                 $subdomain_install = false;
</span><span class="cx">                 if ( got_mod_rewrite() ) // dangerous assumptions
</span><del>-                        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;';
</del><ins>+                        echo '&lt;div class=&quot;updated inline&quot;&gt;&lt;p&gt;&lt;strong&gt;' . __( 'Note:' ) . '&lt;/strong&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;';
</ins><span class="cx">                 else
</span><del>-                        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;';
</del><ins>+                        echo '&lt;div class=&quot;error inline&quot;&gt;&lt;p&gt;&lt;strong&gt;' . __( 'Warning!' ) . '&lt;/strong&gt; ' . __( 'It looks like the 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;&lt;/div&gt;';
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         if ( 'localhost' != $hostname ) : ?&gt;
</span><span class="cx">                 &lt;h3&gt;&lt;?php esc_html_e( 'Addresses of Sites in your Network' ); ?&gt;&lt;/h3&gt;
</span><span class="cx">                 &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;
</span><span class="cx">                 &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;
</span><del>-                &lt;?php /* @todo: Link to an MS readme? */ ?&gt;
-                &lt;?php if ( ! $subdomain_install ) { ?&gt;
-                &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;
-                &lt;?php } ?&gt;
</del><ins>+                &lt;?php // @todo: Link to an MS readme? ?&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&gt;&lt;label&gt;&lt;input type='radio' name='subdomain_install' value='1'&lt;?php checked( $subdomain_install ); ?&gt; /&gt; Sub-domains&lt;/label&gt;&lt;/th&gt;
</span></span></pre>
</div>
</div>

</body>
</html>