<?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/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Allogro™ &#187; security</title>
	<atom:link href="http://www.allogro.com/main/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.allogro.com/main</link>
	<description>Business Networking Specialists</description>
	<lastBuildDate>Sun, 13 Sep 2009 08:51:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>An easy way to keep plugins and themes updated in multiple WordPress installations</title>
		<link>http://www.allogro.com/main/2008/03/09/51/</link>
		<comments>http://www.allogro.com/main/2008/03/09/51/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 03:16:36 +0000</pubDate>
		<dc:creator>Will Murray</dc:creator>
				<category><![CDATA[Articles - Whitepapers]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ZenPhoto]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[file management]]></category>
		<category><![CDATA[Filezilla]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[PuTTY]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[symlink]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tweak]]></category>

		<guid isPermaLink="false">http://www.allogro.com/main/2008/03/09/51/</guid>
		<description><![CDATA[If you maintain multiple WordPress blogs, you have probably been frustrated by how tedious it is to update plug-ins and themes on each blog every time there is an update. By following my detailed step-by-step instructions, you can harness the power of Linux's symbolic links (symlinks) to setup one central shared repository of plug-ins and another for themes. All your WordPress installations can then be pointed to the one repository, and updates become much easier. Suggestions for how to fix common implementation problems are also included. Plug-in authors may be interested in learning more about this technique, since it can break some plug-ins that use hard coded pathnames.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start -->Copyright &copy; 2010 <a href="http://www.allogro.com/main">Will Murray</a>. Visit the original article at <a href="http://www.allogro.com/main/2008/03/09/51/">http://www.allogro.com/main/2008/03/09/51/</a>.<br /><p><small><a title="Start" id="Start" name="Start"></a>In this article: <a href="http://www.allogro.com/main/2008/03/09/51/#Introduction">Introduction</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Prerequisites">Prerequisites</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Structure">How my file system is structured</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Creating">Creating the repositories</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Linking">Linking to the repositories</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Recap">Recap</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Problems_and_fixes">Common problems and fixes</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Maintaining">Maintaining your repositories</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Other_systems">Using this technique with ZenPhoto and other CMS systems</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Resources">Additional resources</a>, <a href="http://www.allogro.com/main/2008/03/09/51/#Feedback">Comments and feedback</a></small></p>
<h3><a title="Introduction" id="Introduction" name="Introduction"></a>Introduction</h3>
<p><a href="http://wordpress.org/">WordPress</a> is a wonderful blogging platform and, in certain situations, a good choice for a general content management system (CMS). It is easy to end up with several parallel installations of WordPress&mdash;one for each major topic you want to discuss. Everything works great at first, but after a while, the constant barrage of updates to the main application, various plug-ins, and the themes becomes something of a management nightmare. The more blogs you operate, the more time is spent maintaining the blogging environment and the less that is available to actually blog.</p>
<p>If you host your WordPress blog on a Linux-based server (BSD or most any other Unix-like operating system should be able to do this equally well) and you have &#8220;shell access&#8221;, I might have a way to ease your pain. In a nutshell, you will create a central repository containing every WordPress plug-in that you use in all of your blogs. You create a separate repository containing each of your themes. Next, you create symbolic links (think of them as shortcuts; more about them in just a moment) from each installation of WordPress to your central repositories. From that point on, you only have to update your plug-ins and themes once, and the change will take effect instantly across all your sites. It&#8217;s a very slick trick!</p>
<p>This trick works probably works well on many other CMS systems that use plug-ins and themes; I have started using it with my <a href="http://www.zenphoto.org/">ZenPhoto</a> installations, too. In addition to helping keep things updated, it also saves disk space since you are only maintaining a single copy of the files on your server.</p>
<p>I will provide step-by-step instructions and some quirks for which you need to be aware. One quick word of caution: mistakes, bugs, and goofs can also instantly affect all your sites, so be very careful as you work, take your time, and always backup your files and databases before you start.<br />
<span id="more-51"></span></p>
<h3><a title="Prerequisites" id="Prerequisites" name="Prerequisites"></a>Prerequisites</h3>
<p>Before we get started, make sure that your system meets the following requirements:</p>
<ul>
<li>All of your WordPress installations should be hosted at the same Internet Service Provider, and they probably have to be on the same physical server (though not necessarily with some ISPs depending on how they configure things). If the server is something other than Linux or Unix-like system, they may even have to be on the same physical hard disk for this to work. Ideally, they should all be hosted under the same user account, but if not, they different accounts need to be in the same Unix security group and permissions have to be granted for the whole group, not just the owner (that&#8217;s beyond the scope of this article).</li>
<li>You must have shell access to your server. This means that you can access a command prompt (a screen that looks like a DOS window) after you login, and you can type commands that directly affect your server. These instructions assume that your server is a Linux system, though FreeBSD and other Unix-like systems should all work similarly. While Mac OS has similar features, I think the commands are somewhat different, so you will need to adapt these instructions if your server is a Mac. Windows is finally getting to the point that this type of linking may soon be available, but as of Server 2003, this method will not work on a Windows server.</li>
<li> It is also very helpful if you have some basic familiarity with your server&#8217;s shell and the structure of the file system on the server. These instructions are based on the way things are setup on my Internet Service Provider&#8217;s servers, and your ISP might do things a little differently. If you get lost or confused midway through the process, you will want to be experienced enough to figure out how to undo the things you did so far.</li>
<li>If you need a program to connect to your shell account, I recommend PuTTY. It&#8217;s a little overwhelming with all the options it has, but you can pretty much ignore them, enter the address to your server, and hit connect. Voilà! You should see a prompt to enter your username and password. If your ISP supports it, I recommend connecting using SSH, which provides an encrypted connection for better security (though it&#8217;s beyond the scope of this article to explain exactly how you do that).
	</li>
<li>I find that some things are easier to do using a good FTP program (I love Filezilla for this purpose), and other things have to be done using the shell. In particular, I like to create the central repositories by clicking and dragging files around in Filezilla rather than typing lots of commands in the shell.</li>
<li>Your server has to support symbolic links (also known as &#8220;symlinks&#8221; or &#8220;soft links&#8221;). Under most Linux/Unix-like operating systems, you use the command <code>ln -s</code> to create the symlinks. To test if you have this command, type <code>ln --help</code> from the shell; you should see the help screen for the <code>ln</code> command. If you get an error and did not make a typo, your system may not support symlinks.</li>
</ul>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<h3><a title="Structure" id="Structure" name="Structure"></a>How my file system is structured</h3>
<p>Before I go in-depth with instructions, I&#8217;ll briefly explain how files are arranged on my ISP&#8217;s server. Your ISP hopefully arranges things for you in a similar manner.</p>
<p>When I login to my command shell and use the <code>ls</code> command (<code>ls</code> is short for &#8220;list&#8221;, which brings up a list of all the files in the current directory), I see a number of directories&mdash;one for each domain that we host (<tt>allogro.com</tt>, <tt>willmurray.name</tt>, etc.). The actual content of each website is contained within its directory (i.e., the directory &#8220;<tt>allogro.com</tt>&#8221; contains all the files for the <a href="http://www.allogro.com/">allogro.com</a> web site and the directory &#8220;<tt>willmurray.name</tt>&#8221; contains everyting for the <a href="http://willmurray.name/">willmurray.name</a> site.</p>
<p>If I print the working directory (<code>pwd</code>), I see the full path from the root of the server (the top of the file system) all the way to my account&#8217;s home. In my case, the path is: <tt>/home/acanthus</tt>. Our sites are hosted with <a href="http://www.dreamhost.com/r.cgi?53656">DreamHost</a>, a very large ISP based in Los Angeles, California (some people hate them, but we have been extremely happy with them for over 3.5 years). In this case, the first slash is the root of the file system. <tt>home/</tt> is the place that all the hosting customers&#8217; accounts are stored. <tt>acanthus</tt> is the &#8220;home directory&#8221; of our account. The <tt>allogro.com</tt> and <tt>willmurray.name</tt> directories reside underneath the <tt>acanthus</tt> directory.</p>
<p>The home directory is a special place, because it is outside of any website and not directly accessible from the web. It&#8217;s a good place to store things that should not be peeked into by curious visitors or overzealous search spiders. In fact, unless DreamHost really screwed up or I created a link into the home directory, it would be a safe place to store passwords and other fairly sensitive information. It is also an ideal place to store our shared repositories for WordPress.</p>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<h3><a title="Creating" id="Creating" name="Creating"></a>Creating the repositories</h3>
<h4>Repository directories</h4>
<p>You will want to start by creating your repositories someplace inaccessible to casual web visitors. If you have a home directory like I described above, that&#8217;s perfect and recommended. If not, you could create a new directory and try to protect it using <tt>.htaccess</tt> and <tt>robots.txt</tt> files along with other techniques to keep people out of it (though this is not a very secure method, and it could leave your repositories subject to attack).</p>
<p>Using Filezilla, I created a directory named <tt>shared</tt> (the full path is <tt>/home/acanthus/shared</tt>) to hold all the files that are shared between different web sites. Under that directory, I created two more directories: <tt>wp_plugins</tt> and <tt>wp_themes</tt> (that&#8217;s <tt>/home/acanthus/shared/wp_plugins</tt> and <tt>/home/acanthus/shared/wp_themes</tt>). In each case, I set the file attributes of these directories to give the owner full permissions (rwx) and the group and public permissions to read and execute (r-x, don&#8217;t want visitors to be able to make changes). (If you prefer numerical permissions, that&#8217;s 755.)</p>
<p><tt>wp_plugins</tt> will become the home to all of your WordPress plug-ins. If you use certain plug-ins in one blog, but not in others, go ahead and add the plug-in to this repository. Within WordPress you will enable only the plug-ins you want to use; any that you don&#8217;t want to use should just remain disabled. <tt>wp_themes</tt> is the same deal, except that you store your themes there (that should be self-evident, I hope).</p>
<h4>Best practices</h4>
<p>Be sure to disable write access to plug-in and theme files and directories unless they specifically require it. For directories, only the owner should have write access (755). For files, you also want to disable the execute permission (644). Check the documentation for each plug-in to see if it needs write access. If your plug-in breaks or has errors about being denied access, you probably need to loosen the restrictions a bit on a directory or some files for the plug-in to function. Very few themes seem to need write access (only one that I&#8217;ve ever encountered).</p>
<p>I highly recommend that you grab fresh copies of each plug-in and theme that you plan to use. This way you won&#8217;t copy bugs over from existing installations and you are certain to have the latest (and hopefully bug-free) version of the software available. Alternately, you can use the shell to copy (<code>cp</code>) or move (<code>mv</code>) existing directories into your new repositories (though I don&#8217;t recommend doing so, and it can leave your site broken until you complete the whole change). You could also use Filezilla to download your plug-ins and themes directories from your current WordPress installation(s) and upload them (thus creating a copy) to your new repositories. If you have heavily customized a plug-in or theme, this may be your best option.</p>
<p>When I upload plug-ins, I usually change the directory name to include the version number. So, if you are uploading version 1.2 of the <tt>myplugin</tt> plug-in, I&#8217;d rename the directory to <tt>myplugin.1.2</tt>. Some plug-in authors do this for you automatically, while others try to make it easy for people to upgrade by keeping the directory names the same. In a shared repository, though, this can actually cause you problems. One caveat is that some plug-in authors hard-code their directory names in their plug-ins (shame on them!), and renaming the directory breaks the plug-in. In that case, you will either have to hack the plug-in to use the updated directory name, leave the directory name unchanged, or <s>pester</s>, er, petition the author to not hard code the directory name in future releases.</p>
<p>Why worry about version numbers that way? Well, I like to test new versions of plug-ins on a low-traffic blog before introducing them to one of the more active blogs. Remember that when you make a change in the repository, it immediately affects ALL of your blogs. So by overwriting a plug-in with a newer version, you are essentially upgrading all your blogs simultaneously. If there&#8217;s a glitch in the new plug-in, then all your blogs will be affected instead of just one. By uploading the plug-ins to different directories, you can disable and enable plug-ins on a per-blog basis. Then, once all your blogs are using the new version, you can safely delete the old version from your server to save space.</p>
<p>Most plug-ins also require you to disable them before you install the newer files, and then re-enable them after everything is in place. With a shared repository, that means you have to go to each blog and disable the old plug-in, then upload, and then go back to each blog to re-enable it. I prefer the flexibility of making changes one blog at a time if I want.</p>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<h3><a title="Linking" id="Linking" name="Linking"></a>Linking to the repositories</h3>
<p>So now that you have your central repositories all setup with shiny new copies of all your plug-ins and themes, how do you use them? It&#8217;s pretty easy, even if the command you type is a little cryptic.</p>
<p>Note: I recommend starting and fully testing this on your lowest-activity blog first to get the hang of it and minimize downtime on your busiest blogs.</p>
<h4>Preparing WordPress</h4>
<p>Start by logging into WordPress and disabling all of your plug-ins (there is a link at the bottom of the page to disable all the plug-ins at once). This is important since the path to the plug-ins and even the versions might be different when we are finished than what is in use now.</p>
<h4>Locate your repositories</h4>
<p>After that is finished, login to your ISP&#8217;s shell prompt using PuTTY or your favorite program.</p>
<p>Print the working directory (<code>pwd</code> is the command to do this). If your ISP includes that information in the command prompt, so much the better! Otherwise, jot down the path to your home directory (the place you are when you first login). In my example, that will be <tt>/home/acanthus</tt>.</p>
<p>List the directory (<code>ls</code> is the basic command, though I find <code>ls -lp</code> to be a more useful view). Hopefully you will see your &#8220;<tt>shared/</tt>&#8221; directory (or whatever you named the directory that holds your repositories). Next, list your shared directory (<code>ls -lp shared</code> is the command I would use), and be sure that you can see your repositories within it.</p>
<p>Now I need to go to the <tt>wp-content</tt> directory of my WordPress installation. I would type <code>cd allogro.com</code> to change directories to the allogro.com site. I keep the blog under a directory named <tt>main</tt>, so next I would <code>cd main</code>. The <tt>wp-content</tt> is inside this directory, so I would <code>cd wp-content</code>. Note: I could have strung that all together into a single command (<code>cd allogro.com/main/wp-content</code>), but I usually prefer to go one level at a time so I don&#8217;t make mistakes.</p>
<p>Listing the directory (<code>ls -lp</code>) shows that I am, in fact, in the correct place, and there are folders named &#8220;<tt>plugins</tt>&#8221; and &#8220;<tt>themes</tt>&#8221; already here. That&#8217;s good! We need to rename those directories to get them out of the way of our new links. We do that by moving the directories to the same location with a different name (a fairly round-about way of doing it, but it works). Enter the commands <code>mv plugins plugins.disabled</code> and then <code>mv themes themes.disabled</code>. At some point in the future after everything is working, remember to come back and delete these disabled directories.</p>
<h4>Create the symlinks</h4>
<p>Now it is time to create the symlinks to your shared repositories. This is where you need to enter the full pathname to your folders, so start by verifying that you can see all your shared plug-ins: <code>ls /home/acanthus/shared/wp_plugins</code> (substitute your own path, of course). The command to create the symlink is almost identical: <code>ln -s /home/acanthus/shared/wp_plugins plugins</code> (again, substituting your own path).</p>
<p>Let me explain that carefully. <code>ln -s</code> is the command to create a symbolic link. Be sure to use lowercase letters, because uppercase will not work correctly. Also, be sure to include the &#8220;-s&#8221;, or the system will attempt to create a hard link instead of a symbolic link (which is <em>not</em> what you want), and will likely generate an error on most systems (unless you are logged in as &#8220;root&#8221; on your own server, and then you might cause yourself problems). Next, you give the full pathname to the target (the shared plug-ins repository). You technically <em>could</em> use relative paths (if you know how those work), but full paths seem to be more stable for plug-ins. The final part is the name of your new link. Since WordPress expects your plug-ins folder to be named <tt>plugins</tt>, that&#8217;s what we used.</p>
<p>If you did not get an error message, when you list the directory (<code>ls -lp</code>), you should see that the entry for <tt>plugins</tt> looks something like this: <tt>plugins -> /home/acanthus/shared/wp_plugins/</tt> (with the file attributes set to give everyone full access as indicated by &#8220;lrwxrwxrwx&#8221;, but that&#8217;s not a problem since the permissions on the repository are what matter, not the ones on the symlink). This means you have successfully created a symlink to your repository folder. List the contents of that folder (<code>ls plugins</code>) and it should exactly match the contents of the repository, since they are actually the same folder just with a new link.</p>
<p>Now it&#8217;s time to link to your themes: <code>ln -s /home/acanthus/shared/wp_themes themes</code> (once again, substituting your own path for mine).</p>
<h4>Configure and test WordPress</h4>
<p>Go back to the administration area of your WordPress blog. Under presentation, you should see a list of all the themes you uploaded to the shared themes repository. If you do not see any difference, you might need to clear your browser&#8217;s cache and refresh the page. Simply select your desired theme to activate it. Even if your desired theme came up automatically, it might be a good idea to select a different theme momentarily, and the reselect your desired theme. This sometimes fixes weird problems I&#8217;ve encountered, so doing it right now rather than later makes sense. View the blog and make sure things look right.</p>
<p>You might have to reconfigure your widgets since you changed themes. Some widgets might not work or be available until you activate a related plug-in.</p>
<p>After you are sure your theme is working, go back to the plug-in administration for your blog and enable one or two plug-ins that you can use to easily verify your plug-in repository is working. If those two look good, you can enable one or two more plug-ins and then test them. Repeat until all the desired plug-ins are verified.</p>
<p>If after enabling a plugin you see warnings that a path could not be found, and if you renamed the plug-ins&#8217; directories to include their version number, you might have to rename the plug-in directory back to its original name to get the plug-in to work again.</p>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<h3><a title="Recap" id="Recap" name="Recap"></a>Recap</h3>
<p>These are the steps anytime you want to have WordPress use your shared repositories instead of a stand-alone installation. If you have followed my instructions all the way so far, then you will repeat the following steps for each of your remaining blogs. Again, I recommend working in order from the blog with the least traffic to the one with the most to minimize downtime for your visitors as you become familiar with the process.</p>
<p>This recap assumes that you have already created your shared repositories and just need to link to them now.</p>
<ol>
<li>Disable all plug-ins in WordPress.</li>
<li>In the shell, navigate to the <tt>wp-content</tt> directory of your blog (<i>e.g.</i>, <code>cd willmurray.name/blog/wp-content</code>; use your own pathname).</li>
<li>Rename the current <tt>plugins</tt> and <tt>themes</tt> directories (<i>e.g.</i>, <code>mv plugins plugins.disabled</code> and <code>mv themes themes.disabled</code>).</li>
<li>Create the symlinks (<i>e.g.</i>, <code>ln -s /home/acanthus/shared/wp_plugins plugins</code> <code>ln -s /home/acanthus/shared/wp_themes themes</code>; use your own pathnames)</li>
<li>In WordPress, activate your theme (if it&#8217;s already active, change to another one, then change back to your desired theme).</li>
<li>Reconfigure Widgets if necessary.</li>
<li>Activate one or two plug-ins at a time and test as you go</li>
</ol>
<p>Note: After you have a plug-in working in one copy of your blog, it should work in all copies.</p>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<h3><a title="Problems_and_fixes" id="Problems_and_fixes" name="Problems_and_fixes"></a>Common problems and fixes</h3>
<h4>Redirect URLs generated by plug-ins to the correct subdirectory using .htaccess</h4>
<p>Some of my blogs are at the root of the site (www.example.com/), while others are in subdirectories (www.example.com/blog or www.example.com/main). Some plug-ins assume that your site is at the root, and they do not work correctly otherwise. I have been able to fix this in most cases by adding a redirect in the root-level <tt>.htaccess</tt> file of sites where WordPress is not at the root, and redirect requests for <tt>/wp-content</tt> to the appropriate subdirectory (<tt>/blog/wp-content</tt> or <tt>/main/wp-content</tt>).</p>
<h4>Relative paths leading outside the plugins directory cause problems</h4>
<p>Some plug-ins use relative paths to files outside of the <tt>wp-content/plugins</tt> folder (i.e., they try to access a file in the main WordPress installation directory). Without editing the plug-in, there&#8217;s really no way to fix this problem. If you are up to hacking the plug-in, you could add a new variable at the top of your theme&#8217;s <tt>index.php</tt> file that gives the full pathname to your local <tt>plugins</tt> directory (well, it&#8217;s actually the symlink to your shared repository, but WordPress doesn&#8217;t know that or care). For example, you could add the following to your <tt>index.php</tt><br />
<code lang="php"><br />
< ?php $SHARED_PLUGINS="/home/acanthus/allogro.com/main/wp-content/plugins/"; ?><br />
</code><br />
Then go though the plug-in files and add the <tt>$SHARED_PLUGINS</tt> variable in front of each reference to a relative path. Example:<br />
<code lang="php"><br />
/*	Old code:<br />
require_once('../../wp-example.php);<br />
	New code: */<br />
require_once($SHARED_PLUGINS . '../../wp-example.php);<br />
</code></p>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<h3><a title="Maintaining" id="Maintaining" name="Maintaining"></a>Maintaining your repositories</h3>
<p>The whole point of this exercise was to make it much easier to keep your plug-ins and themes updated across multiple sites. (Oh yeah! That&#8217;s why I just went through all of this.) Here&#8217;s how easy it is to update everything nearly instantly&#8230;</p>
<p>When you are in the plug-ins administration area and notice that a plug-in has an available update, go fetch it, extract it, and rename the directory to include the version number of the release. Upload the plug-in to your repository using FTP. Refresh the plug-ins administration page. You should see both the old version of the plug-in (still active) and the new version (not yet active). Disable the old version. Enable the new version. Test.</p>
<p>If something broke, it&#8217;s probably because the plug-in has its directory name hard-coded within it (not a good thing for several reasons). You will have to disable the plug-in in ALL your blogs, then replace the old version with the newer version as instructed by the author. Then you can enable the plugin in each blog. Not as elegant, but still only one upload to worry about.</p>
<p>When you are happy that everything worked, go to your other blogs whenever you want, and disable the old version and enable the new version. There&#8217;s no extra uploading to do. If you need to tweak a plug-in for any reason, you only have to do it once, and the tweak takes effect instantly on all of your blogs.</p>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<h3><a title="Other_systems" id="Other_systems" name="Other_systems"></a>Using this technique with ZenPhoto and other CMS systems</h3>
<p>The basic principles are the same no matter what system you use. The only challenges are (1) how self-contained plug-ins are (if they frequently look for files outside of the <tt>plugins</tt> folder, then there is a high chance it won&#8217;t work), and (2) how spread-out the files are (the more spread out, the more symlinks you have to create and maintain).</p>
<p>With ZenPhoto, I wanted to add my own CSS file to the default theme. I had to symlink directly to my new CSS file (same process, except you enter the full path and filename, not just the pathname) from within the styles directory of the theme. Again, it&#8217;s the same philosophy, but a little more work. But, when I make a change in that one style sheet, the three sites that share that sheet are all updated instantly. Very cool.</p>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<h3><a title="Resources" id="Resources" name="Resources"></a>Additional resources</h3>
<p><strong>Articles:</strong></p>
<ul>
<li>&#8220;Symbolic link.&#8221; <cite>Wikipedia, The Free Encyclopedia.</cite> 6 Mar 2008, 18:31 UTC. Wikimedia Foundation, Inc. 10 Mar 2008 &lt;<a href="http://en.wikipedia.org/w/index.php?title=Symbolic_link&#038;oldid=196335114">http://en.wikipedia.org/w/index.php?title=Symbolic_link&#038;oldid=196335114</a>&gt;.</li>
</ul>
<p><strong>Content management systems:</strong></p>
<ul>
<li><a href="http://wordpress.org/">WordPress</a> is a state-of-the-art semantic personal publishing platform with a focus on aesthetics, web standards, and usability</li>
<li><a href="http://www.zenphoto.org/">ZenPhoto</a>, a simpler web photo gallery</li>
</ul>
<p><strong>Software tools:</strong></p>
<ul>
<li><a href="http://filezilla-project.org/">FileZilla</a>, the free FTP client</li>
<li><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTY</a>: a free telnet/ssh client</li>
</ul>
<p><strong>Service providers:</strong></p>
<ul>
<li><a href="http://www.dreamhost.com/r.cgi?53656">DreamHost</a> Internet service provider</li>
<li><a href="http://sacramentoonlineservices.com/">Sacramento Online Services</a> for sensible domain name and e-mail prices</li>
</ul>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<h3><a title="Feedback" id="" name="Feedback"></a>Comments and feedback</h3>
<p>I would appreciate any feedback that you might have. If I left any steps out, or if I could have explained something more clearly, please let me know.</p>
<p>If you use the technique, please leave me a comment. You are also welcome to link to one of your sites that use it.</p>
<p>If you are a plug-in author who has updated your plug-in to work more gracefully with this technique, please let us know!</p>
<hr />
<small><em><a href="http://willmurray.name/blog/contact_will/">Will Murray</a> is a <a href="http://willmurray.name/blog/">blogger</a> and network integration consultant with <a href="http://www.allogro.com/">Allogro&trade; Business Networking Solutions</a>. He has been an Internet trailblazer since 1991, and has a passion for technology, communication, and new media.</em></small></p>
<p style="font-size:smaller;margin:6pt 0 12pt;text-align:right;"><i><a href="http://www.allogro.com/main/2008/03/09/51/#Start">&ndash;Top&ndash;</a></i></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.allogro.com/main/2008/03/09/51/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
	</item>
		<item>
		<title>CRITICAL &#8211; Buffer overflow in VML used by IE and Outlook</title>
		<link>http://www.allogro.com/main/2006/09/22/6/</link>
		<comments>http://www.allogro.com/main/2006/09/22/6/#comments</comments>
		<pubDate>Fri, 22 Sep 2006 21:58:19 +0000</pubDate>
		<dc:creator>Will Murray</dc:creator>
				<category><![CDATA[Security - Threat Alerts]]></category>
		<category><![CDATA[buffer overflow]]></category>
		<category><![CDATA[DEP]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook Express]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[VML]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://www.allogro.com/main/?p=6</guid>
		<description><![CDATA[Copyright &#169; 2010 <a href="http://www.allogro.com/main">Will Murray</a>. Visit the original article at <a href="http://www.allogro.com/main/2006/09/22/6/">http://www.allogro.com/main/2006/09/22/6/</a>.<br /><h2>Summary</h2>
<p><img src="/icons/DroplineNeu/128x128/emblems/emblem-important.png" alt="Important icon" align="right" border="0" height="128" hspace="3" vspace="1" width="128" /><strong>Threat Level:</strong> <strong style="color: #cc0000">Critical Zero-Day Vulnerability</strong></p>
<p>This threat is currently active and spreading in the wild. Most Windows-based computers, even if fully up-to-date with all the official Microsoft patches, are vulnerable right now unless certain actions are taken to protect yourself (see below).</p>
<p><strong>What it does:</strong> Various websites, including advertising sites that generate advertisements appearing on trusted websites, become infected. These sites use a specific type of attack to slip through your computer&#8217;s security, leaving a big hole for your computer to be further attacked. Since some versions of Outlook and Outlook Express use Internet Explorer to display some types of e-mail, you can become infected&#8230; [Continue reading]</p>]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start -->Copyright &copy; 2010 <a href="http://www.allogro.com/main">Will Murray</a>. Visit the original article at <a href="http://www.allogro.com/main/2006/09/22/6/">http://www.allogro.com/main/2006/09/22/6/</a>.<br /><h2>Summary</h2>
<p><img src="/icons/DroplineNeu/128x128/emblems/emblem-important.png" alt="Important icon" align="right" border="0" height="128" hspace="3" vspace="1" width="128" /><strong>Threat Level:</strong> <strong style="color: #cc0000">Critical Zero-Day Vulnerability</strong></p>
<p>This threat is currently active and spreading in the wild. Most Windows-based computers, even if fully up-to-date with all the official Microsoft patches, are vulnerable right now unless certain actions are taken to protect yourself (see below).</p>
<p><strong>What it does:</strong> Various websites, including advertising sites that generate advertisements appearing on trusted websites, become infected. These sites use a specific type of attack to slip through your computer&#8217;s security, leaving a big hole for your computer to be further attacked. Since some versions of Outlook and Outlook Express use Internet Explorer to display some types of e-mail, you can become infected just by displaying infected e-mails you receive.</p>
<p><span id="more-6"></span><strong>What stops it:</strong> You can configure certain settings on your computer that will make it so the malicious software cannot run on your computer. Most of <a href="http://www.allogro.com/content/view/52/29/#OMW">Microsoft&#8217;s workarounds</a> may cause a few legitimate websites to incorrectly display within Internet Explorer. An <a href="http://www.allogro.com/content/view/52/29/#UW">unofficial workaround</a> does not cause that problem, but it only works for people using Windows XP with Service Pack 2. An official patch is scheduled to eliminate the problem in a few weeks; an <a href="http://www.allogro.com/content/view/52/29/#UP">unofficial patch</a> is available now. A good, up-to-date antivirus software package should also detect the malicious software; however, it is a good idea to check that no viruses have disabled your antivirus software before relying upon it to protect you.</p>
<p>Affected Software (<a href="http://www.microsoft.com/technet/security/advisory/925568.mspx" target="ext">as reported by Microsoft</a>):</p>
<ul>
<li style="color: #660000">Microsoft Windows 2000 Service Pack 4</li>
<li style="color: #660000">Microsoft Windows XP Service Pack 1 and Service Pack 2</li>
<li style="color: #660000">Microsoft Windows XP Professional x64 Edition</li>
<li style="color: #660000">Microsoft Windows Server 2003 and Microsoft Windows Server 2003 Service Pack 1</li>
<li style="color: #660000">Microsoft Windows Server 2003 with SP1 for Itanium-based Systems Edition</li>
<li style="color: #660000">Microsoft Windows Server 2003 x64 Edition</li>
</ul>
<p>Additional affected software (<a href="http://sunbeltblog.blogspot.com/2006/09/vulnerable-versions-of-outlook.html" target="ext">as reported by Sunbelt</a>):</p>
<ul>
<li>Outlook 2007 &#8211; 12.0.417.1006: Can view VML but apparently <em>not</em> vulnerable.</li>
<li style="color: #660000"><strong>Outlook 2003 11.8010.8036 SP2: vulnerable</strong></li>
<li style="color: #660000">Outlook 2003 11.6568.6568 SP2: <em>unknown</em> (not tested)</li>
<li>Outlook 2003 11.5608.5606: <em>not</em> vulnerable</li>
<li>Outlook 2003 11.5608.8028: <em>not</em> vulnerable</li>
<li>Outlook 2002: <em>not</em> vulnerable</li>
<li>Outlook 2000: <em>not</em> vulnerable</li>
</ul>
<p>Official patch/security update: None at this time. According to <a href="http://www.microsoft.com/technet/security/advisory/925568.mspx" target="ext">Microsoft</a>:</p>
<blockquote><p>A security update to address this vulnerability is now being finalized through testing to ensure quality and application compatibility Microsoft’s goal is to release the update on Tuesday, October 10, 2006, or sooner depending on customer needs.</p></blockquote>
<h2><a title="PROT" name="PROT" id="PROT"></a>How to Protect Yourself</h2>
<p>Until Microsoft releases an official patch (scheduled for Tuesday, October 10, 2006), you really can&#8217;t &#8220;fix&#8221; this flaw in your computer. You can apply an unofficial patch (which should work until Microsoft releases theirs, but Microsoft won&#8217;t help you if the patch messes up your system), you can enact some workarounds that stop the problem before it can harm your system, or perhaps do both.</p>
<h3><a title="UW" name="UW" id="UW"></a>Unofficial Workaround</h3>
<p>In addition to the workarounds from Microsoft mentioned below, <a href="http://blogs.securiteam.com/index.php/archives/624" target="ext">SecuriTeam has discovered</a> that Windows XP users with Service Pack 2 installed have another option (and it&#8217;s good for blocking many other types of attacks, so it seems like a good idea!). Simply enable system-wide enforcement of software-enforced Data Execution Prevention (DEP) and make sure Internet Explorer is not exempted. It&#8217;s easier to do than to pronounce.</p>
<p>Difficulty: Not Very Difficult</p>
<p>Impact: Microsoft does not list any adverse problems with enabling this feature. In fact, they state &#8220;Software-enforced DEP can help prevent malicious code from taking advantage of exception-handling mechanisms in Windows.&#8221;</p>
<p>The following instructions are based on one of several different ways <a href="http://support.microsoft.com/kb/875352#5" target="ext">Microsoft allows you to configure DEP</a>. You must be logged on as an administrator to manually configure DEP on the computer. A restart is required after completing these steps.</p>
<ol>
<li>Click <strong>Start</strong>, click <strong>Run</strong>, type <code>sysdm.cpl</code>, and then click <strong>OK</strong>.</li>
<li>On the <strong>Advanced</strong> tab, under <strong>Performance</strong>, click <strong>Settings</strong>.</li>
<li>On the <strong>Data Execution Prevention</strong> tab, click <strong>Turn on DEP for all programs and services except those I select</strong></li>
<li>If Internet Explorer, Outlook Express, or Outlook are listed in the box below that option, you should either remove the program(s) from the list (select the program and click the <strong>Remove</strong> button) or at least make sure the checkbox in front of each program is unchecked.</li>
<li>Click OK two times.</li>
<li>Restart your computer for the changes to take effect.</li>
</ol>
<p>Once you have protected your system, <a href="http://www.isotf.org/zert/testvml.htm" target="ext">visit ZERT&#8217;s vulnerability test page</a>. NOTE: If your system is vulnerable, your browser will crash. If your browser crashes after following these instructions, carefully re-read the instructions and try again or try a different patch or workaround.</p>
<h3><a title="UP" name="UP" id="UP"></a>Unofficial Patches</h3>
<p>Until Microsoft releases an official patch, an <a href="http://isotf.org/zert/" target="ext">unofficial patch</a> that <em>is not supported by Microsoft</em> is available from the Zeroday Emergency Response Team (&#8220;ZERT&#8221;). ZERT is a group of highly skilled software and hardware engineers with industry liasons who develop emergency patches for vulnerable systems. They release patches only when they feel the risk of waiting for the vendor (in this case Microsoft) to release an &#8220;official&#8221; patch is greater than the risk of releasing a patch that may not be quite as polished and fully tested, but blocks the problem. Additionally, there are several links to additional good information about the threat. ZERT&#8217;s site is located at: <a href="http://isotf.org/zert/" target="ext">http://isotf.org/zert/</a></p>
<p><a href="http://isotf.org/zert/download.htm" target="ext"><strong>Download the ZERT patch and view the instructions.</strong></a></p>
<p>Once you have protected your system, <a href="http://www.isotf.org/zert/testvml.htm" target="ext">visit ZERT&#8217;s vulnerability test page</a>. NOTE: If your system is vulnerable, your browser will crash. If your browser crashes after following these instructions, carefully re-read the instructions and try again or try a different patch or workaround.</p>
<h3><a title="OMW" name="OMW" id="OMW"></a>Official Microsoft Workarounds</h3>
<p>See <a href="http://www.microsoft.com/technet/security/advisory/925568.mspx" target="ext">Microsoft&#8217;s page</a> under the <strong>Suggested Actions</strong> headings for updates to the following information.</p>
<h4><a title="OMWunreg" name="OMWunreg" id="OMWunreg"></a>Un-register Vgx.dll</h4>
<p>Difficulty: Not Very Difficult</p>
<p>Impact: Applications that render VML will no longer do so once Vgx.dll has been unregistered. Generally, that should not impact your day-to-day web browsing very much unless a particular favorite site of yours uses VML; most sites do not use it much if at all.</p>
<p>To un-register Vgx.dll, follow these steps:</p>
<ol>
<li>You must be logged in as the administrator or another account with administrative rights.</li>
<li>Click <strong>Start</strong>, click <strong>Run</strong>, type <code>regsvr32 -u "%ProgramFiles%\Common Files\Microsoft Shared\VGX\vgx.dll"</code>, and then click <strong>OK</strong>.</li>
<li>A dialog box appears to confirm that the un-registration process has succeeded. Click <strong>OK</strong> to close the dialog box.</li>
<li>Restart the system</li>
</ol>
<p>To re-register Vgx.dll (this will make you vulnerable again), follow these steps:</p>
<ol>
<li>You must be logged in as the administrator or another account with administrative rights.</li>
<li>Click <strong>Start</strong>, click <strong>Run</strong>, type <code>regsvr32 "%ProgramFiles%\Common Files\Microsoft Shared\VGX\vgx.dll"</code>, and then click <strong>OK</strong>.</li>
<li>A dialog box appears to confirm that the un-registration process has succeeded. Click <strong>OK</strong> to close the dialog box.</li>
<li>Restart the system</li>
</ol>
<p>Once you have protected your system, <a href="http://www.isotf.org/zert/testvml.htm" target="ext">visit ZERT&#8217;s vulnerability test page</a>. NOTE: If your system is vulnerable, your browser will crash. If your browser crashes after following these instructions, carefully re-read the instructions and try again or try a different patch or workaround.</p>
<h4><a title="OMWacl" name="OMWacl" id="OMWacl"></a>Modify the Access Control List on Vgx.dll to be more restrictive</h4>
<p>Difficulty: Fairly Advanced (if you do not know what ACL&#8217;s are, skip this one)</p>
<p>Impact: Applications and Web sites that render VML may no longer display or function correctly. Generally, that should not impact your day-to-day web browsing very much unless a particular favorite site of yours uses VML; most sites do not use it much if at all.</p>
<p>To modify the Access Control List (ACL) Vgx.dll to be more restrictive, follow these steps:</p>
<ol>
<li>Click <strong>Start</strong>, click <strong>Run</strong>, type &#8220;<code>cmd</code>&#8221; (without the quotation marks), and then click <strong>OK</strong>.</li>
<li>Type the following command at a command prompt. Make a note of the current ACL’s that are on the file (including inheritance settings) for future reference in case you have to undo this modification:<br />
<code>cacls "%ProgramFiles%\Common Files\Microsoft Shared\VGX\vgx.dll"</code></li>
<li>Type the following command at a command prompt to deny the ‘everyone’ group access to this file: <code>echo y| cacls "%ProgramFiles%\Common Files\Microsoft Shared\VGX\vgx.dll" /d everyone</code></li>
<li>Close Internet Explorer, and reopen it for the changes to take effect.</li>
<p>To undo this change, you will need to modify the ACL back to its original settings as noted in step #2 above.</ol>
<p>Once you have protected your system, <a href="http://www.isotf.org/zert/testvml.htm" target="ext">visit ZERT&#8217;s vulnerability test page</a>. NOTE: If your system is vulnerable, your browser will crash. If your browser crashes after following these instructions, carefully re-read the instructions and try again or try a different patch or workaround.</p>
<h4><a title="OMWzones" name="OMWzones" id="OMWzones"></a>Configure Internet Explorer 6 for Microsoft Windows XP Service Pack 2 to disable Binary and Script Behaviors in the Internet and Local Intranet security zone.</h4>
<p>Difficulty: Not Very Difficult</p>
<p>Impact: Disabling binary and script behaviors in the Internet and Local intranet security zones may cause some Web sites that rely on VML to not function correctly. This workaround may impact more websites than the previous two, because more than VML scripts may be disabled, which may cause more sites to not display correctly.</p>
<p>You can help protect against this vulnerability by changing your settings to disable binary and script behaviors in the Internet and Local intranet security zone. To do this, follow these steps:</p>
<ol>
<li>In Internet Explorer, click <strong>Internet Options</strong> on the <strong>Tools</strong> menu.</li>
<li>Click the <strong>Security</strong> tab.</li>
<li>Click <strong>Internet</strong>, and then click <strong>Custom</strong> Level.</li>
<li>Under <strong>Settings</strong>, in the <strong>ActiveX controls and plug-ins</strong> section, under <strong>Binary and Script Behaviors</strong>, click <strong>Disable</strong>, and then click <strong>OK</strong>.</li>
<li>Click <strong>Local intranet</strong>, and then click <strong>Custom</strong> Level.</li>
<li>Under <strong>Settings</strong>, in the <strong>ActiveX controls and plug-ins</strong> section, under <strong>Binary and Script Behaviors</strong>, click <strong>Disable</strong>, and then click <strong>OK</strong>.</li>
<li>Click <strong>OK</strong> two times to return to Internet Explorer.</li>
</ol>
<p>Once you have protected your system, <a href="http://www.isotf.org/zert/testvml.htm" target="ext">visit ZERT&#8217;s vulnerability test page</a>. NOTE: If your system is vulnerable, your browser will crash. If your browser crashes after following these instructions, carefully re-read the instructions and try again or try a different patch or workaround.</p>
<h4>Read e-mail messages in plain text format to help protect yourself from the HTML e-mail attack vector</h4>
<p>Difficulty: A Little Difficult (Requires use of RegEdit, an advanced and potentially dangerous admin tool)<br />
Impact: E-mail messages that are viewed in plain text format will not contain pictures, specialized fonts, animations, or other rich content. Additionally, (1) the changes are applied to the preview pane and to open messages, (2) pictures become attachments so that they are not lost, and (3) because the message is still stored in Rich Text or HTML format certain aspects of the message may behave unexpectedly.</p>
<p>Microsoft Outlook 2002 with Office XP SP 1 or later and Microsoft Outlook Express 6 with Internet Explorer 6 SP 1 or later can enable a setting to view most messages in plain text only. Digitally signed e-mail messages and encrypted e-mail messages are not affected by the setting. For information on enabling this setting in Outlook 2002, see <a href="http://support.microsoft.com/kb/307594" target="ext">Microsoft Knowledge Base Article 307594</a>.</p>
<h4><a title="OMWisa" name="OMWisa" id="OMWisa"></a>Block VML Vulnerability Traffic with ISA Server</h4>
<p>If your organization uses Microsoft ISA Server 2004 or 2006 firewall software, see Microsoft&#8217;s article &#8220;<a href="http://go.microsoft.com/fwlink/?linkid=74025" target="ext">Learn How Your ISA Server Helps Block VML Vulnerability Traffic</a>&#8220;.</p>
<p>Once you have protected your system, <a href="http://www.isotf.org/zert/testvml.htm" target="ext">visit ZERT&#8217;s vulnerability test page</a>. NOTE: If your system is vulnerable, your browser will crash. If your browser crashes after following these instructions, carefully re-read the instructions and try again or try a different patch or workaround.&lt;</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.allogro.com/main/2006/09/22/6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://www.allogro.com/main/icons/DroplineNeu/128x128/emblems/emblem-important.png" />
		<media:content url="http://www.allogro.com/main/icons/DroplineNeu/128x128/emblems/emblem-important.png" medium="image">
			<media:title type="html">Important icon</media:title>
		</media:content>
	</item>
		<item>
		<title>Secrets Often Stay on Cell Phones and PDAs</title>
		<link>http://www.allogro.com/main/2006/09/10/7/</link>
		<comments>http://www.allogro.com/main/2006/09/10/7/#comments</comments>
		<pubDate>Sun, 10 Sep 2006 22:04:32 +0000</pubDate>
		<dc:creator>Will Murray</dc:creator>
				<category><![CDATA[Articles - Safety and Security]]></category>
		<category><![CDATA[cell phone]]></category>
		<category><![CDATA[data destruction]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[recycling]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[smart phone]]></category>

		<guid isPermaLink="false">http://www.allogro.com/main/?p=7</guid>
		<description><![CDATA[Copyright &#169; 2010 <a href="http://www.allogro.com/main">Will Murray</a>. Visit the original article at <a href="http://www.allogro.com/main/2006/09/10/7/">http://www.allogro.com/main/2006/09/10/7/</a>.<br /><p><img src="/icons/Cartoon/128/phone.png" alt="PDA icon" align="right" border="0" height="128" hspace="3" vspace="1" width="128" />It seems people swap cell phones, smart phones, and PDAs about as frequently as they change their smoke detector batteries. These miniaturized devices hold a large amount of personal data inside their tiny silicon brains. So what happens to all that data when you trade in your cellular phone for a new one? Or what if you sell it on eBay to help offset the cost of your replacement device?</p>
<p>If you&#8217;re like a lot of technologically challenged people, you don&#8217;t even think about purging the memory before you hand it over, and if you do think about it, you might not know how to erase the data.&#8230; [Continue reading]</p>]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start -->Copyright &copy; 2010 <a href="http://www.allogro.com/main">Will Murray</a>. Visit the original article at <a href="http://www.allogro.com/main/2006/09/10/7/">http://www.allogro.com/main/2006/09/10/7/</a>.<br /><p><img src="/icons/Cartoon/128/phone.png" alt="PDA icon" align="right" border="0" height="128" hspace="3" vspace="1" width="128" />It seems people swap cell phones, smart phones, and PDAs about as frequently as they change their smoke detector batteries. These miniaturized devices hold a large amount of personal data inside their tiny silicon brains. So what happens to all that data when you trade in your cellular phone for a new one? Or what if you sell it on eBay to help offset the cost of your replacement device?</p>
<p>If you&#8217;re like a lot of technologically challenged people, you don&#8217;t even think about purging the memory before you hand it over, and if you do think about it, you might not know how to erase the data.</p>
<p>If you are a bit more tech savvy, you might delve into the manual (you didn&#8217;t throw it away or lose it, did you?) or search the Web for instructions. It&#8217;s not like most devices have a big red &#8220;ERASE ME&#8221; button on them. It&#8217;s kinda tough to delete all your data. And for good reason (I&#8217;m referring to the technologically challenged button pushers that can&#8217;t resist big red buttons).</p>
<p>The scary thing is that after finding out how to delete the data and pushing the right menu options, the data still might not be completely gone! According to an AP story reported in the Dallas Morning News, <a href="http://www.dallasnews.com/sharedcontent/dws/dn/latestnews/stories/083106dnnatsecrets.4eba87fb.html" target="ext">secrets often stay on cell phones</a> even after the data is supposedly deleted. That might be good news if you accidentally erased everything, but it would be bad news if you are a government official, a cheating spouse, or just someone who doesn&#8217;t like people snooping through their personal information.</p>
<p>Read the article. It&#8217;s a bit shocking, has a touch of humor, and it just might help people to &#8220;decide whether to auction their used equipment for a few hundred dollars &#8211; and risk revealing their secrets &#8211; or effectively toss their old phones under a large truck to dispose of them.&#8221;</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.allogro.com/main/2006/09/10/7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://www.allogro.com/main/icons/Cartoon/128/phone.png" />
		<media:content url="http://www.allogro.com/main/icons/Cartoon/128/phone.png" medium="image">
			<media:title type="html">PDA icon</media:title>
		</media:content>
	</item>
		<item>
		<title>Preventive Maintenance Plans Are a Very Good Idea</title>
		<link>http://www.allogro.com/main/2006/05/09/15/</link>
		<comments>http://www.allogro.com/main/2006/05/09/15/#comments</comments>
		<pubDate>Tue, 09 May 2006 11:14:51 +0000</pubDate>
		<dc:creator>Will Murray</dc:creator>
				<category><![CDATA[Articles - Whitepapers]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[disaster recovery]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[preventive maintenance]]></category>
		<category><![CDATA[ROI]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.allogro.com/main/?p=15</guid>
		<description><![CDATA[Copyright &#169; 2010 <a href="http://www.allogro.com/main">Will Murray</a>. Visit the original article at <a href="http://www.allogro.com/main/2006/05/09/15/">http://www.allogro.com/main/2006/05/09/15/</a>.<br /><p><img src="/icons/CrystalProject/crystal_project/128x128/apps/khelpcenter.png" alt="Life Preserver icon" align="right" border="0" height="128" hspace="3" vspace="1" width="128" /><strong>Preventive Maintenance Helps Safeguard Data</strong><br />
Most of our clients find the information stored on the hard disk is <strong>much</strong> more important than the hardware that stores the data. Taking steps to protect this information makes sense. That is what preventive maintenance is all about.<br />
<strong>Preventive Maintenance Improves Security</strong><br />
Regular virus and spyware scanning is critical to keeping your data safe. Security patches and software updates are released several times each month for a variety of software. Some notify you, but others do not. All are important if you wish to stay protected. System and security logs give a wealth of information about the state of the equipment&#8230; [Continue reading]</p>]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start -->Copyright &copy; 2010 <a href="http://www.allogro.com/main">Will Murray</a>. Visit the original article at <a href="http://www.allogro.com/main/2006/05/09/15/">http://www.allogro.com/main/2006/05/09/15/</a>.<br /><p><img src="/icons/CrystalProject/crystal_project/128x128/apps/khelpcenter.png" alt="Life Preserver icon" align="right" border="0" height="128" hspace="3" vspace="1" width="128" /><strong>Preventive Maintenance Helps Safeguard Data</strong><br />
Most of our clients find the information stored on the hard disk is <strong>much</strong> more important than the hardware that stores the data. Taking steps to protect this information makes sense. That is what preventive maintenance is all about.<br />
<strong>Preventive Maintenance Improves Security</strong><br />
Regular virus and spyware scanning is critical to keeping your data safe. Security patches and software updates are released several times each month for a variety of software. Some notify you, but others do not. All are important if you wish to stay protected. System and security logs give a wealth of information about the state of the equipment and the network. By checking the logs, we often spot potential problems early and avoid emergencies by fixing problems before they become noticeable.<br />
<strong>Preventive Maintenance Improves Performance</strong><br />
Some aspects of computer systems degrade in performance over time. This has even given rise to the colorful term of &#8220;<a href="http://www.google.com/search?&amp;q=%22Windows+rot%22" target="_blank" title="Google search on Windows rot">Windows rot</a>&#8220;. Preventive maintenance helps improve the overall speed of system and network performance in these respects.<br />
<strong>Preventive Maintenance Saves Money</strong><br />
You’ve heard the old adage &#8220;an ounce of prevention is worth a pound of cure.&#8221; It may be trite, but it’s also true. Avoiding problems saves you money in the long run, compared with laying out cash for new components or repair jobs. Emergency repair procedures can consume your IT budget at alarming rates. Most preventive maintenance procedures are quite simple, compared to troubleshooting and emergency repair procedures. This saves you much time (and stress!).</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.allogro.com/main/2006/05/09/15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://www.allogro.com/main/icons/CrystalProject/crystal_project/128x128/apps/khelpcenter.png" />
		<media:content url="http://www.allogro.com/main/icons/CrystalProject/crystal_project/128x128/apps/khelpcenter.png" medium="image">
			<media:title type="html">Life Preserver icon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
