<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 2.6 RC1 is out!</title>
	<atom:link href="http://wpmu.org/26-rc1/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpmu.org/26-rc1/</link>
	<description>WordPress, Multisite &#38; BuddyPress plugins, themes, news and reviews and special offers from the team at WPMU.org</description>
	<lastBuildDate>Mon, 21 May 2012 07:16:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: wangjel</title>
		<link>http://wpmu.org/26-rc1/#comment-79</link>
		<dc:creator>wangjel</dc:creator>
		<pubDate>Fri, 25 Jul 2008 08:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://wpmu.org/?p=49#comment-79</guid>
		<description>thanks i did :d</description>
		<content:encoded><![CDATA[<p>thanks i did :d</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://wpmu.org/26-rc1/#comment-73</link>
		<dc:creator>James</dc:creator>
		<pubDate>Fri, 25 Jul 2008 03:44:25 +0000</pubDate>
		<guid isPermaLink="false">http://wpmu.org/?p=49#comment-73</guid>
		<description>@wangjel if you download WPMU I&#039;d recommend you read the readme file</description>
		<content:encoded><![CDATA[<p>@wangjel if you download WPMU I&#8217;d recommend you read the readme file</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wangjel</title>
		<link>http://wpmu.org/26-rc1/#comment-72</link>
		<dc:creator>wangjel</dc:creator>
		<pubDate>Fri, 25 Jul 2008 03:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://wpmu.org/?p=49#comment-72</guid>
		<description>hello first time here
can i upgrade as wordpress.........just upload and &quot;overwrite&quot;?</description>
		<content:encoded><![CDATA[<p>hello first time here<br />
can i upgrade as wordpress&#8230;&#8230;&#8230;just upload and &#8220;overwrite&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrius</title>
		<link>http://wpmu.org/26-rc1/#comment-18</link>
		<dc:creator>andrius</dc:creator>
		<pubDate>Thu, 17 Jul 2008 05:10:52 +0000</pubDate>
		<guid isPermaLink="false">http://wpmu.org/?p=49#comment-18</guid>
		<description>Yes, I can write a bit more &#039;bout this.</description>
		<content:encoded><![CDATA[<p>Yes, I can write a bit more &#8217;bout this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://wpmu.org/26-rc1/#comment-17</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 17 Jul 2008 04:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://wpmu.org/?p=49#comment-17</guid>
		<description>Very nice! If you;d like to write up a bit about the site here you;re more than welcome: http://wpmu.org/contribute/</description>
		<content:encoded><![CDATA[<p>Very nice! If you;d like to write up a bit about the site here you;re more than welcome: <a href="http://wpmu.org/contribute/" rel="nofollow">http://wpmu.org/contribute/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrius</title>
		<link>http://wpmu.org/26-rc1/#comment-16</link>
		<dc:creator>Andrius</dc:creator>
		<pubDate>Thu, 17 Jul 2008 04:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://wpmu.org/?p=49#comment-16</guid>
		<description>sorry, some code was trimed.</description>
		<content:encoded><![CDATA[<p>sorry, some code was trimed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrius</title>
		<link>http://wpmu.org/26-rc1/#comment-15</link>
		<dc:creator>Andrius</dc:creator>
		<pubDate>Thu, 17 Jul 2008 04:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://wpmu.org/?p=49#comment-15</guid>
		<description>That&#039;s custom solution. I developed it after I find out that almost everything is prepared for this. As there is table &quot;wp_site&quot;. And table &quot;wp_blogs&quot; is with fields &quot;site_id&quot;. So I just joined these things.

For domains administration I&#039;am using &quot;MU Multi-Site&quot; plugin.
http://private.lt/demo.jpg

Basicly only small modifications is needed:

Additional function in my wpmu-functions.php:
&lt;em&gt;
function get_sites ($site_id = NULL) {
	global $wpdb;
	if (!$site_id):
		return $wpdb-&gt;get_results(&quot;SELECT * FROM $wpdb-&gt;site WHERE public = &#039;1&#039;&quot;, ARRAY_A);
	else:
		return $wpdb-&gt;get_row(&quot;SELECT * FROM $wpdb-&gt;site WHERE id = $site_id&quot;, ARRAY_A);
	endif;
}
&lt;/em&gt;

wp-signup.php:
&lt;em&gt;
	print &#039;.&#039;;
	foreach(get_sites() as $site):
		print &#039;&#039;.$site[&#039;domain&#039;].&#039;&#039;;
	endforeach;
	print &#039;&#039;;
&lt;/em&gt;

Hmm, maybe thats all..? I&#039;m not sure :-)</description>
		<content:encoded><![CDATA[<p>That&#8217;s custom solution. I developed it after I find out that almost everything is prepared for this. As there is table &#8220;wp_site&#8221;. And table &#8220;wp_blogs&#8221; is with fields &#8220;site_id&#8221;. So I just joined these things.</p>
<p>For domains administration I&#8217;am using &#8220;MU Multi-Site&#8221; plugin.<br />
<a href="http://private.lt/demo.jpg" rel="nofollow">http://private.lt/demo.jpg</a></p>
<p>Basicly only small modifications is needed:</p>
<p>Additional function in my wpmu-functions.php:<br />
<em><br />
function get_sites ($site_id = NULL) {<br />
	global $wpdb;<br />
	if (!$site_id):<br />
		return $wpdb-&gt;get_results(&#8220;SELECT * FROM $wpdb-&gt;site WHERE public = &#8217;1&#8242;&#8221;, ARRAY_A);<br />
	else:<br />
		return $wpdb-&gt;get_row(&#8220;SELECT * FROM $wpdb-&gt;site WHERE id = $site_id&#8221;, ARRAY_A);<br />
	endif;<br />
}<br />
</em></p>
<p>wp-signup.php:<br />
<em><br />
	print &#8216;.&#8217;;<br />
	foreach(get_sites() as $site):<br />
		print &#8221;.$site['domain'].&#8221;;<br />
	endforeach;<br />
	print &#8221;;<br />
</em></p>
<p>Hmm, maybe thats all..? I&#8217;m not sure :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://wpmu.org/26-rc1/#comment-14</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 17 Jul 2008 04:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://wpmu.org/?p=49#comment-14</guid>
		<description>Nice... and good question! Are you using a particular plugin or a custom solution that you have developed?</description>
		<content:encoded><![CDATA[<p>Nice&#8230; and good question! Are you using a particular plugin or a custom solution that you have developed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrius</title>
		<link>http://wpmu.org/26-rc1/#comment-13</link>
		<dc:creator>Andrius</dc:creator>
		<pubDate>Thu, 17 Jul 2008 04:12:09 +0000</pubDate>
		<guid isPermaLink="false">http://wpmu.org/?p=49#comment-13</guid>
		<description>Hi, I am an owner of private.lt. And as u can see, during registration u can choose from few subdomains. I found this easy to implement, so I&#039;m intrested when this will be implemented in official release. So I will not need to upgrade my code after every new release :-)</description>
		<content:encoded><![CDATA[<p>Hi, I am an owner of private.lt. And as u can see, during registration u can choose from few subdomains. I found this easy to implement, so I&#8217;m intrested when this will be implemented in official release. So I will not need to upgrade my code after every new release :-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

