<?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 for November Echo Romeo Delta</title>
	<atom:link href="http://novemberechoromeodelta.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://novemberechoromeodelta.com</link>
	<description>Tech Stuff</description>
	<lastBuildDate>Thu, 28 Mar 2013 10:43:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Moving From Drupal Back To WordPress by alexander</title>
		<link>http://novemberechoromeodelta.com/20090326-moving-from-drupal-back-to-wordpress/comment-page-1#comment-48775</link>
		<dc:creator>alexander</dc:creator>
		<pubDate>Thu, 28 Mar 2013 10:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/?p=151#comment-48775</guid>
		<description><![CDATA[WordPress is like a &quot;world-lover&quot;:)
I&#039;ve also moved my blog from Drupal to wordpress, but automatedly with cms2cms.]]></description>
		<content:encoded><![CDATA[<p>WordPress is like a &#8220;world-lover&#8221;:)<br />
I&#8217;ve also moved my blog from Drupal to wordpress, but automatedly with cms2cms.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Shrinking VirtualBox VDI Files by Koen</title>
		<link>http://novemberechoromeodelta.com/20081220-shrinking-virtualbox-vdi-files/comment-page-1#comment-47297</link>
		<dc:creator>Koen</dc:creator>
		<pubDate>Sun, 24 Feb 2013 17:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/?p=84#comment-47297</guid>
		<description><![CDATA[Didn&#039;t work for me with sdelete ... but making the partition inside the VM smaller and doing a VDI compact after that worked.]]></description>
		<content:encoded><![CDATA[<p>Didn&#8217;t work for me with sdelete &#8230; but making the partition inside the VM smaller and doing a VDI compact after that worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Shrinking VirtualBox VDI Files by Wolfram</title>
		<link>http://novemberechoromeodelta.com/20081220-shrinking-virtualbox-vdi-files/comment-page-1#comment-40926</link>
		<dc:creator>Wolfram</dc:creator>
		<pubDate>Wed, 03 Oct 2012 09:53:06 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/?p=84#comment-40926</guid>
		<description><![CDATA[It&#039;s a combination of BleachBit (executed on the Linux guest) and a VM clone executed on the host, in case you are trying to compact a Linux VM running within VirtualBox. See also http://www.ontoport.de/?q=blog/wbartussek/how-compress-virtual-disk-linux-virtualbox.]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s a combination of BleachBit (executed on the Linux guest) and a VM clone executed on the host, in case you are trying to compact a Linux VM running within VirtualBox. See also <a href="http://www.ontoport.de/?q=blog/wbartussek/how-compress-virtual-disk-linux-virtualbox" rel="nofollow">http://www.ontoport.de/?q=blog/wbartussek/how-compress-virtual-disk-linux-virtualbox</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin Dependency Checking by thomasb</title>
		<link>http://novemberechoromeodelta.com/20090727-wordpress-plugin-dependency-checking/comment-page-1#comment-10260</link>
		<dc:creator>thomasb</dc:creator>
		<pubDate>Mon, 11 Apr 2011 10:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/?p=203#comment-10260</guid>
		<description><![CDATA[Wordpress keeps track of active plugins in the `options` table.

SELECT * FROM wp_options WHERE option_name = &#039;active_plugins&#039;;

global $wpdb;
$active_plugins = get_option(&#039;active_plugins&#039;, FALSE);
$depends = &#039;nextgen-gallery/nggallery.php&#039;;
if ( ! in_array($depends, $active_plugins)) {
die(&quot;Required plugin, {$depends} could not be found, please activate it before continuing&quot;);
}]]></description>
		<content:encoded><![CDATA[<p>WordPress keeps track of active plugins in the `options` table.</p>
<p>SELECT * FROM wp_options WHERE option_name = &#8216;active_plugins&#8217;;</p>
<p>global $wpdb;<br />
$active_plugins = get_option(&#8216;active_plugins&#8217;, FALSE);<br />
$depends = &#8216;nextgen-gallery/nggallery.php&#8217;;<br />
if ( ! in_array($depends, $active_plugins)) {<br />
die(&#8220;Required plugin, {$depends} could not be found, please activate it before continuing&#8221;);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin Dependency Checking by thomasb</title>
		<link>http://novemberechoromeodelta.com/20090727-wordpress-plugin-dependency-checking/comment-page-1#comment-10259</link>
		<dc:creator>thomasb</dc:creator>
		<pubDate>Mon, 11 Apr 2011 10:10:20 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/?p=203#comment-10259</guid>
		<description><![CDATA[Wordpress keeps track of active plugins in the `options` table.

SELECT * FROM wp_options WHERE option_name = &#039;active_plugins&#039;;

]]></description>
		<content:encoded><![CDATA[<p>WordPress keeps track of active plugins in the `options` table.</p>
<p>SELECT * FROM wp_options WHERE option_name = &#8216;active_plugins&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin Dependency Checking by Will Kemp</title>
		<link>http://novemberechoromeodelta.com/20090727-wordpress-plugin-dependency-checking/comment-page-1#comment-6709</link>
		<dc:creator>Will Kemp</dc:creator>
		<pubDate>Sun, 23 Jan 2011 06:16:52 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/?p=203#comment-6709</guid>
		<description><![CDATA[Interesting and useful. Thanks for that!]]></description>
		<content:encoded><![CDATA[<p>Interesting and useful. Thanks for that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin Dependency Checking by Dell Sala</title>
		<link>http://novemberechoromeodelta.com/20090727-wordpress-plugin-dependency-checking/comment-page-1#comment-6697</link>
		<dc:creator>Dell Sala</dc:creator>
		<pubDate>Sun, 23 Jan 2011 02:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/?p=203#comment-6697</guid>
		<description><![CDATA[Just implemented something very similar. Was hoping for something built into WP for this, but found nothing. This is the best solution I&#039;ve found.

A couple minor improvements to the usability: Instead of die(), just return. This will stop execution of the file, but won&#039;t kill the entire wordpress stack.

To notify the user add an admin notice:

if (/*PLUGIN-NOT-INSTALLED*/) {
    add_action(&#039;admin_notices&#039;, &#039;dependency_error&#039;);
    return;
}

function dependency_error () {
    echo &#039;Required dependency is missing.&#039;;
}]]></description>
		<content:encoded><![CDATA[<p>Just implemented something very similar. Was hoping for something built into WP for this, but found nothing. This is the best solution I&#8217;ve found.</p>
<p>A couple minor improvements to the usability: Instead of die(), just return. This will stop execution of the file, but won&#8217;t kill the entire wordpress stack.</p>
<p>To notify the user add an admin notice:</p>
<p>if (/*PLUGIN-NOT-INSTALLED*/) {<br />
    add_action(&#8216;admin_notices&#8217;, &#8216;dependency_error&#8217;);<br />
    return;<br />
}</p>
<p>function dependency_error () {<br />
    echo &#8216;Required dependency is missing.&#8217;;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin Dependency Checking by alex chousmith</title>
		<link>http://novemberechoromeodelta.com/20090727-wordpress-plugin-dependency-checking/comment-page-1#comment-4076</link>
		<dc:creator>alex chousmith</dc:creator>
		<pubDate>Tue, 12 Oct 2010 23:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/?p=203#comment-4076</guid>
		<description><![CDATA[Hey, I found this post as I was searching for &quot;how to figure out if a plugin is installed&quot;. You have a great quick solution, but unfortunately I have found that many WP plugins are not good about cleaning up after themselves...

in the case where a user has at one point installed NextGen Gallery (or in my case, WP e-Commerce Plugin), but gave up on it and uninstalled/deleted it, the db tables often might not get removed correctly, and your test would show that the plugin is there when it really isnt any more.]]></description>
		<content:encoded><![CDATA[<p>Hey, I found this post as I was searching for &#8220;how to figure out if a plugin is installed&#8221;. You have a great quick solution, but unfortunately I have found that many WP plugins are not good about cleaning up after themselves&#8230;</p>
<p>in the case where a user has at one point installed NextGen Gallery (or in my case, WP e-Commerce Plugin), but gave up on it and uninstalled/deleted it, the db tables often might not get removed correctly, and your test would show that the plugin is there when it really isnt any more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Object Oriented PHP With CodeIgniter by Rian</title>
		<link>http://novemberechoromeodelta.com/20090312-object-oriented-php-with-codeigniter/comment-page-1#comment-3395</link>
		<dc:creator>Rian</dc:creator>
		<pubDate>Fri, 21 May 2010 20:08:24 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/wordpress/?p=143#comment-3395</guid>
		<description><![CDATA[I recently peeked into CakePHP which seems to be something similar and i really like the concept of those Frameworks although i had not had the chance to use them in one of my projects as time presses on and i can&#039;t spare the time to completely refit it into cake. I stole some good concepts though and implemented a kind of poor man&#039;s version mvc which does the job really well concerning maintainability of my code. Thanks for bringing another candidate to my attention !]]></description>
		<content:encoded><![CDATA[<p>I recently peeked into CakePHP which seems to be something similar and i really like the concept of those Frameworks although i had not had the chance to use them in one of my projects as time presses on and i can&#8217;t spare the time to completely refit it into cake. I stole some good concepts though and implemented a kind of poor man&#8217;s version mvc which does the job really well concerning maintainability of my code. Thanks for bringing another candidate to my attention !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Shrinking VirtualBox VDI Files by Jeff</title>
		<link>http://novemberechoromeodelta.com/20081220-shrinking-virtualbox-vdi-files/comment-page-1#comment-2992</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Tue, 20 Apr 2010 17:21:51 +0000</pubDate>
		<guid isPermaLink="false">http://novemberechoromeodelta.com/?p=84#comment-2992</guid>
		<description><![CDATA[Thanks, I really appreciate your information and will be making your site one of my regular visits.]]></description>
		<content:encoded><![CDATA[<p>Thanks, I really appreciate your information and will be making your site one of my regular visits.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
