<?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: XCache Object Cache Plugin for WordPress 2.5+</title>
	<atom:link href="http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/feed" rel="self" type="application/rss+xml" />
	<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
	<description>WordPress, web development, and world domination.</description>
	<lastBuildDate>Fri, 19 Mar 2010 16:48:33 -0400</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dougal</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-170071</link>
		<dc:creator>Dougal</dc:creator>
		<pubDate>Tue, 09 Mar 2010 20:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-170071</guid>
		<description>Sorry about that. For some reason, the Drain Hole plugin seems to deactivate itself from time to time. Check again, you should see the download link now.</description>
		<content:encoded><![CDATA[<p>Sorry about that. For some reason, the Drain Hole plugin seems to deactivate itself from time to time. Check again, you should see the download link now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bram</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-170070</link>
		<dc:creator>bram</dc:creator>
		<pubDate>Tue, 09 Mar 2010 19:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-170070</guid>
		<description>Hi, I couldn&#039;t find the link to download the plugin it shows &quot;[drain file 16 show default_show]&quot; instead.

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi, I couldn&#8217;t find the link to download the plugin it shows &#8220;[drain file 16 show default_show]&#8221; instead.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mad Max</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-169297</link>
		<dc:creator>Mad Max</dc:creator>
		<pubDate>Mon, 14 Dec 2009 17:24:49 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-169297</guid>
		<description>I&#039;ve found the problem. Don&#039;t know why and don&#039;t know where, WP adds &quot;users&quot;,&quot;userlogins&quot;, &quot;usermeta&quot; to the &quot;global_groups&quot; array and so your plugin store those data with an empty prefix . So, when you run multiple WP on multiple virtualhosts on the same machine, you&#039;re not able to have 2 admin user (or users with the same login) accesses cached at the same time.  &quot;Global_groups&quot; (necessary on a WPMU installation that shares authentication parametrs between sub-blogs)  should be empty in this case.
As a workaround i&#039;ve patched your code from
&lt;code&gt;
function wp_cache_add_global_groups( $groups ) {
	global $wp_object_cache;
	$wp_object_cache-&gt;add_global_groups($groups);
}
&lt;/code&gt;
to
&lt;code&gt;
function wp_cache_add_global_groups( $groups ) {
	global $wp_object_cache;
	return;
	//$wp_object_cache-&gt;add_global_groups($groups);
}
&lt;/code&gt;
It resolves my issue but don&#039;t know if this works on a WPMU installation also (as you manually add global groups at WP_Object_Cache object creation.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve found the problem. Don&#8217;t know why and don&#8217;t know where, WP adds &#8220;users&#8221;,&#8221;userlogins&#8221;, &#8220;usermeta&#8221; to the &#8220;global_groups&#8221; array and so your plugin store those data with an empty prefix . So, when you run multiple WP on multiple virtualhosts on the same machine, you&#8217;re not able to have 2 admin user (or users with the same login) accesses cached at the same time.  &#8220;Global_groups&#8221; (necessary on a WPMU installation that shares authentication parametrs between sub-blogs)  should be empty in this case.<br />
As a workaround i&#8217;ve patched your code from<br />
<code><br />
function wp_cache_add_global_groups( $groups ) {<br />
	global $wp_object_cache;<br />
	$wp_object_cache-&gt;add_global_groups($groups);<br />
}<br />
</code><br />
to<br />
<code><br />
function wp_cache_add_global_groups( $groups ) {<br />
	global $wp_object_cache;<br />
	return;<br />
	//$wp_object_cache-&gt;add_global_groups($groups);<br />
}<br />
</code><br />
It resolves my issue but don&#8217;t know if this works on a WPMU installation also (as you manually add global groups at WP_Object_Cache object creation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mad max</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-169277</link>
		<dc:creator>mad max</dc:creator>
		<pubDate>Sat, 12 Dec 2009 14:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-169277</guid>
		<description>Only one note: if I clear cache content fromXcache admin panel, WP admin access works again.</description>
		<content:encoded><![CDATA[<p>Only one note: if I clear cache content fromXcache admin panel, WP admin access works again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mad max</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-169276</link>
		<dc:creator>mad max</dc:creator>
		<pubDate>Sat, 12 Dec 2009 14:33:52 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-169276</guid>
		<description>Hi, i&#039;m using this plugin on WP 2.8.6 and it seems to work very well, lowering query numbers to a 1/3  factor (from about 60 to about 20). But I notice a strance behaviour: admin password is not recognized at all and i must reset it to obtain admin access again. With all other users, there are no problems. 
Can someone point me in the right direction to resolve this issue?

Thanx!</description>
		<content:encoded><![CDATA[<p>Hi, i&#8217;m using this plugin on WP 2.8.6 and it seems to work very well, lowering query numbers to a 1/3  factor (from about 60 to about 20). But I notice a strance behaviour: admin password is not recognized at all and i must reset it to obtain admin access again. With all other users, there are no problems.<br />
Can someone point me in the right direction to resolve this issue?</p>
<p>Thanx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Server Reconfig</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-169195</link>
		<dc:creator>Server Reconfig</dc:creator>
		<pubDate>Fri, 13 Nov 2009 21:49:05 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-169195</guid>
		<description>[...] used WP Super Cache and W3 Total Cache. I&#8217;ve used XCache for PHP code caching, and for my WordPress object cache. I&#8217;ve configured Apache to set caching headers for static files using mod_expires to reduce [...]</description>
		<content:encoded><![CDATA[<p>[...] used WP Super Cache and W3 Total Cache. I&#8217;ve used XCache for <acronym title='Php Hypertext Processor'><span class='caps'>PHP</span></acronym> code caching, and for my WordPress object cache. I&#8217;ve configured Apache to set caching headers for static files using mod_expires to reduce [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: watch movies</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-168331</link>
		<dc:creator>watch movies</dc:creator>
		<pubDate>Tue, 22 Sep 2009 09:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-168331</guid>
		<description>Hi, is this working with wordpress 8.4 

thanks.</description>
		<content:encoded><![CDATA[<p>Hi, is this working with wordpress 8.4 </p>
<p>thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ftf</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-167783</link>
		<dc:creator>ftf</dc:creator>
		<pubDate>Sun, 30 Aug 2009 15:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-167783</guid>
		<description>I know this post is a year old, but it&#039;s the best/most recent plug-in I could find for using xcache with WP.  I just installed it for WP 2.8.4 and it appears to be working great.  I don&#039;t quite understand how WP recognizes/uses the plug-in just by uploading the file to the wp-contents folder, but I&#039;m glad it does.  Thank you for sharing your updated plug-in.</description>
		<content:encoded><![CDATA[<p>I know this post is a year old, but it&#8217;s the best/most recent plug-in I could find for using xcache with WP.  I just installed it for WP 2.8.4 and it appears to be working great.  I don&#8217;t quite understand how WP recognizes/uses the plug-in just by uploading the file to the wp-contents folder, but I&#8217;m glad it does.  Thank you for sharing your updated plug-in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Utilizing Object Cache Using xCache &#124; WPVita</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-167427</link>
		<dc:creator>Utilizing Object Cache Using xCache &#124; WPVita</dc:creator>
		<pubDate>Thu, 06 Aug 2009 17:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-167427</guid>
		<description>[...] You can download the Object Cache WordPress Plugin here. [...]</description>
		<content:encoded><![CDATA[<p>[...] You can download the Object Cache WordPress Plugin here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hung</title>
		<link>http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25/comment-page-2#comment-165866</link>
		<dc:creator>Hung</dc:creator>
		<pubDate>Sat, 10 Jan 2009 06:47:20 +0000</pubDate>
		<guid isPermaLink="false">http://dougal.gunters.org/?p=1041#comment-165866</guid>
		<description>Just installed 0.7d, and it&#039;s working fine with my blog. Thanks. </description>
		<content:encoded><![CDATA[<p>Just installed 0.7d, and it&#039;s working fine with my blog. Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Served from: dougal.gunters.org @ 2010-03-20 02:12:55 by W3 Total Cache -->