<?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: On Installing And Uninstalling Plugins</title>
	<atom:link href="http://wpaddict.net/on-installing-and-uninstalling-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpaddict.net/on-installing-and-uninstalling-plugins/</link>
	<description>Get Your WordPress fix here</description>
	<lastBuildDate>Fri, 30 Jul 2010 19:51:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Nile</title>
		<link>http://wpaddict.net/on-installing-and-uninstalling-plugins/comment-page-1/#comment-667</link>
		<dc:creator>Nile</dc:creator>
		<pubDate>Sun, 14 Feb 2010 19:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://wpaddict.net/?p=173#comment-667</guid>
		<description>I agree. I know there are plugins for WordPress that people can install and manage their databases. I am just not comfortable using such a tool to call that information directly to my WP admin panel.

But, because I am a developer, I am far more comfortable editing my MySQL directly. A function like that could be really nice to have for those not familiar with PHP and databases.</description>
		<content:encoded><![CDATA[<p>I agree. I know there are plugins for WordPress that people can install and manage their databases. I am just not comfortable using such a tool to call that information directly to my WP admin panel.</p>
<p>But, because I am a developer, I am far more comfortable editing my MySQL directly. A function like that could be really nice to have for those not familiar with PHP and databases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nile</title>
		<link>http://wpaddict.net/on-installing-and-uninstalling-plugins/comment-page-1/#comment-666</link>
		<dc:creator>Nile</dc:creator>
		<pubDate>Sun, 14 Feb 2010 19:06:39 +0000</pubDate>
		<guid isPermaLink="false">http://wpaddict.net/?p=173#comment-666</guid>
		<description>That actually could be a good idea for applying some type of button to choose to drop the tables for the plugin.</description>
		<content:encoded><![CDATA[<p>That actually could be a good idea for applying some type of button to choose to drop the tables for the plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mattias Wirf</title>
		<link>http://wpaddict.net/on-installing-and-uninstalling-plugins/comment-page-1/#comment-662</link>
		<dc:creator>Mattias Wirf</dc:creator>
		<pubDate>Sun, 14 Feb 2010 13:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://wpaddict.net/?p=173#comment-662</guid>
		<description>In my last plugin I used the method of adding a array with the settings as an options field. But it doesn&#039;t handle much data.

I think there is alittle problem too loose the settings when you deactivate. One should try to make a &quot;delete settings&quot; question when deactivating... perhaps.
.-= Mattias Wirf´s last blog ..&lt;a href=&quot;http://www.open-source-editor.com/wordpress/plugin/first-submit-to-wordpress-plugin-database.html&quot; rel=&quot;nofollow&quot;&gt;First submit to Wordpress plugin database&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>In my last plugin I used the method of adding a array with the settings as an options field. But it doesn&#8217;t handle much data.</p>
<p>I think there is alittle problem too loose the settings when you deactivate. One should try to make a &#8220;delete settings&#8221; question when deactivating&#8230; perhaps.<br />
.-= Mattias Wirf´s last blog ..<a href="http://www.open-source-editor.com/wordpress/plugin/first-submit-to-wordpress-plugin-database.html" rel="nofollow">First submit to WordPress plugin database</a> =-.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Fairbairn</title>
		<link>http://wpaddict.net/on-installing-and-uninstalling-plugins/comment-page-1/#comment-646</link>
		<dc:creator>Simon Fairbairn</dc:creator>
		<pubDate>Mon, 01 Feb 2010 10:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://wpaddict.net/?p=173#comment-646</guid>
		<description>You have some good points - I think it&#039;s good manners for a plugin to leave a blog just as it found it.

As far as I&#039;m aware, though, the only time that an author can delete the tables is on deactivation of the plugin. I don&#039;t think there&#039;s a hook that allows an author to delete tables when the user deletes the files of the plugin.

Sometimes people deactivate their plugins temporarily or accidentally. I don&#039;t think they&#039;d like to reactivate them only to find that all of their settings have been erased, which is why I&#039;m guessing many authors choose to leave the tables in there.

I may be wrong, though - if there is a hook, I&#039;d love to hear about it.

However, authors could provide a button within the plugin interface itself that allows users to delete the database tables before deactivation and deletion.

Also, if you are thinking of using PHPMyAdmin to delete tables, remember to back everything up before you start!

One false move with a DROP query can be deadly, and there is absolutely no undo.
.-= Simon Fairbairn´s last blog ..&lt;a href=&quot;http://feedproxy.google.com/~r/LineInWebDesign/~3/iQlj9ddCi60/&quot; rel=&quot;nofollow&quot;&gt;Developing A Plugin – Part 5&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>You have some good points &#8211; I think it&#8217;s good manners for a plugin to leave a blog just as it found it.</p>
<p>As far as I&#8217;m aware, though, the only time that an author can delete the tables is on deactivation of the plugin. I don&#8217;t think there&#8217;s a hook that allows an author to delete tables when the user deletes the files of the plugin.</p>
<p>Sometimes people deactivate their plugins temporarily or accidentally. I don&#8217;t think they&#8217;d like to reactivate them only to find that all of their settings have been erased, which is why I&#8217;m guessing many authors choose to leave the tables in there.</p>
<p>I may be wrong, though &#8211; if there is a hook, I&#8217;d love to hear about it.</p>
<p>However, authors could provide a button within the plugin interface itself that allows users to delete the database tables before deactivation and deletion.</p>
<p>Also, if you are thinking of using PHPMyAdmin to delete tables, remember to back everything up before you start!</p>
<p>One false move with a DROP query can be deadly, and there is absolutely no undo.<br />
.-= Simon Fairbairn´s last blog ..<a href="http://feedproxy.google.com/~r/LineInWebDesign/~3/iQlj9ddCi60/" rel="nofollow">Developing A Plugin – Part 5</a> =-.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WP Addict » On Installing And Uninstalling Plugins &#124; bllogger</title>
		<link>http://wpaddict.net/on-installing-and-uninstalling-plugins/comment-page-1/#comment-619</link>
		<dc:creator>WP Addict » On Installing And Uninstalling Plugins &#124; bllogger</dc:creator>
		<pubDate>Thu, 21 Jan 2010 04:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://wpaddict.net/?p=173#comment-619</guid>
		<description>[...] Related posts: Plugins Are Great, But Not Always the Solution. Comments (1). wpaddict (WP Addict) said on 20-01-2010. Twitter Comment. #wp # wordpress : On Installing And Uninstalling Plugins [link to post]. – Posted using Chat Catcher &#8230;   More here: WP Addict » On Installing And Uninstalling Plugins [...]</description>
		<content:encoded><![CDATA[<p>[...] Related posts: Plugins Are Great, But Not Always the Solution. Comments (1). wpaddict (WP Addict) said on 20-01-2010. Twitter Comment. #wp # wordpress : On Installing And Uninstalling Plugins [link to post]. – Posted using Chat Catcher &#8230;   More here: WP Addict » On Installing And Uninstalling Plugins [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wpaddict (WP Addict)</title>
		<link>http://wpaddict.net/on-installing-and-uninstalling-plugins/comment-page-1/#comment-618</link>
		<dc:creator>wpaddict (WP Addict)</dc:creator>
		<pubDate>Wed, 20 Jan 2010 21:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://wpaddict.net/?p=173#comment-618</guid>
		<description>&lt;strong&gt;Twitter Comment&lt;/strong&gt;
&lt;a href=&quot;http://twitter.com/wpaddict&quot; title=&quot;Twitter Comment&quot; rel=&quot;nofollow&quot;&gt;
&lt;div class=&quot;ccimg1&quot; title=&quot;wpaddict (WP Addict)&quot; style=&quot;float:left;margin-right:10px;padding:0;width:60px;height:60px;&quot;&gt;
&lt;img name=&quot;cc_image&quot; title=&quot;wpaddict (WP Addict)&quot; style=&quot;float:left;margin-right:10px;padding:0;width:50px;height:50px;&quot; src=&quot;http://purl.org/net/spiurl/wpaddict&quot;/&gt;
&lt;/div&gt;
&lt;/a&gt;
#wp #wordpress: On Installing And Uninstalling Plugins [link to post]&lt;br /&gt;&lt;br /&gt; - &lt;a href=&quot;http://chatcatcher.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Posted using Chat Catcher&lt;/a&gt; </description>
		<content:encoded><![CDATA[<p><strong>Twitter Comment</strong><br />
<a href="http://twitter.com/wpaddict" title="Twitter Comment" rel="nofollow"></p>
<div class="ccimg1" title="wpaddict (WP Addict)" style="float:left;margin-right:10px;padding:0;width:60px;height:60px;">
<img name="cc_image" title="wpaddict (WP Addict)" style="float:left;margin-right:10px;padding:0;width:50px;height:50px;" src="http://purl.org/net/spiurl/wpaddict"/>
</div>
<p></a><br />
#wp #wordpress: On Installing And Uninstalling Plugins [link to post]</p>
<p> &#8211; <a href="http://chatcatcher.com" target="_blank" rel="nofollow">Posted using Chat Catcher</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
