<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WordPress &#34;Must-Use&#34; Tutorials&#187; New Features</title>
	<atom:link href="http://wpmututorials.com/category/news/new-features/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpmututorials.com</link>
	<description>WordPress multisite how to - making sense of the network feature from what was wordpress mu</description>
	<lastBuildDate>Fri, 06 Jan 2012 13:36:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Multiple BuddyPress Social Networks</title>
		<link>http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/</link>
		<comments>http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/#comments</comments>
		<pubDate>Thu, 19 May 2011 18:56:06 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[New Features]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[mu-plugin]]></category>
		<category><![CDATA[multiple]]></category>

		<guid isPermaLink="false">http://wpmututorials.com/?p=581</guid>
		<description><![CDATA[Since the merge of WordPress and WordPress MU, WordPress has supported running multiple WP networks in the same WP install. This site has been part of a multi-network install for more than two years. In WordPress, the networks are almost completely separated. The only thing that is shared between networks is the user infomation. Since [...]]]></description>
			<content:encoded><![CDATA[<p>Since the merge of WordPress and WordPress MU, WordPress has supported running multiple WP networks in the same WP install. This site has been part of a multi-network install for more than two years. In WordPress, the networks are almost completely separated. The only thing that is shared between networks is the user infomation. Since BuddyPress is primarily focused around the users, when it is active in multiple networks in the same WP install, the BP social network is common across networks.</p>
<p>Over the last year plus, I&#8217;ve been collaborating with the BP core development team to add the ability to have multiple separate BuddyPress social networks in the same WordPress install. Over the last week a number of changes have been rolled into BP trunk to support separate networks. However, by default, BP will continue to function as a single network across WP networks consistent with the current behavior. A plugin is required to enable multiple distinct BP networks.</p>
<p>You also need to have a plugin to create multiple WP networks in your install. For that you can use either <a href="http://wordpress.org/extend/plugins/wp-multi-network/">WP Multi Network</a> or <a href="http://wpebooks.com/networks/">Networks+</a>.</p>
<p>You can download an alpha version of my BP multi-network plugin below. <strong>This is currently only for testing and should be used on a test site.</strong> Once BP 1.3 is released I&#8217;ll be adding this to the plugin repository at wordpress.org. Instructions for using this are:</p>
<ul>
<li>install the latest version of BuddyPress trunk http://buddypress.trac.wordpress.org/browser/trunk. You need at least revision #4392.</li>
<li>install bp-multi-network.php in the mu-plugins folder (must be installed there to work correctly)</li>
<li>create your second WP network with one of the plugins above</li>
<li>activate BP on the sub network and go through the installation wizard</li>
<li>for forums you need to tweak your bb-config.php a bit &#8211; see below</li>
</ul>
<p>Download the plugin <a href="http://wordpress.org/extend/plugins/bp-multi-network/">here</a>.</p>
<h3>bb-config.php changes</h3>
<p>Your bb-config.php has a line similar to</p>
<pre>
$bb_table_prefix = 'wp_bb_';
</pre>
<p>Change that line to</p>
<pre>
if( function_exists( 'bp_core_get_table_prefix' ) )
	$bb_table_prefix = bp_core_get_table_prefix() . 'bb_';
else
	$bb_table_prefix = 'wp_bb_';
</pre>
<p>A few lines below that you&#8217;ll see a line similar to</p>
<pre>
$bb->uri = "http://domain.com/wp-content/plugins/buddypress/bp-forums/bbpress/";
</pre>
<p>change that line to</p>
<pre>
if( function_exists( 'get_current_site' ) ) {
	$current_site = get_current_site();
	$bb->wordpress_mu_primary_blog_id = $current_site->blog_id;
	$bb->uri = BP_PLUGIN_URL . '/buddypress/bp-forums/bbpress/';
} else
	$bb->uri = "http://domain.com/wp-content/plugins/buddypress/bp-forums/bbpress/";
</pre>
<hr />
<p><small>© Ron for <a href="http://wpmututorials.com">WordPress &quot;Must-Use&quot; Tutorials</a>, 2011. |
<a href="http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/">Permalink</a> |
<a href="http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/#comments">39 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/&title=Multiple BuddyPress Social Networks">del.icio.us</a>
<br/>
Post tags: <a href="http://wpmututorials.com/tag/buddypress/" rel="tag">buddypress</a>, <a href="http://wpmututorials.com/tag/mu-plugin/" rel="tag">mu-plugin</a>, <a href="http://wpmututorials.com/tag/multiple/" rel="tag">multiple</a><br/>
</small></p>
<p><strong>Check out <a href="http://wpebooks.com">WPeBooks.com</a> for multisite plugins & ebooks.</strong></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>Admin bar</title>
		<link>http://wpmututorials.com/news/new-features/admin-bar/</link>
		<comments>http://wpmututorials.com/news/new-features/admin-bar/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 14:00:00 +0000</pubDate>
		<dc:creator>andrea</dc:creator>
				<category><![CDATA[New Features]]></category>

		<guid isPermaLink="false">http://wpmututorials.com/?p=478</guid>
		<description><![CDATA[Coming up in 3.1 is the additional of the admin bar, similar to the one that runs on WordPress.com. Actually, it&#8217;s more than similar, they really did just pull it from wp.com and clean it up a bit. While I think it would drive me nuts on a single install, when you are running a [...]]]></description>
			<content:encoded><![CDATA[<p>Coming up in 3.1 is the additional of the admin bar, similar to the one that runs on WordPress.com. Actually, it&#8217;s more than similar, they really did just pull it from wp.com and clean it up a bit.</p>
<p>While I think it would drive me nuts on a single install, when you are running a network of sites, there&#8217;s a couple handy things that will make your job as a Super Admin that much more super. Kinda like added enhanced super powers. <img src='http://wpmututorials.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://wpmututorials.com/news/new-features/admin-bar/attachment/screenshot-network-dashboard-%e2%80%b9-amd64-local-blogs-%e2%80%94-wordpress-swiftfox/" rel="attachment wp-att-497"><img src="http://wpmututorials.com/files/2010/10/Screenshot-Network-Dashboard-‹-Amd64.local-Blogs-—-WordPress-Swiftfox.png" alt="" title="Screenshot-Network Dashboard ‹ Amd64.local Blogs — WordPress - Swiftfox" width="367" height="169" class="alignnone size-full wp-image-497" /></a></p>
<p>Now you, as Super Admin can easily access the site&#8217;s Dashboard, the site&#8217;s options if you need to edit something, or even mark the site as mature (keep out of public listings) or spam it.</p>
<p>There is also a Snack Menu which is a flyout of all the regular menu items in the backend of the site you are on. Old timers: note the choice of icon. <img src='http://wpmututorials.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<hr />
<p><small>© andrea for <a href="http://wpmututorials.com">WordPress &quot;Must-Use&quot; Tutorials</a>, 2010. |
<a href="http://wpmututorials.com/news/new-features/admin-bar/">Permalink</a> |
<a href="http://wpmututorials.com/news/new-features/admin-bar/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://wpmututorials.com/news/new-features/admin-bar/&title=Admin bar">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><strong>Check out <a href="http://wpebooks.com">WPeBooks.com</a> for multisite plugins & ebooks.</strong></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmututorials.com/news/new-features/admin-bar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Network Admin</title>
		<link>http://wpmututorials.com/news/new-features/network-admin/</link>
		<comments>http://wpmututorials.com/news/new-features/network-admin/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 14:00:14 +0000</pubDate>
		<dc:creator>andrea</dc:creator>
				<category><![CDATA[New Features]]></category>
		<category><![CDATA[changes]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[network admin]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[who moved my cheese]]></category>

		<guid isPermaLink="false">http://wpmututorials.com/?p=477</guid>
		<description><![CDATA[Ryan had the idea, I mused aloud it seemed like it made sense to me, and coming up in the next version of WordPress, everyone who has set up multisite will have the Super admin menu shuffled off into its own area called Network Admin. In terms of usability, this makes more sense than just [...]]]></description>
			<content:encoded><![CDATA[<p>Ryan had the idea, I mused aloud it seemed like it made sense to me, and coming up in the next version of WordPress, everyone who has set up multisite will have the Super admin menu shuffled off into its own area called Network Admin.</p>
<div id="attachment_481" class="wp-caption alignnone" style="width: 257px"><a href="http://wpmututorials.com/news/new-features/network-admin/attachment/network-admin-%e2%80%b9-amd64-local-blogs-%e2%80%94-wordpress_1287340531690/"><img src="http://wpmututorials.com/files/2010/10/Dashboard-‹-Amd64.local-Blogs-—-WordPress_1287340159728.png" alt="" title="Dashboard ‹ Amd64.local Blogs — WordPress_1287340159728" width="247" height="34" class="size-full wp-image-481" /></a><p class="wp-caption-text">Network Admin link in the upper right area of the WordPress dashboard</p></div>
<p>In terms of usability, this makes more sense than just an extra box on the left side wherever you are. As a separate admin area, it forces home the idea that the network itself is global and special. When you are in the Network Admin area, the link changes wording to say Site Admin to get back to the site you were on.</p>
<p>If you have a lot of plugins that add menu items to the Super Admin menu, they will now be their own top-level menu item in Network Admin. </p>
<div id="attachment_482" class="wp-caption alignnone" style="width: 422px"><a href="http://wpmututorials.com/files/2010/10/Network-Admin-‹-Amd64.local-Blogs-—-WordPress_1287340531690.png"><img src="http://wpmututorials.com/files/2010/10/Network-Admin-‹-Amd64.local-Blogs-—-WordPress_1287340531690.png" alt="" title="Network Admin ‹ Amd64.local Blogs — WordPress_1287340531690" width="412" height="244" class="size-full wp-image-482" /></a><p class="wp-caption-text">The new Network Admin area menus</p></div>
<p>Actually, I think this is rather cool, as now you could have whole sections of things pertaining to the entire network in their own handy menu area. Right now things are a little spotty for installed plugins and where the menu items show up. On my test install, some sub menu items that were under Super Admin show up under Settings or even Posts.</p>
<p>Plugin authors may want to do some testing here, especially if your plugin added submenus to the Super Admin menu.</p>
<p>Edit: and since I was looking at trunk, this has already changed. <img src='http://wpmututorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<hr />
<p><small>© andrea for <a href="http://wpmututorials.com">WordPress &quot;Must-Use&quot; Tutorials</a>, 2010. |
<a href="http://wpmututorials.com/news/new-features/network-admin/">Permalink</a> |
<a href="http://wpmututorials.com/news/new-features/network-admin/#comments">3 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://wpmututorials.com/news/new-features/network-admin/&title=Network Admin">del.icio.us</a>
<br/>
Post tags: <a href="http://wpmututorials.com/tag/changes/" rel="tag">changes</a>, <a href="http://wpmututorials.com/tag/multisite/" rel="tag">multisite</a>, <a href="http://wpmututorials.com/tag/network-admin/" rel="tag">network admin</a>, <a href="http://wpmututorials.com/tag/networks/" rel="tag">networks</a>, <a href="http://wpmututorials.com/tag/who-moved-my-cheese/" rel="tag">who moved my cheese</a><br/>
</small></p>
<p><strong>Check out <a href="http://wpebooks.com">WPeBooks.com</a> for multisite plugins & ebooks.</strong></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmututorials.com/news/new-features/network-admin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>2.7.1 released, and an overview</title>
		<link>http://wpmututorials.com/news/new-features/271-released-and-an-overview/</link>
		<comments>http://wpmututorials.com/news/new-features/271-released-and-an-overview/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 21:29:14 +0000</pubDate>
		<dc:creator>andrea</dc:creator>
				<category><![CDATA[New Features]]></category>
		<category><![CDATA[wordpress mu]]></category>
		<category><![CDATA[wordpressmu]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://wpmututorials.com/?p=203</guid>
		<description><![CDATA[WordPressMU 2.7.1 has just been released, and with it a few interesting new features. First off, in the Site Admin -&#62; Options menu, you can now choose to have new subscribers with no blog, get attached to a specific blog. They have been attached to the main blog, but some people have found that unwieldy. [...]]]></description>
			<content:encoded><![CDATA[<p>WordPressMU 2.7.1 has <a href="http://ocaoimh.ie/2009/04/21/wordpress-mu-271/">just been released</a>, and with it a few interesting new features.</p>
<p>First off, in the Site Admin -&gt; Options menu, you can now choose to have new subscribers with no blog, get attached to a specific blog. They have been attached to the main blog, but some people have found that unwieldy. Originally, they weren&#8217;t attached *anywhere* so they couldn&#8217;t do things like reset their own password because they had no backend to log in to. Go ahead and blame me for that tract ticket. <img src='http://wpmututorials.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Anyway, now you can make your own dashboard blog. Just fill in the name you want, and if it doesn&#8217;t already exist, it will be created. If you have subscribers on the main blog, they&#8217;ll be moved.</p>
<p>Under Plugins, the plugin install has been tweaked a little and works pretty smoothly. Viewable only by Site Admins, you can install plugins form the official repository or from a zip. You&#8217;ll need to enter your ftp credentials. This places plugins in the /plugins/ folder. If some files need to be moved elsewhere, you&#8217;ll still have to go in via ftp, ssh or your web control panel.</p>
<p>Also new here is an &#8220;activate sitewide&#8221; link. Any sitewide plugins will show up on a separate &#8220;active&#8221; list in a light blue. Regular plugins, as you may have seen, show up on an active list in green. Nice touch.</p>
<p>There&#8217;s a new menu item under Users called My Blog. This is a management page for all the blogs a users owns. And in this latest round, Viperbond&#8217;s Admin Bar has been removed, since I think it was really only there to give users a way to access other blogs they own. If you just upgrade &amp; overwrite, it may still stick around. (I&#8217;m seeing one report of this on twitter as I write this&#8230;. oo like a breaking news tweet&#8230;)</p>
<p>I noticed when running an earlier beta that the footer link updated to tell me there was a more recent version in trac. This is <em>not the same</em> as the Upgrade menu item in the sidebar. WPMU (and WP) has a &#8220;phone home&#8221; kind of deal where it reports back to check for new versions. I updated my beta install to another beta, but it hasn&#8217;t noticed the new release yet. I expect it will whenever the cron is run, so within 24 hours.</p>
<p>Auto update gives you the choice of updating to the latest release, or the latest from the trunk in trac. For reference, it&#8217;s the branches tag where all the real fun stuff has been going on, not trunk.</p>
<p>This release has taken a long time, mostly to fully straighten out issues with the plugin installer and to squash remaining bugs. Some people have worked really hard on this, so kudos to Donncha, Andy and anyone who helped out with trac tickets.</p>
<hr />
<p><small>© andrea for <a href="http://wpmututorials.com">WordPress &quot;Must-Use&quot; Tutorials</a>, 2009. |
<a href="http://wpmututorials.com/news/new-features/271-released-and-an-overview/">Permalink</a> |
<a href="http://wpmututorials.com/news/new-features/271-released-and-an-overview/#comments">6 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://wpmututorials.com/news/new-features/271-released-and-an-overview/&title=2.7.1 released, and an overview">del.icio.us</a>
<br/>
Post tags: <a href="http://wpmututorials.com/tag/wordpress-mu/" rel="tag">wordpress mu</a>, <a href="http://wpmututorials.com/tag/wordpressmu/" rel="tag">wordpressmu</a>, <a href="http://wpmututorials.com/tag/wpmu/" rel="tag">wpmu</a><br/>
</small></p>
<p><strong>Check out <a href="http://wpebooks.com">WPeBooks.com</a> for multisite plugins & ebooks.</strong></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmututorials.com/news/new-features/271-released-and-an-overview/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Small Optimization</title>
		<link>http://wpmututorials.com/basics/small-optimization/</link>
		<comments>http://wpmututorials.com/basics/small-optimization/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 04:59:53 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[New Features]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://wpmututorials.com/?p=152</guid>
		<description><![CDATA[If you have been running WorPress MU for a while, you may not have seen some of the recent additions to values defined in wp-config.php. For single site WPMU installs, as of 2.6.1, you can save a couple of database and/or internal cache lookups by adding 3 defines to your wp-config.php: define('DOMAIN_CURRENT_SITE', 'domain.tld' ); define('PATH_CURRENT_SITE', [...]]]></description>
			<content:encoded><![CDATA[<p>If you have been running WorPress MU for a while, you may not have seen some of the recent additions to values defined in wp-config.php. For single site WPMU installs, as of 2.6.1, you can save a couple of database and/or internal cache lookups by adding 3 defines to your wp-config.php:<br />
<code><br />
define('DOMAIN_CURRENT_SITE', 'domain.tld' );<br />
define('PATH_CURRENT_SITE', '/' );<br />
define('BLOGID_CURRENT_SITE', '1' );<br />
</code></p>
<p>Substitute your WPMU install&#8217;s domain and path for domain.tld and /. It is a small optimization, but every little bit helps.</p>
<hr />
<p><small>© Ron for <a href="http://wpmututorials.com">WordPress &quot;Must-Use&quot; Tutorials</a>, 2009. |
<a href="http://wpmututorials.com/basics/small-optimization/">Permalink</a> |
<a href="http://wpmututorials.com/basics/small-optimization/#comments">5 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://wpmututorials.com/basics/small-optimization/&title=Small Optimization">del.icio.us</a>
<br/>
Post tags: <a href="http://wpmututorials.com/tag/config/" rel="tag">config</a>, <a href="http://wpmututorials.com/tag/optimization/" rel="tag">optimization</a><br/>
</small></p>
<p><strong>Check out <a href="http://wpebooks.com">WPeBooks.com</a> for multisite plugins & ebooks.</strong></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmututorials.com/basics/small-optimization/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WPMU Version 2.7 is released &#8211; an overview &amp; upgrade tips</title>
		<link>http://wpmututorials.com/news/wpmu-version-27-is-released-an-overview-upgrade-tips/</link>
		<comments>http://wpmututorials.com/news/wpmu-version-27-is-released-an-overview-upgrade-tips/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 00:09:43 +0000</pubDate>
		<dc:creator>andrea</dc:creator>
				<category><![CDATA[New Features]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[2.7]]></category>
		<category><![CDATA[admin bar]]></category>
		<category><![CDATA[bbpress]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[releases]]></category>
		<category><![CDATA[upgrading]]></category>

		<guid isPermaLink="false">http://wpmututorials.com/?p=146</guid>
		<description><![CDATA[Earlier this week, WordPressMU 2.7 was officially released, and the crowds rejoiced and broke out into song. There&#8217;s a whole pile of new things, and if you can&#8217;t remember what was new for regular WordPress 2.7, here&#8217;s a brief list: brand new admin area redesign with menu down the left side sticky posts! new dashboard [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this week, <a href="http://ocaoimh.ie/2009/01/28/wordpress-mu-27/">WordPressMU 2.7 was officially released</a>, and the crowds rejoiced and broke out into song. There&#8217;s a whole pile of new things, and if you can&#8217;t remember what was new for regular WordPress 2.7, here&#8217;s a brief list:</p>
<ul>
<li>brand new admin area redesign with menu down the left side</li>
<li>sticky posts!</li>
<li>new dashboard features</li>
<li>modular write post area</li>
<li>quick edit for mass edits on bulk posts</li>
<li>reply to comments from admin</li>
<li>threaded &amp; paginated comments (if supported in theme)</li>
<li>add new media without adding a post</li>
</ul>
<p>Well, that&#8217;s all fair and good, but what about the MU side of things? Anything new there, Andrea, you wonder? Oh plenty of goodies, I say.</p>
<ul>
<li>ViperBond&#8217;s admin bar is now included. Personally, I think it&#8217;s pretty redundant on the backend, but you can make it show on the front when users are logged in. This makes the mu-admin bar plugin obsolete.</li>
<li>Users can add new users directly to their blog. Note the * next to &#8220;Add User&#8221; on the menu. This will lead you straight to the Site Admin menu where you can turn this option on. Otherwise, users won&#8217;t see it.</li>
<li>you can add new plugins formt he backend. This is *only* viewable by site admins, and requires ftp details to be typed in. Also, it just searches the official plugin repositpory, and handles regular plugins, not those in the mu-plugins folder.</li>
<li>There&#8217;s a spot to add an Admin Notice Feed in the dashboard. This came in an earlier version, but I&#8217;m noting it now.</li>
<li>In the new config file, there&#8217;s a few choice things you can now define. Give it a read, see what you can see. <img src='http://wpmututorials.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Looking at trac, some have been there since August, but not many people have noticed.</li>
<li>While it doesn&#8217;t work from the beta version, the auto-upgrade is *supposed* to work from 2.7 on, so you can upgrade MU automatically from the backend.</li>
</ul>
<p>So, what&#8217;s the catch, then? Well none, really, but from poking around, here&#8217;s some issues you may encounter when you upgrade.</p>
<ul>
<li>if using bbpress or buddypress, you&#8217;ll have to upgrade those too</li>
<li>multi-db from WPMUdev premium hasn&#8217;t been updated yet, so wait for that</li>
<li>there&#8217;s a few new trac tickets in case you want to wait</li>
<li>the upper left admin link on ViperBond&#8217;s menu bar doesn&#8217;t switch between blogs well enough</li>
</ul>
<p>How to upgrade to 2.7 &#8211; easy enough, just keep your .htaccess &amp; wp-config.php file, as well as the entire wp-content directory and sub-directories. Blow away all the rest. Upload the new fresh files. Compare the wp-config-sample.php with your own config file and add any new lines.</p>
<p>Yes, you can just overwrite the old files, but some ftp program and/or servers are a bit sketchy about it and it may not fully take. Trying to troubleshoot an error that was ultimately caused by one small file not getting updated is not my idea of a good time and I&#8217;m suggesting you may not like it either. <img src='http://wpmututorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you are upgrading from a version previous to 1.5, I suggest you upgrade to that version *first*, then work out any kinks and continue on. Version 1.5 has the &#8220;old&#8221; new redesign (light blue with orange), and if you can spare your users having to see two admin area iterations, it helps. One big thing to note if upgrading from that far back, is the versioning jumps from 1.5 to 2.6 to line up version numbers and have less confusion. For more details, <a href="http://codex.wordpress.org/Upgrading_WPMU">check the Codex on Upgrading WPMU</a>. (Find any issues with that? Let me know, I&#8217;ll fix it.)</p>
<hr />
<p><small>© andrea for <a href="http://wpmututorials.com">WordPress &quot;Must-Use&quot; Tutorials</a>, 2009. |
<a href="http://wpmututorials.com/news/wpmu-version-27-is-released-an-overview-upgrade-tips/">Permalink</a> |
<a href="http://wpmututorials.com/news/wpmu-version-27-is-released-an-overview-upgrade-tips/#comments">9 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://wpmututorials.com/news/wpmu-version-27-is-released-an-overview-upgrade-tips/&title=WPMU Version 2.7 is released &#8211; an overview &amp; upgrade tips">del.icio.us</a>
<br/>
Post tags: <a href="http://wpmututorials.com/tag/27/" rel="tag">2.7</a>, <a href="http://wpmututorials.com/tag/admin-bar/" rel="tag">admin bar</a>, <a href="http://wpmututorials.com/tag/bbpress/" rel="tag">bbpress</a>, <a href="http://wpmututorials.com/tag/buddypress/" rel="tag">buddypress</a>, <a href="http://wpmututorials.com/tag/releases/" rel="tag">releases</a>, <a href="http://wpmututorials.com/tag/upgrading/" rel="tag">upgrading</a><br/>
</small></p>
<p><strong>Check out <a href="http://wpebooks.com">WPeBooks.com</a> for multisite plugins & ebooks.</strong></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmututorials.com/news/wpmu-version-27-is-released-an-overview-upgrade-tips/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Users adding users in WPMU 2.7</title>
		<link>http://wpmututorials.com/news/new-features/users-adding-users-in-wpmu-27/</link>
		<comments>http://wpmututorials.com/news/new-features/users-adding-users-in-wpmu-27/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 19:01:29 +0000</pubDate>
		<dc:creator>andrea</dc:creator>
				<category><![CDATA[New Features]]></category>

		<guid isPermaLink="false">http://wpmututorials.com/?p=141</guid>
		<description><![CDATA[WordPressMU 2.7 isn&#8217;t out yet*, but Ron &#38; I have been running the trunk both locally and on a small site in development. A handy new feature is built right in. Before, if a user wanted to add another user to their blog, they had to be directed to the signup page, go through the [...]]]></description>
			<content:encoded><![CDATA[<p>WordPressMU 2.7 isn&#8217;t out yet*, but Ron &amp; I have been running the trunk both locally and on a small site in development. A handy new feature is built right in.</p>
<p>Before, if a user wanted to add another user to their blog, they had to be directed to the signup page, go through the motions there, and then wait for the blog owner to &#8220;Add user from Community&#8221;. What a process! It confuses a lot of newbies.</p>
<p>In 2.7, by default this is turned off. If you do select &#8220;Add New User&#8221; under the User menu, it has a * next to it and will redirect the site Admin to the Site Admin Options menu where they can enable this. &#8220;Allow blog administrators to add new users to their blog via the Users-&gt;Add New page.&#8221; is what it says.</p>
<p>So if you&#8217;ve been struggling with this, or have been waiting for better versions of any of the &#8220;add user to blog&#8221; widgets out there, it will definitely be easier come release day.</p>
<blockquote><p>* Note: I know many people are waiting impatiently for the official WPMU 2.7 version. Want it out faster? <a href="http://trac.mu.wordpress.org/browser/trunk">Grab a copy out of trac</a> and test it locally or on a development site. File bug tickets if you find any. Keep in mind there&#8217;s only ONE developer working on it.</p></blockquote>
<hr />
<p><small>© andrea for <a href="http://wpmututorials.com">WordPress &quot;Must-Use&quot; Tutorials</a>, 2009. |
<a href="http://wpmututorials.com/news/new-features/users-adding-users-in-wpmu-27/">Permalink</a> |
<a href="http://wpmututorials.com/news/new-features/users-adding-users-in-wpmu-27/#comments">5 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://wpmututorials.com/news/new-features/users-adding-users-in-wpmu-27/&title=Users adding users in WPMU 2.7">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><strong>Check out <a href="http://wpebooks.com">WPeBooks.com</a> for multisite plugins & ebooks.</strong></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmututorials.com/news/new-features/users-adding-users-in-wpmu-27/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WPMU + Buddypress + BBPress = hat trick of awesome</title>
		<link>http://wpmututorials.com/news/wpmu-buddypress-bbpress-hat-trick-of-awesome/</link>
		<comments>http://wpmututorials.com/news/wpmu-buddypress-bbpress-hat-trick-of-awesome/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 14:21:41 +0000</pubDate>
		<dc:creator>andrea</dc:creator>
				<category><![CDATA[New Features]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[buddypress]]></category>

		<guid isPermaLink="false">http://wpmututorials.com/?p=138</guid>
		<description><![CDATA[Whoa, I can&#8217;t believe I overlooked this news. (Actually, yes I can &#8211; Ron was sick, my &#8220;baby&#8221; turned eight years old, and now I&#8217;m sick). BuddyPress officially released a public beta. You can hear everyone&#8217;s buddy Andy discuss the project on WordPress Weekly. And then BBPress reached a milestone. WPMU 2.7 still hasn&#8217;t been [...]]]></description>
			<content:encoded><![CDATA[<p>Whoa, I can&#8217;t believe I overlooked this news. (Actually, yes I can &#8211; Ron was sick, my &#8220;baby&#8221; turned eight years old, and now I&#8217;m sick).</p>
<p><a href="http://buddypress.org/">BuddyPress</a> officially released a public beta. You can hear everyone&#8217;s buddy <a href="http://weblogtoolscollection.com/archives/2008/12/20/wordpress-gone-social-buddypress/">Andy discuss the project on WordPress Weekly</a>.</p>
<p>And then <a href="http://bbpress.org">BBPress</a> reached a milestone.</p>
<p><a href="http://mu.wordpress.org" title="Official WPMU site">WPMU</a> 2.7 still hasn&#8217;t been released, but the trunk is not as buggy as you might expect.</p>
<p>And, reported by a few people you can run them all *together*.</p>
<p>I think I need to go lie down.</p>
<p>Update: The Revered Jim (who I&#8217;m sure never sleeps) has <a href="http://bavatuesdays.com/integrating-wpmu-buddypress-and-bbpress/">edupunked this all into submission and whipped up a *tutorial* for it</a>.</p>
<hr />
<p><small>© andrea for <a href="http://wpmututorials.com">WordPress &quot;Must-Use&quot; Tutorials</a>, 2008. |
<a href="http://wpmututorials.com/news/wpmu-buddypress-bbpress-hat-trick-of-awesome/">Permalink</a> |
<a href="http://wpmututorials.com/news/wpmu-buddypress-bbpress-hat-trick-of-awesome/#comments">5 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://wpmututorials.com/news/wpmu-buddypress-bbpress-hat-trick-of-awesome/&title=WPMU + Buddypress + BBPress = hat trick of awesome">del.icio.us</a>
<br/>
Post tags: <a href="http://wpmututorials.com/tag/buddypress/" rel="tag">buddypress</a><br/>
</small></p>
<p><strong>Check out <a href="http://wpebooks.com">WPeBooks.com</a> for multisite plugins & ebooks.</strong></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmututorials.com/news/wpmu-buddypress-bbpress-hat-trick-of-awesome/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Database structure &#8211; updated for 1.3</title>
		<link>http://wpmututorials.com/basics/database-structure-updated-for-13/</link>
		<comments>http://wpmututorials.com/basics/database-structure-updated-for-13/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 13:38:12 +0000</pubDate>
		<dc:creator>andrea</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[New Features]]></category>

		<guid isPermaLink="false">http://wpmututorials.com/basics/database-structure-updated-for-13/</guid>
		<description><![CDATA[As an addendum to this post, there&#8217;s a few extra tables in WPMU 1.3, which should officially be released any day now. wp_1_terms wp_1_term_relationships wp_1_term_taxonomy There are all related to the internal tag system now available in WordPress 2.3. You may also have noted that MU is now following a similar version number. No official [...]]]></description>
			<content:encoded><![CDATA[<p>As an addendum to <a href="http://wpmututorials.com/basics/database-structure/">this post</a>, there&#8217;s a few extra tables in WPMU 1.3, which should officially be released any day now.</p>
<p>wp_1_terms<br />
wp_1_term_relationships<br />
wp_1_term_taxonomy</p>
<p>There are all related to the internal tag system now available in WordPress 2.3. You may also have noted that MU is now following a similar version number. No official word on how this can be used for sitewide tags, but I know some smart people are in the middle of figuring this out.</p>
<p>I am also working on a database diagram for the next post in this series. My skills are a bit rusty, but the good thing about database theory is that not much changes in twenty years. <img src='http://wpmututorials.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Just the programs involved.</p>
<hr />
<p><small>© andrea for <a href="http://wpmututorials.com">WordPress &quot;Must-Use&quot; Tutorials</a>, 2007. |
<a href="http://wpmututorials.com/basics/database-structure-updated-for-13/">Permalink</a> |
<a href="http://wpmututorials.com/basics/database-structure-updated-for-13/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://wpmututorials.com/basics/database-structure-updated-for-13/&title=Database structure &#8211; updated for 1.3">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><strong>Check out <a href="http://wpebooks.com">WPeBooks.com</a> for multisite plugins & ebooks.</strong></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmututorials.com/basics/database-structure-updated-for-13/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

