<?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: Testing on Mulitple Versions</title>
	<atom:link href="http://wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/feed/" rel="self" type="application/rss+xml" />
	<link>http://wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 10 Sep 2010 12:46:37 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: WordPress Weekly Episode 6 &#124; Jeffro2pt0</title>
		<link>http://wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/comment-page-1/#comment-485</link>
		<dc:creator>WordPress Weekly Episode 6 &#124; Jeffro2pt0</dc:creator>
		<pubDate>Fri, 25 Apr 2008 07:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/2008/02/05/testing-on-mulitple-versions/#comment-485</guid>
		<description>[...] http://www.wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/" rel="nofollow">http://www.wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Rickmann</title>
		<link>http://wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/comment-page-1/#comment-484</link>
		<dc:creator>Andrew Rickmann</dc:creator>
		<pubDate>Wed, 27 Feb 2008 12:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/2008/02/05/testing-on-mulitple-versions/#comment-484</guid>
		<description>Thanks Vix,

I never thought to change the URI in the plugin, probably because I was using some manually included absolute uris in the theme I was testing, so that is why I used the .htaccess rule.

In most cases though your code should do the trick and it means there is only one thing to change to put it back again.</description>
		<content:encoded><![CDATA[<p>Thanks Vix,</p>
<p>I never thought to change the URI in the plugin, probably because I was using some manually included absolute uris in the theme I was testing, so that is why I used the .htaccess rule.</p>
<p>In most cases though your code should do the trick and it means there is only one thing to change to put it back again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vix</title>
		<link>http://wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/comment-page-1/#comment-483</link>
		<dc:creator>Vix</dc:creator>
		<pubDate>Wed, 27 Feb 2008 10:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/2008/02/05/testing-on-mulitple-versions/#comment-483</guid>
		<description>I had never considered sharing my wp-content folder across multiple installations. Thanks for the tip!

In addition to filtering out the theme_root, I also had to filter the theme_root_uri using:
&lt;code&gt;add_filter(&#039;theme_root_uri&#039;, &#039;theme_root_uri_intercept&#039;);
function theme_root_uri_intercept($root) {
	return &quot;http://localhost/wordpress-files/wp-content/themes&quot;;
}&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I had never considered sharing my wp-content folder across multiple installations. Thanks for the tip!</p>
<p>In addition to filtering out the theme_root, I also had to filter the theme_root_uri using:<br />
<code>add_filter('theme_root_uri', 'theme_root_uri_intercept');<br />
function theme_root_uri_intercept($root) {<br />
	return "http://localhost/wordpress-files/wp-content/themes";<br />
}</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Rickmann</title>
		<link>http://wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/comment-page-1/#comment-482</link>
		<dc:creator>Andrew Rickmann</dc:creator>
		<pubDate>Tue, 19 Feb 2008 22:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/2008/02/05/testing-on-mulitple-versions/#comment-482</guid>
		<description>Thanks, that&#039;s great info.

I&#039;ve found the following on the Microsoft site which seems to be what you were referring to.

http://www.microsoft.com/technet/sysinternals/FileAndDisk/Junction.mspx</description>
		<content:encoded><![CDATA[<p>Thanks, that&#8217;s great info.</p>
<p>I&#8217;ve found the following on the Microsoft site which seems to be what you were referring to.</p>
<p><a href="http://www.microsoft.com/technet/sysinternals/FileAndDisk/Junction.mspx" rel="nofollow">http://www.microsoft.com/technet/sysinternals/FileAndDisk/Junction.mspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ThaNerd</title>
		<link>http://wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/comment-page-1/#comment-481</link>
		<dc:creator>ThaNerd</dc:creator>
		<pubDate>Tue, 19 Feb 2008 22:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/2008/02/05/testing-on-mulitple-versions/#comment-481</guid>
		<description>On any LAMP (Linux+Apache+MySql+PHP), you&#039;d just have created a symbolic link... Say you have two websites with Document root respectively /var/www/first and /var/www/second, and a &quot;base&quot; dir with all plugins in /var/www/base/wp-content/...

You&#039;d do this:
cd /var/www/first/wp-content
rm -r plugins themes
ln -s plugins /var/www/base/wp-content/plugins/
ln -s themes /var/www/base/wp-content/themes/
cd ../../second/wp-content/
rm -r plugins themes
ln -s plugins /var/www/base/wp-content/plugins/
ln -s themes /var/www/base/wp-content/themes/

I didn&#039;t use Windows in a while, but i *know* that NTFS filesystems can handle so-called &quot;symbolic links&quot;, but the feature is not extensively documented, and there is no tool to create them in a default windows setup. However, a compagny named &quot;Sysinternals&quot; had created such a tool and distributed it as a freeware. Meanwhile, SysInternals has been bought by Microsoft, but a few months ago, i know one could still download those tools from microsoft website for free.

Just Google it :D</description>
		<content:encoded><![CDATA[<p>On any LAMP (Linux+Apache+MySql+PHP), you&#8217;d just have created a symbolic link&#8230; Say you have two websites with Document root respectively /var/www/first and /var/www/second, and a &#8220;base&#8221; dir with all plugins in /var/www/base/wp-content/&#8230;</p>
<p>You&#8217;d do this:<br />
cd /var/www/first/wp-content<br />
rm -r plugins themes<br />
ln -s plugins /var/www/base/wp-content/plugins/<br />
ln -s themes /var/www/base/wp-content/themes/<br />
cd ../../second/wp-content/<br />
rm -r plugins themes<br />
ln -s plugins /var/www/base/wp-content/plugins/<br />
ln -s themes /var/www/base/wp-content/themes/</p>
<p>I didn&#8217;t use Windows in a while, but i *know* that NTFS filesystems can handle so-called &#8220;symbolic links&#8221;, but the feature is not extensively documented, and there is no tool to create them in a default windows setup. However, a compagny named &#8220;Sysinternals&#8221; had created such a tool and distributed it as a freeware. Meanwhile, SysInternals has been bought by Microsoft, but a few months ago, i know one could still download those tools from microsoft website for free.</p>
<p>Just Google it :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Weekly Episode 6 &#187; Jeffro2pt0</title>
		<link>http://wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/comment-page-1/#comment-480</link>
		<dc:creator>WordPress Weekly Episode 6 &#187; Jeffro2pt0</dc:creator>
		<pubDate>Sat, 16 Feb 2008 07:05:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-fun.co.uk/2008/02/05/testing-on-mulitple-versions/#comment-480</guid>
		<description>[...] http://www.wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/" rel="nofollow">http://www.wp-fun.co.uk/2008/02/09/testing-on-mulitple-versions/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
