<?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: Plugins Garbage Collector WordPress plugin</title>
	<atom:link href="http://www.shinephp.com/plugins-garbage-collector-wordpress-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shinephp.com/plugins-garbage-collector-wordpress-plugin/</link>
	<description>WordPress, PHP, MySQL, general WEB development hints, reviews, plugins, news...</description>
	<lastBuildDate>Wed, 08 Feb 2012 17:52:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Vladimir Garagulya</title>
		<link>http://www.shinephp.com/plugins-garbage-collector-wordpress-plugin/comment-page-2/#comment-1875</link>
		<dc:creator>Vladimir Garagulya</dc:creator>
		<pubDate>Fri, 23 Dec 2011 12:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.shinephp.com/?p=900#comment-1875</guid>
		<description>Hi Kent!

As one of the reasons: if you have a lot of plugins installed, script could be interrupted by PHP execution time limit of your server. So, please answer how much plugins you have of your blog, including deactivated plugins?Is it possible to activate temporally DEBUG option in wp-config.php and execute PGC check again? May be you get some error message then, which could help to identify problem.</description>
		<content:encoded><![CDATA[<p>Hi Kent!</p>
<p>As one of the reasons: if you have a lot of plugins installed, script could be interrupted by PHP execution time limit of your server. So, please answer how much plugins you have of your blog, including deactivated plugins?Is it possible to activate temporally DEBUG option in wp-config.php and execute PGC check again? May be you get some error message then, which could help to identify problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir Garagulya</title>
		<link>http://www.shinephp.com/plugins-garbage-collector-wordpress-plugin/comment-page-2/#comment-1874</link>
		<dc:creator>Vladimir Garagulya</dc:creator>
		<pubDate>Fri, 23 Dec 2011 12:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.shinephp.com/?p=900#comment-1874</guid>
		<description>Thanks for sharing this information.</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.shinephp.com/plugins-garbage-collector-wordpress-plugin/comment-page-2/#comment-1873</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 22 Dec 2011 08:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.shinephp.com/?p=900#comment-1873</guid>
		<description>@Kent T I also have WP 3.3 running and Garbage Collector is working fine on at least two different websites.</description>
		<content:encoded><![CDATA[<p>@Kent T I also have WP 3.3 running and Garbage Collector is working fine on at least two different websites.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kent T</title>
		<link>http://www.shinephp.com/plugins-garbage-collector-wordpress-plugin/comment-page-2/#comment-1872</link>
		<dc:creator>kent T</dc:creator>
		<pubDate>Thu, 22 Dec 2011 02:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.shinephp.com/?p=900#comment-1872</guid>
		<description>hi, good day!

I installed your plugin but it seems it doesn&#039;t work. 

It just stays on Plugins Garbage Collector page with the circling loading icon, but it doesn&#039;t seem to work. I left it for 5 hours and when i get back it is still circling circling circling.

Any advice? By the way i&#039;m on wordpress 3.3</description>
		<content:encoded><![CDATA[<p>hi, good day!</p>
<p>I installed your plugin but it seems it doesn&#8217;t work. </p>
<p>It just stays on Plugins Garbage Collector page with the circling loading icon, but it doesn&#8217;t seem to work. I left it for 5 hours and when i get back it is still circling circling circling.</p>
<p>Any advice? By the way i&#8217;m on wordpress 3.3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir Garagulya</title>
		<link>http://www.shinephp.com/plugins-garbage-collector-wordpress-plugin/comment-page-2/#comment-1729</link>
		<dc:creator>Vladimir Garagulya</dc:creator>
		<pubDate>Wed, 02 Nov 2011 15:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.shinephp.com/?p=900#comment-1729</guid>
		<description>If you don&#039;t plan to restore data from the deleted domain sometime somewhere there is no reason to keep those tables in the database. Just drop them. 
Drop command deletes the table itself - &quot;delete table &#039;table_name&#039;&quot; SQL command is executed.
Empty command deletes all records/data/content from the table - &quot;delete from &#039;table_name&#039;&quot; SQL command is executed.
It&#039;s not safe to delete data from DB table which belongs to active plugin in the most of cases. Plugin could store some critical data there without which it could not work for example.
So it&#039;s more safe to deactivate plugin and delete its tables, then activate plugin, in order it will be fully re-installed from the scratch. 
If you are sure that some DB table was empty after the plugin activation you can empty it without plugin work break, of course.
</description>
		<content:encoded><![CDATA[<p>If you don&#8217;t plan to restore data from the deleted domain sometime somewhere there is no reason to keep those tables in the database. Just drop them. <br />
Drop command deletes the table itself &#8211; &#8220;delete table &#8216;table_name&#8217;&#8221; SQL command is executed.<br />
Empty command deletes all records/data/content from the table &#8211; &#8220;delete from &#8216;table_name&#8217;&#8221; SQL command is executed.<br />
It&#8217;s not safe to delete data from DB table which belongs to active plugin in the most of cases. Plugin could store some critical data there without which it could not work for example.<br />
So it&#8217;s more safe to deactivate plugin and delete its tables, then activate plugin, in order it will be fully re-installed from the scratch. <br />
If you are sure that some DB table was empty after the plugin activation you can empty it without plugin work break, of course.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

