<!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>[12602] trunk/wp-includes/ms-settings.php: Adding multi-site settings code</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/12602">12602</a></dd>
<dt>Author</dt> <dd>wpmuguru</dd>
<dt>Date</dt> <dd>2010-01-05 20:59:48 +0000 (Tue, 05 Jan 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Adding multi-site settings code</pre>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkwpincludesmssettingsphp">trunk/wp-includes/ms-settings.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludesmssettingsphp"></a>
<div class="addfile"><h4>Added: trunk/wp-includes/ms-settings.php (0 => 12602)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/ms-settings.php                                (rev 0)
+++ trunk/wp-includes/ms-settings.php        2010-01-05 20:59:48 UTC (rev 12602)
</span><span class="lines">@@ -0,0 +1,245 @@
</span><ins>+&lt;?php
+if( isset( $current_site ) &amp;&amp; isset( $current_blog ) )
+        return;
+
+// depreciated
+$wpmuBaseTablePrefix = $table_prefix;
+
+$domain = addslashes( $_SERVER['HTTP_HOST'] );
+if( substr( $domain, 0, 4 ) == 'www.' )
+        $domain = substr( $domain, 4 );
+if( strpos( $domain, ':' ) ) {
+        if( substr( $domain, -3 ) == ':80' ) {
+                $domain = substr( $domain, 0, -3 );
+                $_SERVER['HTTP_HOST'] = substr( $_SERVER['HTTP_HOST'], 0, -3 );
+        } elseif( substr( $domain, -4 ) == ':443' ) {
+                $domain = substr( $domain, 0, -4 );
+                $_SERVER['HTTP_HOST'] = substr( $_SERVER['HTTP_HOST'], 0, -4 );
+        } else {
+                die( 'WPMU only works without the port number in the URL.' );
+        }
+}
+$domain = preg_replace('/:.*$/', '', $domain); // Strip ports
+if( substr( $domain, -1 ) == '.' )
+        $domain = substr( $domain, 0, -1 );
+
+$path = preg_replace( '|([a-z0-9-]+.php.*)|', '', $_SERVER['REQUEST_URI'] );
+$path = str_replace ( '/wp-admin/', '/', $path );
+$path = preg_replace( '|(/[a-z0-9-]+?/).*|', '$1', $path );
+
+function get_current_site_name( $current_site ) {
+        global $wpdb;
+        $current_site-&gt;site_name = wp_cache_get( $current_site-&gt;id . ':current_site_name', &quot;site-options&quot; );
+        if ( !$current_site-&gt;site_name ) {
+                $current_site-&gt;site_name = $wpdb-&gt;get_var( $wpdb-&gt;prepare( &quot;SELECT meta_value FROM $wpdb-&gt;sitemeta WHERE site_id = %d AND meta_key = 'site_name'&quot;, $current_site-&gt;id ) );
+                if( $current_site-&gt;site_name == null )
+                        $current_site-&gt;site_name = ucfirst( $current_site-&gt;domain );
+                wp_cache_set( $current_site-&gt;id . ':current_site_name', $current_site-&gt;site_name, 'site-options');
+        }
+        return $current_site;
+}
+
+function wpmu_current_site() {
+        global $wpdb, $current_site, $domain, $path, $sites;
+        if( defined( 'DOMAIN_CURRENT_SITE' ) &amp;&amp; defined( 'PATH_CURRENT_SITE' ) ) {
+                $current_site-&gt;id = (defined( 'SITE_ID_CURRENT_SITE' ) ? constant('SITE_ID_CURRENT_SITE') : 1);
+                $current_site-&gt;domain = DOMAIN_CURRENT_SITE;
+                $current_site-&gt;path   = $path = PATH_CURRENT_SITE;
+                if( defined( 'BLOGID_CURRENT_SITE' ) )
+                        $current_site-&gt;blog_id = BLOGID_CURRENT_SITE;
+                return $current_site;
+        }
+
+        $current_site = wp_cache_get( &quot;current_site&quot;, &quot;site-options&quot; );
+        if( $current_site )
+                return $current_site;
+                
+        $wpdb-&gt;suppress_errors();
+        $sites = $wpdb-&gt;get_results( &quot;SELECT * FROM $wpdb-&gt;site&quot; ); // usually only one site
+        if( count( $sites ) == 1 ) {
+                $current_site = $sites[0];
+                $path = $current_site-&gt;path;
+                $current_site-&gt;blog_id = $wpdb-&gt;get_var( &quot;SELECT blog_id FROM {$wpdb-&gt;blogs} WHERE domain='{$current_site-&gt;domain}' AND path='{$current_site-&gt;path}'&quot; );
+                $current_site = get_current_site_name( $current_site );
+                wp_cache_set( &quot;current_site&quot;, $current_site, &quot;site-options&quot; );
+                return $current_site;
+        }
+        $path = substr( $_SERVER[ 'REQUEST_URI' ], 0, 1 + strpos( $_SERVER[ 'REQUEST_URI' ], '/', 1 ) );
+        if( constant( 'VHOST' ) == 'yes' ) {
+                $current_site = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;site WHERE domain = %s AND path = %s&quot;, $domain, $path) );
+                if( $current_site != null )
+                        return $current_site;
+                $current_site = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;site WHERE domain = %s AND path='/'&quot;, $domain) );
+                if( $current_site != null ) {
+                        $path = '/';
+                        return $current_site;
+                }
+
+                $sitedomain = substr( $domain, 1 + strpos( $domain, '.' ) );
+                $current_site = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;site WHERE domain = %s AND path = %s&quot;, $sitedomain, $path) );
+                if( $current_site != null )
+                        return $current_site;
+                $current_site = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;site WHERE domain = %s AND path='/'&quot;, $sitedomain) );
+                if( $current_site == null &amp;&amp; defined( &quot;WP_INSTALLING&quot; ) == false ) {
+                        if( count( $sites ) == 1 ) {
+                                $current_site = $sites[0];
+                                die( &quot;That blog does not exist. Please try &lt;a href='http://{$current_site-&gt;domain}{$current_site-&gt;path}'&gt;http://{$current_site-&gt;domain}{$current_site-&gt;path}&lt;/a&gt;&quot; );
+                        } else {
+                                die( &quot;No WPMU site defined on this host. If you are the owner of this site, please check &lt;a href='http://codex.wordpress.org/Debugging_WPMU'&gt;Debugging WPMU&lt;/a&gt; for further assistance.&quot; );
+                        }
+                } else {
+                        $path = '/';
+                }
+        } else {
+                $current_site = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;site WHERE domain = %s AND path = %s&quot;, $domain, $path) );
+                if( $current_site != null )
+                        return $current_site;
+                $current_site = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;site WHERE domain = %s AND path='/'&quot;, $domain) );
+                if( $current_site == null &amp;&amp; defined( &quot;WP_INSTALLING&quot; ) == false ) {
+                        if( count( $sites ) == 1 ) {
+                                $current_site = $sites[0];
+                                die( &quot;That blog does not exist. Please try &lt;a href='http://{$current_site-&gt;domain}{$current_site-&gt;path}'&gt;http://{$current_site-&gt;domain}{$current_site-&gt;path}&lt;/a&gt;&quot; );
+                        } else {
+                                die( &quot;No WPMU site defined on this host. If you are the owner of this site, please check &lt;a href='http://codex.wordpress.org/Debugging_WPMU'&gt;Debugging WPMU&lt;/a&gt; for further assistance.&quot; );
+                        }
+                } else {
+                        $path = '/';
+                }
+        }
+        return $current_site;
+}
+
+$current_site = wpmu_current_site();
+if( !isset( $current_site-&gt;blog_id ) )
+        $current_site-&gt;blog_id = $wpdb-&gt;get_var( &quot;SELECT blog_id FROM {$wpdb-&gt;blogs} WHERE domain='{$current_site-&gt;domain}' AND path='{$current_site-&gt;path}'&quot; );
+
+if( constant( 'VHOST' ) == 'yes' ) {
+        $current_blog = wp_cache_get( 'current_blog_' . $domain, 'site-options' );
+        if( !$current_blog ) {
+                $current_blog = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;blogs WHERE domain = %s&quot;, $domain) );
+                if( $current_blog )
+                        wp_cache_set( 'current_blog_' . $domain, $current_blog, 'site-options' );
+        }
+        if( $current_blog != null &amp;&amp; $current_blog-&gt;site_id != $current_site-&gt;id ) {
+                $current_site = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;site WHERE id = %d&quot;, $current_blog-&gt;site_id) );
+        } else {
+                $blogname = substr( $domain, 0, strpos( $domain, '.' ) );
+        }
+} else {
+        $blogname = htmlspecialchars( substr( $_SERVER[ 'REQUEST_URI' ], strlen( $path ) ) );
+        if( strpos( $blogname, '/' ) )
+                $blogname = substr( $blogname, 0, strpos( $blogname, '/' ) );
+        if( strpos( &quot; &quot;.$blogname, '?' ) )
+                $blogname = substr( $blogname, 0, strpos( $blogname, '?' ) );
+        $reserved_blognames = array( 'page', 'comments', 'blog', 'wp-admin', 'wp-includes', 'wp-content', 'files', 'feed' );
+        if ( $blogname != '' &amp;&amp; !in_array( $blogname, $reserved_blognames ) &amp;&amp; !is_file( $blogname ) ) {
+                $path = $path . $blogname . '/';
+        }
+        $current_blog = wp_cache_get( 'current_blog_' . $domain . $path, 'site-options' );
+        if( !$current_blog ) {
+                $current_blog = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;blogs WHERE domain = %s AND path = %s&quot;, $domain, $path) );
+                if( $current_blog )
+                        wp_cache_set( 'current_blog_' . $domain . $path, $current_blog, 'site-options' );
+        }
+}
+
+if( defined( &quot;WP_INSTALLING&quot; ) == false &amp;&amp; constant( 'VHOST' ) == 'yes' &amp;&amp; !is_object( $current_blog ) ) {
+        if( defined( 'NOBLOGREDIRECT' ) ) {
+                $destination = constant( 'NOBLOGREDIRECT' );
+                if ( $destination == '%siteurl%' )
+                        $destination = &quot;http://&quot; . $current_site-&gt;domain . $current_site-&gt;path;
+                header( &quot;Location: &quot; .  $destination);
+                die();
+        } else {
+                header( &quot;Location: http://&quot; . $current_site-&gt;domain . $current_site-&gt;path . &quot;wp-signup.php?new=&quot; . str_replace( '.' . $current_site-&gt;domain, '', $domain ) );
+                die();
+        }
+
+}
+
+if( defined( &quot;WP_INSTALLING&quot; ) == false ) {
+        if( $current_site &amp;&amp; $current_blog == null ) {
+                if( $current_site-&gt;domain != $_SERVER[ 'HTTP_HOST' ] ) {
+                        header( &quot;Location: http://&quot; . $current_site-&gt;domain . $current_site-&gt;path );
+                        exit;
+                }
+                $current_blog = $wpdb-&gt;get_row( $wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;blogs WHERE domain = %s AND path = %s&quot;, $current_site-&gt;domain, $current_site-&gt;path) );
+        }
+        if( $current_blog == false || $current_site == false )
+                is_installed();
+}
+
+$blog_id = $current_blog-&gt;blog_id;
+$public  = $current_blog-&gt;public;
+
+if( $current_blog-&gt;site_id == 0 || $current_blog-&gt;site_id == '' )
+        $current_blog-&gt;site_id = 1;
+$site_id = $current_blog-&gt;site_id;
+
+$current_site = get_current_site_name( $current_site );
+
+if( $blog_id == false ) {
+    // no blog found, are we installing? Check if the table exists.
+    if ( defined('WP_INSTALLING') ) {
+        $blog_id = $wpdb-&gt;get_var( &quot;SELECT blog_id FROM $wpdb-&gt;blogs LIMIT 0,1&quot; );
+        if( $blog_id == false ) {
+            // table doesn't exist. This is the first blog
+            $blog_id = 1;
+        } else {
+            // table exists
+            // don't create record at this stage. we're obviously installing so it doesn't matter what the table vars below are like.
+            // default to using the &quot;main&quot; blog.
+            $blog_id = 1;
+        }
+        $current_blog-&gt;blog_id = $blog_id;
+    } else {
+        $check = $wpdb-&gt;get_results( &quot;SELECT * FROM $wpdb-&gt;site&quot; );
+        if( $check == false ) {
+            $msg = ': DB Tables Missing';
+        } else {
+            $msg = '';
+        }
+        die( &quot;No Blog by that name on this system.&quot; . $msg );
+    }
+}
+
+$wpdb-&gt;suppress_errors( false );
+
+if( '0' == $current_blog-&gt;public ) {
+        // This just means the blog shouldn't show up in google, etc. Only to registered members
+}
+
+function is_installed() {
+        global $wpdb, $domain, $path;
+        $base = stripslashes( $base );
+        if( defined( &quot;WP_INSTALLING&quot; ) == false ) {
+                $check = $wpdb-&gt;get_results( &quot;SELECT * FROM $wpdb-&gt;site&quot; );
+                $msg = &quot;If your blog does not display, please contact the owner of this site.&lt;br /&gt;&lt;br /&gt;If you are the owner of this site please check that MySQL is running properly and all tables are error free.&lt;br /&gt;&lt;br /&gt;&quot;;
+                if( $check == false ) {
+                        $msg .= &quot;&lt;strong&gt;Database Tables Missing.&lt;/strong&gt;&lt;br /&gt;Database tables are missing. This means that MySQL is either not running, WPMU was not installed properly, or someone deleted {$wpdb-&gt;site}. You really &lt;em&gt;should&lt;/em&gt; look at your database now.&lt;br /&gt;&quot;;
+                } else {
+                        $msg .= '&lt;strong&gt;Could Not Find Blog!&lt;/strong&gt;&lt;br /&gt;';
+                        $msg .= &quot;Searched for &lt;em&gt;&quot; . $domain . $path . &quot;&lt;/em&gt; in &quot; . DB_NAME . &quot;::&quot; . $wpdb-&gt;blogs . &quot; table. Is that right?&lt;br /&gt;&quot;;
+                }
+                $msg .= &quot;&lt;br /&gt;\n&lt;h1&gt;What do I do now?&lt;/h1&gt;&quot;;
+                $msg .= &quot;Read the &lt;a target='_blank' href='http://codex.wordpress.org/Debugging_WPMU'&gt;bug report&lt;/a&gt; page. Some of the guidelines there may help you figure out what went wrong.&lt;br /&gt;&quot;;
+                $msg .= &quot;If you're still stuck with this message, then check that your database contains the following tables:&lt;ul&gt;
+                        &lt;li&gt; $wpdb-&gt;blogs &lt;/li&gt;
+                        &lt;li&gt; $wpdb-&gt;users &lt;/li&gt;
+                        &lt;li&gt; $wpdb-&gt;usermeta &lt;/li&gt;
+                        &lt;li&gt; $wpdb-&gt;site &lt;/li&gt;
+                        &lt;li&gt; $wpdb-&gt;sitemeta &lt;/li&gt;
+                        &lt;li&gt; $wpdb-&gt;sitecategories &lt;/li&gt;
+                        &lt;/ul&gt;&quot;;
+                $msg .= &quot;If you suspect a problem please report it to the support forums but you must include the information asked for in the &lt;a href='http://codex.wordpress.org/Debugging_WPMU'&gt;WPMU bug reporting guidelines&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;&quot;;
+                if( is_file( 'release-info.txt' ) ) {
+                        $msg .= 'Your bug report must include the following text: &quot;';
+                        $info = file( 'release-info.txt' );
+                        $msg .= $info[ 4 ] . '&quot;';
+                }
+
+                die( &quot;&lt;h1&gt;Fatal Error&lt;/h1&gt; &quot; . $msg );
+        }
+}
+
+?&gt;
</ins><span class="cx">Property changes on: trunk/wp-includes/ms-settings.php
</span><span class="cx">___________________________________________________________________
</span><span class="cx">Name: svn:executable
</span><span class="cx">   + *
</span></span></pre>
</div>
</div>

</body>
</html>