<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nerdaphernalia &#187; &#8216;Nuff  said</title>
	<atom:link href="http://striderweb.com/nerdaphernalia/category/nuff-said/feed/" rel="self" type="application/rss+xml" />
	<link>http://striderweb.com/nerdaphernalia</link>
	<description>"It's All Geek To Me"</description>
	<lastBuildDate>Wed, 21 Dec 2011 18:51:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to Close a WordPress Site</title>
		<link>http://striderweb.com/nerdaphernalia/2011/05/how-to-close-a-wordpress-site/</link>
		<comments>http://striderweb.com/nerdaphernalia/2011/05/how-to-close-a-wordpress-site/#comments</comments>
		<pubDate>Wed, 18 May 2011 20:10:54 +0000</pubDate>
		<dc:creator>Stephen R</dc:creator>
				<category><![CDATA['Nuff  said]]></category>
		<category><![CDATA[Webcraft]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://striderweb.com/nerdaphernalia/?p=272</guid>
		<description><![CDATA[I recently was asked to close down a site I had put up using WordPress. I didn&#8217;t want to just delete the whole thing, as I figured somebody might want it put back up in the future. There are several easy ways to do this, but I think I&#8217;ve found the best. My first impulse [...]]]></description>
			<content:encoded><![CDATA[<p>I recently was asked to close down a site I had put up using WordPress.  I didn&#8217;t want to just delete the whole thing, as I figured somebody might want it put back up in the future.  There are several easy ways to do this, but I think I&#8217;ve found the best.</p>
<p>My first impulse was to add an <code>exit;</code> line to index.php.  The problem there is that it doesn&#8217;t close off the wp-admin section.  I could comment out the database password in config, but that leaves a &#8220;Could not connect to database&#8221; message.  I wanted every aspect of the site gone.  Then it struck me:  One file that absolutely every single call to WordPress must pass through is <code>wp-config.php</code>.</p>
<p>So if you want to &#8220;disappear&#8221; a WordPress site quickly and easily, just open up <code>wp-config.php</code> and add the following right after the opening PHP tag:</p>
<p><code>exit;</code></p>
<p>If you want to put up some kind of &#8220;goodbye&#8221; message in HTML, you can do something like this at the top of that file:</p>
<pre><code>&lt;?php
?&gt;&lt;!DOCTYPE html&gt;
&lt;html&gt;&lt;body&gt;&lt;p&gt;This site is closed.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;
&lt;?php
exit;

...</code></pre>
<p>Even more briefly, of course, you could stick a short message inside a <code>die()</code> statement.  The HTML gives you a bit more flexibility though.</p>
<p>Hope somebody finds this useful. <img src='http://striderweb.com/nerdaphernalia/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<hr />
© <a href="http://striderweb.com/">Stephen Rider</a> 2011
<p>This article was originally published at <a href="http://striderweb.com/nerdaphernalia">Nerdaphernalia</a>.  <a href="http://planetwordpress.planetozh.com/" rel="nofollow">Planet WordPress</a> is authorized to reproduce WordPress-related entries.  <em>If you're reading this at any other web site, the site owner is stealing copyrighted work.  Please visit the original page:</em></p>

<small><a href="http://striderweb.com/nerdaphernalia/2011/05/how-to-close-a-wordpress-site/">Permalink to How to Close a WordPress Site</a></small>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://striderweb.com/nerdaphernalia/2011/05/how-to-close-a-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Everywhere in MySQL</title>
		<link>http://striderweb.com/nerdaphernalia/2010/05/search-everywhere-in-mysql/</link>
		<comments>http://striderweb.com/nerdaphernalia/2010/05/search-everywhere-in-mysql/#comments</comments>
		<pubDate>Mon, 17 May 2010 16:04:35 +0000</pubDate>
		<dc:creator>Stephen R</dc:creator>
				<category><![CDATA['Nuff  said]]></category>
		<category><![CDATA[Gadgets and Gewgaws]]></category>
		<category><![CDATA[On the Front Lines]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[utilities]]></category>

		<guid isPermaLink="false">http://striderweb.com/nerdaphernalia/2010/05/search-everywhere-in-mysql/</guid>
		<description><![CDATA[In recent months I&#8217;ve been tasked with taking over management of a web site programmed by somebody else. They used Drupal, with which I&#8217;m not familiar, and so a big part of the job is simply figuring out how that system works. In many cases I&#8217;ve wanted to search the entire database for a particular [...]]]></description>
			<content:encoded><![CDATA[<p>In recent months I&#8217;ve been tasked with taking over management of a web site programmed by somebody else.  They used Drupal, with which I&#8217;m not familiar, and so a big part of the job is simply figuring out how that system works.  In many cases I&#8217;ve wanted to search the entire database for a particular string of text, in order simply to find out where certain data is stored in the database.</p>
<p>I hunted over the web looking for a way to search an entire MySQL database &#8212; all tables, all fields &#8212; for text.  For the most part I find forums with answers such as &#8220;Well, you set up your database wrong&#8221;.  These kinds of responses remind me of the sequence in the movie &#8220;Funny Farm&#8221; where the truck driver is trying to find the town of Redbud.  In short:</p>
<p>&#8220;Hey Mac, how do you get to Redbud?&#8221;</p>
<p>&#8220;If I wanted to go to Redbud, I wouldn&#8217;t start from here.&#8221;</p>
<p>Nonsensical and useless.  If you&#8217;re here now, then this is where you&#8217;re starting from; telling me to start from somewhere else is simply a non-answer.  <span class="pullquote">Funny in a movie, but frustrating in real life</span>.</p>
<p>Today I came across a most excellent script, the <a href="http://sewmyheadon.com/2009/mysql-search-replace-tool/">MySQL Database Search &#038; Replace Tool</a>.  It&#8217;s a PHP page that you can drop into a web site and call from your browser.  It will search the entire database for a string of text &#8212; exactly what I needed.</p>
<p>In a quick test run it threw out a couple errors but then gave me useful results; so it&#8217;s not entirely polished, but quite functional and useful.  Kudos to <a href="http://www.mgdigital.co.uk/">Mark Jackson</a> and <a href="http://sewmyheadon.com">Eric Amundson</a> for releasing this great tool!</p>
<hr />
© <a href="http://striderweb.com/">Stephen Rider</a> 2010
<p>This article was originally published at <a href="http://striderweb.com/nerdaphernalia">Nerdaphernalia</a>.  <a href="http://planetwordpress.planetozh.com/" rel="nofollow">Planet WordPress</a> is authorized to reproduce WordPress-related entries.  <em>If you're reading this at any other web site, the site owner is stealing copyrighted work.  Please visit the original page:</em></p>

<small><a href="http://striderweb.com/nerdaphernalia/2010/05/search-everywhere-in-mysql/">Permalink to Search Everywhere in MySQL</a></small>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://striderweb.com/nerdaphernalia/2010/05/search-everywhere-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hackbook finale</title>
		<link>http://striderweb.com/nerdaphernalia/2009/10/hackbook-finale/</link>
		<comments>http://striderweb.com/nerdaphernalia/2009/10/hackbook-finale/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 04:54:24 +0000</pubDate>
		<dc:creator>Stephen R</dc:creator>
				<category><![CDATA['Nuff  said]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[hacks]]></category>

		<guid isPermaLink="false">http://striderweb.com/nerdaphernalia/2009/10/hackbook-finale/</guid>
		<description><![CDATA[In between trick-or-treaters I spent today finishing up the repairs to my new/old laptop. The first optical drive I ordered was DOA, so I had to order a new one. Did the swap today. Took a little testing and such, but I now have a fully operational system, (which is nice). In the end, a [...]]]></description>
			<content:encoded><![CDATA[<p>In between trick-or-treaters I spent today finishing up the repairs to my new/old laptop.  The first optical drive I ordered was DOA, so I had to order a new one.  Did the swap today.  Took a little testing and such, but I now have a fully operational system, (which is nice).</p>
<p>In the end, a little work and willingness to crack the sucker open got me a $1,100 laptop for about $500.  Sometimes its nice to be a geek. <img src='http://striderweb.com/nerdaphernalia/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<hr />
© <a href="http://striderweb.com/">Stephen Rider</a> 2009
<p>This article was originally published at <a href="http://striderweb.com/nerdaphernalia">Nerdaphernalia</a>.  <a href="http://planetwordpress.planetozh.com/" rel="nofollow">Planet WordPress</a> is authorized to reproduce WordPress-related entries.  <em>If you're reading this at any other web site, the site owner is stealing copyrighted work.  Please visit the original page:</em></p>

<small><a href="http://striderweb.com/nerdaphernalia/2009/10/hackbook-finale/">Permalink to Hackbook finale</a></small>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://striderweb.com/nerdaphernalia/2009/10/hackbook-finale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Every Halloween costume you ev&#8230;</title>
		<link>http://striderweb.com/nerdaphernalia/2009/08/every-halloween-costume-you-ev/</link>
		<comments>http://striderweb.com/nerdaphernalia/2009/08/every-halloween-costume-you-ev/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 13:31:48 +0000</pubDate>
		<dc:creator>Stephen R</dc:creator>
				<category><![CDATA['Nuff  said]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://striderweb.com/nerdaphernalia/2009/08/every-halloween-costume-you-ev/</guid>
		<description><![CDATA[Every Halloween costume you ever had was a failure compared to this: http://www.youtube.com/watch?v=yG8CUHGb1Y4 (via @TheBloggess) © Stephen Rider 2009 This article was originally published at Nerdaphernalia. Planet WordPress is authorized to reproduce WordPress-related entries. If you're reading this at any other web site, the site owner is stealing copyrighted work. Please visit the original page: [...]]]></description>
			<content:encoded><![CDATA[<p>Every Halloween costume you ever had was a failure compared to this: <a href="http://www.youtube.com/watch?v=yG8CUHGb1Y4" rel="nofollow">http://www.youtube.com/watch?v=yG8CUHGb1Y4</a> (via @<a href="http://twitter.com/TheBloggess">TheBloggess</a>)</p>
<hr />
© <a href="http://striderweb.com/">Stephen Rider</a> 2009
<p>This article was originally published at <a href="http://striderweb.com/nerdaphernalia">Nerdaphernalia</a>.  <a href="http://planetwordpress.planetozh.com/" rel="nofollow">Planet WordPress</a> is authorized to reproduce WordPress-related entries.  <em>If you're reading this at any other web site, the site owner is stealing copyrighted work.  Please visit the original page:</em></p>

<small><a href="http://striderweb.com/nerdaphernalia/2009/08/every-halloween-costume-you-ev/">Permalink to Every Halloween costume you ev&#8230;</a></small>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://striderweb.com/nerdaphernalia/2009/08/every-halloween-costume-you-ev/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mac OS 9 lives!</title>
		<link>http://striderweb.com/nerdaphernalia/2009/07/mac-os-9-lives/</link>
		<comments>http://striderweb.com/nerdaphernalia/2009/07/mac-os-9-lives/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 14:56:44 +0000</pubDate>
		<dc:creator>Stephen R</dc:creator>
				<category><![CDATA['Nuff  said]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://striderweb.com/nerdaphernalia/2009/07/mac-os-9-lives-and-it-has-a/</guid>
		<description><![CDATA[Mac OS 9 lives! And it has a browser: http://classilla.org/ © Stephen Rider 2009 This article was originally published at Nerdaphernalia. Planet WordPress is authorized to reproduce WordPress-related entries. If you're reading this at any other web site, the site owner is stealing copyrighted work. Please visit the original page: Permalink to Mac OS 9 [...]]]></description>
			<content:encoded><![CDATA[<p>Mac OS 9 lives!  And it has a browser:  <a href="http://classilla.org/" rel="nofollow">http://classilla.org/</a></p>
<hr />
© <a href="http://striderweb.com/">Stephen Rider</a> 2009
<p>This article was originally published at <a href="http://striderweb.com/nerdaphernalia">Nerdaphernalia</a>.  <a href="http://planetwordpress.planetozh.com/" rel="nofollow">Planet WordPress</a> is authorized to reproduce WordPress-related entries.  <em>If you're reading this at any other web site, the site owner is stealing copyrighted work.  Please visit the original page:</em></p>

<small><a href="http://striderweb.com/nerdaphernalia/2009/07/mac-os-9-lives/">Permalink to Mac OS 9 lives!</a></small>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://striderweb.com/nerdaphernalia/2009/07/mac-os-9-lives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An ode to long URLs</title>
		<link>http://striderweb.com/nerdaphernalia/2009/06/an-ode-to-long-urls/</link>
		<comments>http://striderweb.com/nerdaphernalia/2009/06/an-ode-to-long-urls/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 13:10:20 +0000</pubDate>
		<dc:creator>Stephen R</dc:creator>
				<category><![CDATA['Nuff  said]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://striderweb.com/nerdaphernalia/2009/06/an-ode-to-long-urls-and-a-su/</guid>
		<description><![CDATA[An ode to long URLs &#8211; and a suggestion or two: http://bit.ly/syESq © Stephen Rider 2009 This article was originally published at Nerdaphernalia. Planet WordPress is authorized to reproduce WordPress-related entries. If you're reading this at any other web site, the site owner is stealing copyrighted work. Please visit the original page: Permalink to An [...]]]></description>
			<content:encoded><![CDATA[<p>An ode to long URLs &#8211; and a suggestion or two: <a href="http://bit.ly/syESq" rel="nofollow">http://bit.ly/syESq</a></p>
<hr />
© <a href="http://striderweb.com/">Stephen Rider</a> 2009
<p>This article was originally published at <a href="http://striderweb.com/nerdaphernalia">Nerdaphernalia</a>.  <a href="http://planetwordpress.planetozh.com/" rel="nofollow">Planet WordPress</a> is authorized to reproduce WordPress-related entries.  <em>If you're reading this at any other web site, the site owner is stealing copyrighted work.  Please visit the original page:</em></p>

<small><a href="http://striderweb.com/nerdaphernalia/2009/06/an-ode-to-long-urls/">Permalink to An ode to long URLs</a></small>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://striderweb.com/nerdaphernalia/2009/06/an-ode-to-long-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10,000 words advocating &#8220;sub p&#8230;</title>
		<link>http://striderweb.com/nerdaphernalia/2009/06/10000-words-advocating-sub-p/</link>
		<comments>http://striderweb.com/nerdaphernalia/2009/06/10000-words-advocating-sub-p/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 03:18:30 +0000</pubDate>
		<dc:creator>Stephen R</dc:creator>
				<category><![CDATA['Nuff  said]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://striderweb.com/nerdaphernalia/2009/06/10000-words-advocating-sub-p/</guid>
		<description><![CDATA[10,000 words advocating &#8220;sub plugins&#8221; for WordPress, only to discover I&#8217;ve just reinvented something called &#8220;Interfaces&#8221; http://lists.automattic.com/pipermail/wp-hackers/2009-June/026567.html [2011-12-21 edit: updated broken link] © Stephen Rider 2009 This article was originally published at Nerdaphernalia. Planet WordPress is authorized to reproduce WordPress-related entries. If you're reading this at any other web site, the site owner is stealing [...]]]></description>
			<content:encoded><![CDATA[<p>10,000 words advocating &#8220;sub plugins&#8221; for WordPress, only to discover I&#8217;ve just reinvented something called &#8220;Interfaces&#8221; <a href="http://lists.automattic.com/pipermail/wp-hackers/2009-June/026567.html" rel="nofollow">http://lists.automattic.com/pipermail/wp-hackers/2009-June/026567.html</a></p>
<p>[2011-12-21 edit: updated broken link]</p>
<hr />
© <a href="http://striderweb.com/">Stephen Rider</a> 2009
<p>This article was originally published at <a href="http://striderweb.com/nerdaphernalia">Nerdaphernalia</a>.  <a href="http://planetwordpress.planetozh.com/" rel="nofollow">Planet WordPress</a> is authorized to reproduce WordPress-related entries.  <em>If you're reading this at any other web site, the site owner is stealing copyrighted work.  Please visit the original page:</em></p>

<small><a href="http://striderweb.com/nerdaphernalia/2009/06/10000-words-advocating-sub-p/">Permalink to 10,000 words advocating &#8220;sub p&#8230;</a></small>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://striderweb.com/nerdaphernalia/2009/06/10000-words-advocating-sub-p/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

