<?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>MakeUseOf &#187; database</title>
	<atom:link href="http://www.makeuseof.com/tags/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Fri, 10 Feb 2012 15:30:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Make A Product Review Database With WordPress: Custom Post Types, Custom Fields, Featured Images &amp; Widgets!</title>
		<link>http://www.makeuseof.com/tag/product-review-database-wordpress-custom-post-types-custom-fields-featured-images-widgets/</link>
		<comments>http://www.makeuseof.com/tag/product-review-database-wordpress-custom-post-types-custom-fields-featured-images-widgets/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 17:30:16 +0000</pubDate>
		<dc:creator>James Bruce</dc:creator>
				<category><![CDATA[Wordpress & Blogging]]></category>
		<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[event listing]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[widgets]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=81500</guid>
		<description><![CDATA[Last time we showed you how to create a simple events listing using perhaps the most powerful feature of WordPress 3.0 - custom post types. After some requests to develop this further, today we’ll be creating a product review database to tie together everything we've learnt so far. ]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/featured-wordpress.jpg" /><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/featured-wordpress.jpg?323f2c" alt="custom post types in wordpress"/>Last time I showed you how to <a title="How To Make Your Own Events Listing Using Custom Post Types [WordPress]" href="http://www.makeuseof.com/tag/events-listing-custom-post-types-wordpress/">create a simple events listing</a> using perhaps the most powerful feature of WordPress 3.0 &#8211; custom post types. After some requests to develop this further, today we’ll be creating a product review database to tie together everything we&#8217;ve learnt so far.</p>
<p>You’ll be able to maintain a separate list of products using custom post types, each with an associated image, as well as some meta-info such as price, rating, specifications &#8211; and we’ll finish it all off with a way to display them in a sidebar widget and an index page.Sounds good? Read on.</p>
<h2>Requirements:</h2>
<p>You’ll need a working WordPress 3.0+ self hosted install, and this will make use of extensive PHP coding. I’ll give you the code, but you’ll need to be relatively comfortable with PHP and XHTML to adjust variable names to your needs or change the style. If you need a quick beginners course on CSS and XHTML, may I suggest our wonderful free <a href="http://www.makeuseof.com/pages/download-learn-to-speak-internet-your-guide-to-xhtml">beginners guide</a> to download. I’d also suggest you use a <strong>cleanly coded</strong> but <strong>basic</strong> theme &#8211; the default <em>Twenty-Ten </em>or<em> Twenty-Eleven</em> theme is actually quite complicated to edit, so try this first on something simpler before trying to integrate with that.</p>
<h2><a href="http://www.makeuseof.com/tag/events-listing-custom-post-types-wordpress/">Create Post Types</a></h2>
<p>If you read last weeks tutorial, you should be somewhat familiar with creating a custom post type in WordPress. Copy and paste <a href="http://pastebin.com/bVLNagJT">this base code into a new plugin</a>, activate it, and begin adding some new products so we have a dataset to work with. (<em>Note: If you&#8217;d rather just download the complete and full code now without trying to add things along the way, <a href="http://pastebin.com/g1zYiZN5">use this finished code instead</a>. You can still follow along with the tutorial and customize it as we go</em>)</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/customposttype.png?323f2c" alt="custom post types in wordpress" width="170" height="111" /></p>
<p>It’s also wise to decide now what kind of meta-info you want to associate with each product. A database of digital cameras for instance might need:</p>
<ul>
<li>Retail Price</li>
<li>Resolution</li>
<li>HD Video</li>
<li>Purchase Link</li>
<li>Rating</li>
</ul>
<p>Rather than adding this info directly to the description of the product (the &#8216;post content&#8217;), we’re going to create custom fields to hold this info. On the add product screen, make sure you’ve enabled custom fields, then create a new field for each info set. You’ll only need to create new fields once &#8211; the next product you add you’ll be able to select the name of the custom field from the drop down box. Don’t forget to add a featured image, as well be using this to display alongside the info product later on.</p>
<h2>Single Product Template</h2>
<p>If you try to view one of your products now, you’ll probably get a <strong>404 &#8211; Not Found</strong> error. To fix that, head into the <strong>permalinks settings</strong> of WordPress and just hit <strong>Save Settings</strong> once. Now when you view one of your new product entries, depending on your theme, you might see something a little plain. The title and description text are there, but what about all our custom meta info and the image?</p>
<p>To customize the single product views, we’ll need to customize a new template file called <strong>single-products.php</strong> &#8211; do this by duplicating your existing <strong>single.php</strong> so we have the groundwork in place and aren’t starting from scratch.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/single-productsphp.jpg?323f2c" alt="custom post types" width="177" height="122" /></p>
<p>At this point, I’m going to make a very small change to the line that displays “<em>Written by (author) on (date)</em>”, so instead it just reads “<em>Added to the database on (date)</em>”. This is just so I can be sure template is working, and refreshing the single product page should show this change instantly.</p>
<p>Now, to add the featured post image we attached to the product, this one line should do it (I included style info too, in case you need it). I&#8217;ve posted the <a href="http://pastebin.com/5ZiKHFrg">full code to my own single-products.php here</a>, but remember it&#8217;s unique to my theme so simply copying that into your own theme directory may produce unexpected results.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/code-2-thumbnail.png?323f2c" alt="custom post types" width="510" height="35" /></p>
<p>The simplest way to add the meta info anywhere is to use:</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/code-3-meta.png?323f2c" alt="custom post types" width="199" height="37" /></p>
<p>&#8230;but this will only give us a very basic output list of key-value pairs. In order to do anything more complicated with the returned values (such as display a star-rating graphic), you need to grab all the values then iterate over them. [<a href="http://pastebin.com/PteVKCVc">View the code here</a>]:</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/code-4-custom-field-iteration.png?323f2c" alt="how to custom post types" width="500" height="331" /></p>
<p>In the example above, I’m checking each custom field name (the <strong>$key</strong>) to see if it’s called ‘<strong>Level</strong>’. If it <em>is</em> called level, instead of just echoing the value of the field back, I’m displaying a different graphical element based on the content. For any other custom fields, I’m echoing the value as it is, along with the name of the field (which is exactly what <strong>the_meta()</strong> does). Now my single product page looks like this:</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/single-product-view.jpg?323f2c" alt="how to custom post types" width="580" height="395" /></p>
<p>I’m going to leave it there for single product views, as it really depends upon your own theme and what you want to achieve with it. For now, let’s move onto a sidebar widget to display… the 3 highest ranked products in the database?</p>
<h2>Widget</h2>
<p>To do this, I’ve slightly adjusted the code I gave you before in the post <a href="http://www.makeuseof.com/tag/how-to-create-wordpress-widgets/">How to Write a Basic WordPress Widget</a>, but instead of showing a single random post, I’ve adjusted it with the following [<a href="http://pastebin.com/kNAgkekH">view the full code here</a>]:</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/code-5-widget.png?323f2c" alt="how to custom post types" width="580" height="169" /></p>
<p>This will give me 3 posts laid out similar to the example screenshot below. If you’re not seeing any of your products displayed, check very carefully the section that says &amp;meta_key=Rating to make sure you actually have a meta key of that name. Notice how I also chose to display the meta info associated with that product along with the featured thumbnail, but you can edit that particular code block to show whatever you like.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/widget.jpg?323f2c" alt="" width="300" height="300" /></p>
<h2>Product Archives or Listing</h2>
<p>Finally, I also wanted to make an index/archives page, so that visiting <strong>http://yourdomain.com/products/</strong> would show a simple list of all the products, similar to a blog index. The basic excerpt + post thumbnails style I showed you how to make in the <a title="How To Jazz Up Your WordPress By Adding Featured Images" href="http://www.makeuseof.com/tag/jazz-wordpress-blog-adding-featured-images/">How To Add Post Thumbnails To Your Theme</a> article was mostly sufficient, but in order to customize it I duplicated the <strong>archive.php</strong> file in my theme and renamed it <strong>archive-products.php</strong>.</p>
<p>If you don’t already have an archives page, just duplicate <strong>index.php</strong> and rename it to <strong>archive-products.php</strong>. Again, by adjusting the article meta-info line and adding a call to the <strong>the_meta()</strong> somewhere, I got this:</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/archives-and-widget.jpg?323f2c" alt="custom post types in wordpress" width="580" height="406" /></p>
<p>Obviously, it looks a bit silly with both the archives and sidebar, and it could do with a bit more style adjustment, but I’ll leave that up to you!</p>
<p>That’s it from me today. You can view the <a href="http://pastebin.com/g1zYiZN5">complete full code online here</a> &#8211; just copy and paste or download the entire thing into a file called <strong>products.php</strong>, and place it in your plugins directory. You should be able to potentially expand your WordPress blog into a database of anything now! It’s difficult to answer individual problems you might be having, but do please post in the comments if you&#8217;d like some help or would like to show your appreciation &#8211; a tweet or Facebook like would very much be appreciated, or even a mention on your blog if you decide to implement this. Thanks for reading, and don&#8217;t forget all the other <a href="http://www.makeuseof.com/service/developers/">WordPress tutorials</a> we have!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/product-review-database-wordpress-custom-post-types-custom-fields-featured-images-widgets/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How To Regularly Back Up Your Large MySQL Database with MySQLDumper</title>
		<link>http://www.makeuseof.com/tag/regularly-large-mysql-database-mysqldumper/</link>
		<comments>http://www.makeuseof.com/tag/regularly-large-mysql-database-mysqldumper/#comments</comments>
		<pubDate>Fri, 13 May 2011 16:31:37 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[webmaster tools]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=75043</guid>
		<description><![CDATA[As I watch my own Wordpress blog grow in both posts and user comments, I'm starting to eye my growing database with a wary eye. What happens if the server goes down, gets hacked or worse? Shouldn't I be prepared for such a situation with a constant, ready backup of all posts and comments? I finally came across a brilliant free MySQL backup utility called MySQLDumper.]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/dumperlogo2.png"><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/dumperlogo2.png?323f2c" alt="backup and restore sql database" />Having a growing, popular blog is not something that I&#8217;m accustomed to. I&#8217;ve always been in awe of Aibek and his tech staff, and how they always have a backup of MUO on hand whenever anything may go even slightly wrong. As I watch my own WordPress blog grow in both posts and user comments, I&#8217;m starting to eye my growing database with a wary eye. What happens if the server goes down, gets hacked or worse? Shouldn&#8217;t I be prepared for such a situation with a constant, ready backup of all posts and comments?</p>
<p>This is something that a few MUO writers have covered here over the years. Years ago, Aibek himself wrote about <a href="http://www.makeuseof.com/tag/4-free-tools-for-fool-proof-wordpress-backup/">4 tools</a> that were available back then for backing up your database. More recently, Jeffry wrote about the <a href="http://www.makeuseof.com/tag/updraft-simplest-wordpress-backup-restore-utility/">Updraft WordPress plugin</a> for backups, and Tim covered a few <a href="http://www.makeuseof.com/tag/2-methods-storing-wordpress-blog-backups/">manual ways</a> to do backups, such as with FTP.</p>
<p>I admit it, sometimes I&#8217;m lazy and if it&#8217;s not simple and easy I just don&#8217;t have time for it. Plus, I have MySQL databases that are non-Wordpress, so a WordPress-only plugin won&#8217;t work for me. After a bit of searching, I finally came across a brilliant free MySQL backup utility called <a href="http://www.mysqldumper.net">MySQLDumper</a>.</p>
<h2><strong>Installing MySQLDumper</strong></h2>
<p>Running MySQLDumper is actually easier than most applications you&#8217;ve installed on your web server. Unlike WordPress where you have to run an install utility, with MySQLDumper you just extract the Zip files into a subdirectory in your public web folder, and then call the index.html file from your browser. Here, I&#8217;ve copied all files to the &#8220;sqlbackup&#8221; folder on the web server.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump1.png?323f2c" alt="backup and restore sql database" width="579" height="479" /></p>
<p>In this example, to access it (accessing my local web server), the address would be &#8220;<em>http://localhost/sqlbackup/</em>&#8220;  If you&#8217;re installing this on your own web account, just replace &#8220;localhost&#8221; with your domain.</p>
<p>Once you access the index.html file in that folder, the &#8220;<em>MySQLDumper Installation</em>&#8221; screen comes up. This is actually more of a &#8220;configuration&#8221; than an installation. Just click your language and click &#8220;<em>Installation</em>&#8220;.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump2.png?323f2c" alt="mysql backup" width="517" height="479" /></p>
<p>The installation procedure is simply setting up your database access parameters. If you want to use MySQLDumper to back up all of the MySQL databases on your server, then you&#8217;ll need to give it a user ID and password with access to all tables. You can either create a new user on each table just for doing backups, or give the web application root access.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump3.png?323f2c" alt="mysql backup" width="525" height="383" /></p>
<p>Once you click on &#8220;<em>Connect to MySQL</em>&#8220;, the system will attempt to connect to each of the databases on your server and it will give you a status at the bottom.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump4.png?323f2c" alt="mysql backup" width="274" height="159" /></p>
<p>That&#8217;s all there is to it! Once you click <em>Next</em>, you&#8217;ll find yourself on the main control panel of MySQLDumper.</p>
<h2><strong>Using MySQLDumper To Take Database Backups</strong></h2>
<p>The status of your databases, including space limits and usage, is all displayed on the main page. You can switch selected databases by using the dropdown box at the lower left corner of the screen.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump5.png?323f2c" alt="backup large mysql database" width="577" height="520" /></p>
<p>Click on &#8220;<em>Configuration</em>&#8221; to see an overview of all of the MySQL databases on your system. Here, you can also customize SQL commands for each backup dump for individual databases.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump6.png?323f2c" alt="backup large mysql database" width="555" height="404" /></p>
<p>Click on the <em>Email</em> tab inside the configuration area to set up delivery of your backup files via email. If your database isn&#8217;t too huge, and your email account doesn&#8217;t have a small attachment size limit, go for it. However, in most cases this will become impractical, especially if you have a very large and growing WordPress database.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump7.png?323f2c" alt="backup large mysql database" width="552" height="247" /></p>
<p>If you have a huge database (or databases), and if you don&#8217;t want to store all of your backups on the server due to precious limited space, you can FTP the files to a remote location, like a free storage account or a PC you&#8217;ve set up at home as an FTP server just for this purpose.  Every time you perform a backup, the file will be FTP&#8217;d to the location you&#8217;ve defined.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump8.png?323f2c" alt="" width="479" height="415" /></p>
<p>If you want to do a backup, just click on &#8220;<em>Backup</em>&#8221; from the main screen. Make sure the database that you want to back up is selected in the lower left corner, and then click &#8220;<em>Start New Backup</em>.&#8221;</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump9.png?323f2c" alt="" width="579" height="435" /></p>
<p>You can watch as the status bars display the progress of the backup procedure. You&#8217;ll see the table names as they get backed up, the space required of the backup file, and percentage remaining per table and overall.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/sqldump10.png?323f2c" alt="backup and restore sql database" width="497" height="393" /></p>
<p>Once the backup is finished you can find the zipped files stored in the<em> /work/backup/</em> folder inside the folder where you installed MySQLDumper. This web-based app also has the ability to quickly restore your database from any of your backup files in an instant. It also has a database browser that puts PhpMyAdmin to shame.</p>
<p>What really makes MySQLDumper stand apart from the crowd is it is specifically designed to handle huge databases. According to the website, it does this by getting around PHP script timeout limitations by breaking up the backup into segments, and then calls the script recursively until it completes the entire backup process, no matter how large your database is.</p>
<p>Have you ever given MySQLDumper a try? What do you think? What are your favorite tools to backup and restore your MySQL database? Share your insight in the comments section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/regularly-large-mysql-database-mysqldumper/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>OpenSubtitles &#8211; The Web&#8217;s Largest, Completely Free Searchable Subtitles Database</title>
		<link>http://www.makeuseof.com/tag/opensubtitlesorg-webs-largest-completely-free-searchable-subtitles-database/</link>
		<comments>http://www.makeuseof.com/tag/opensubtitlesorg-webs-largest-completely-free-searchable-subtitles-database/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 21:30:37 +0000</pubDate>
		<dc:creator>Tim Brookes</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[entertainment]]></category>
		<category><![CDATA[subtitles]]></category>
		<category><![CDATA[tv shows]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=61024</guid>
		<description><![CDATA[It&#8217;s a rather annoying moment when you realise that film, episode or documentary you downloaded (completely legally, of course) doesn&#8217;t come with the necessary subtitles. For those who are hard of hearing or obsessed with world cinema, subtitles are a necessity. Step in OpenSubtitles.org, a vast database of subtitles that we&#8217;ve happened to mention previously. [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/intro.jpg" /><img style="border: 0px none;margin-left:20px;float:right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/intro.jpg?323f2c" alt="movie subtitles" />It&#8217;s a rather annoying moment when you realise that film, episode or documentary you downloaded (completely legally, of course) doesn&#8217;t come with the necessary subtitles.</p>
<p>For those who are hard of hearing or obsessed with world cinema, subtitles are a necessity. Step in <a href="http://www.opensubtitles.org/en/player">OpenSubtitles.org</a>, a vast database of subtitles that we&#8217;ve <a href="http://www.makeuseof.com/tag/3-subtitle-sources-movies-tv-series/">happened to mention previously</a>.</p>
<p>The key is in the name, but OpenSubtitles.org aims to be as open as possible. This has allowed for a few features that give the website the edge over the competition.</p>
<p><span id="more-61024"></span></p>
<h2>Finding Subtitles</h2>
<p>The home page is packed with info and small text, but if you&#8217;re simply after a quick download then you&#8217;ll be done in no time.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-61026" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/home.jpg?323f2c" alt="movie subtitles" width="580" height="368" /></p>
<p>Finding the subtitles you&#8217;re after is a fairly straightforward process. On the main page, enter your search query and hit <em>Search</em>. You&#8217;ll immediately be taken to a list of possible films that match your query.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-61028" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/search.jpg?323f2c" alt="english subtitles" width="580" height="265" /></p>
<p>Once you&#8217;ve found the film you&#8217;re after you&#8217;ll be taken to the subtitles results for that film. The language of the subtitles you are downloading is indicated via the flag in the second column of the results.</p>
<p>Simply click on a result to learn more information, add a rating or comment or click <em>Download (ZIP)</em> to download your subtitles. Extract the archive (put the subtitles file in the same directory as the movie, for ease) and you&#8217;re good to go.</p>
<p>You can then use your favourite <a href="http://www.makeuseof.com/tags/media-player/">media player</a> to choose the file you just downloaded as a subtitle track and finally enjoy your movie.</p>
<h2>Openness</h2>
<p>In line with the openness mantra that OpenSubtitles.org follows, there are a few other ways of getting hold of your subtitles. There happens to be <a href="http://www.makeuseof.com/tag/api-good-technology-explained/">an API</a> for the website, which a number of applications take advantage of.</p>
<p>The <a href="http://trac.opensubtitles.org/projects/opensubtitles/wiki/ProgramsUsingAPI">list of supported media players</a> is a fairly long one. It&#8217;s also refreshing to see some big-name projects on the list.</p>
<p>One such supported player is <a href="http://smplayer.sourceforge.net/">SMPlayer</a>, a popular <a href="http://www.makeuseof.com/tag/top-5-video-players-linux-os/">Linux media player</a> which also works on Windows. Within SMPlayer is the ability to directly search OpenSubtitles.org using the file you are playing.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-61029" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/smplayer.jpg?323f2c" alt="english subtitles" width="580" height="442" /></p>
<p>Simply click <em>Subtitles</em> then <em>Find Subtitles on OpenSubtitles.org</em>. Your results will be showed almost immediately, and can be directly downloaded with a click.</p>
<p>Another media solution that makes use of OpenSubtitles.org is <a href="http://www.makeuseof.com/tag/boxee-beta-an-app-that-will-change-how-you-think-about-television/">Boxee</a>, the media centre application which transforms your TV into an internet-ready entertainment centre. Simply click the closed caption (&#8220;CC&#8221; in a speech bubble) button and Boxee will automatically connect and display results.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-61031" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/boxee.jpg?323f2c" alt="english movie subtitles" width="580" height="383" /></p>
<p>There are currently more than 220 registered user agents making use of the API, so there&#8217;s a good chance you&#8217;ve already got software that supports OpenSubtitles.</p>
<p>There&#8217;s also the website&#8217;s own project, the <a href="http://www.opensubtitles.org/en/player">OpenSubtitles MKV Player</a> which only works on Windows. Much like the other programs, it is a player that connects and downloads subtitles for you (though there are <a href="http://www.makeuseof.com/tag/top-5-free-media-players-for-windows/">better media solutions</a> out there).</p>
<h2>Uploads &amp; Requests</h2>
<p>If you&#8217;re a particularly patient individual with a love of helping out your fellow man then you might be tempted to upload subtitles. You don&#8217;t necessarily have had to slave away on each and every line, you just might find a version in your collection that the website doesn&#8217;t have.</p>
<p>Simply click the <em>Upload</em> link to be taken to the subtitles upload page. You will need to input a fair bit of information related to the film that you&#8217;ve subtitled, including the <a href="http://www.makeuseof.com/tags/imdb/">IMDB</a> ID and how many frames per second (FPS) your version adheres to.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-61030" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/upload.jpg?323f2c" alt="movie subtitles" width="580" height="408" /></p>
<p>If you can&#8217;t find the subtitles you&#8217;re after then you can lodge a request, but you&#8217;ll need to <a href="http://www.opensubtitles.org/en/newuser">register on the site</a> before you can do so. You can also see what everyone else is after, and whether you can help out.</p>
<p>If all that&#8217;s not enough, then there&#8217;s also some add-ons for your browser. For iGoogle users, you can add an <a href="http://www.google.com/ig/adde?synd=open&amp;source=ggyp&amp;moduleurl=www.opensubtitles.org/addons/plugins/google/opensubtitles-gadget.xml">OpenSubtitles gadget</a>, there&#8217;s also a <a href="https://addons.mozilla.org/en-US/firefox/addon/6982/">Firefox subtitle matcher add-on</a> and an <a href="http://widgets.opera.com/widget/18712/">Opera widget</a> if you&#8217;re that way inclined.</p>
<h2>Conclusion</h2>
<p>There&#8217;s loads of subtitle search engines and databases online, but none quite offer the plug-and-play ease of OpenSubtitles.org. The use of an API to deliver the content directly within media players is second to none.</p>
<p>Whether you&#8217;re physically searching yourself or have a media player that uses the API, you probably won&#8217;t find a faster way to download subtitles online.</p>
<p>Do you have any favourite subtitle spots? Do you use Boxee or SMPlayer and rely on the ability to directly download subtitles? Share the love in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/opensubtitlesorg-webs-largest-completely-free-searchable-subtitles-database/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>4 Online Places To Find International Statistics Quickly</title>
		<link>http://www.makeuseof.com/tag/4-online-places-find-international-statistics-quickly/</link>
		<comments>http://www.makeuseof.com/tag/4-online-places-find-international-statistics-quickly/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 16:31:07 +0000</pubDate>
		<dc:creator>Justin Pot</dc:creator>
				<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[research tools]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=58826</guid>
		<description><![CDATA[We live in an amazing world that is changing quickly. Numbers are one way to grasp what it all means, and the web is full of them. Whether you&#8217;re writing a paper for school, putting together a post for your blog or just trying to win an argument with a friend, knowing where to find [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/flag-chart-01.jpg"><img class="align-left" style="border: 0px none; margin-left: 20px; margin-top: 5px; float: right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/flag-chart-01.jpg?323f2c" alt="international statistics" width="300" height="300" />We live in an amazing world that is changing quickly. Numbers are one way to grasp what it all means, and the web is full of them. Whether you&#8217;re writing a paper for school, putting together a post for your blog or just trying to win an argument with a friend, knowing where to find the international statistics can make all the difference. Population, GDP, Internet usage and fertility rates are all part of the larger story of where humanity is heading.</p>
<p>There&#8217;s no end of out-of-context information  on blogs and websites, so it&#8217;s important to find raw sources of information. You know, information from a primary source instead of an aggregate source. This information empowers you to draw your own conclusions, instead of leading you to them. I&#8217;ve highlighted a few such sources below, so let&#8217;s check them out.</p>
<p><span id="more-58826"></span></p>
<h2>UNdata</h2>
<p>The various branches of the United Nations create staggering amounts of international statistics on a regular basis. Data.un.org gives the people of earth access to this information. <a href="http://data.un.org/">Check out UNdata</a> and you&#8217;ll see a simple search engine database, as well as a selection of the newest information.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/data.un_.canada.png?323f2c" alt="international statistics" width="580" height="230" /></p>
<p>Run a search and you&#8217;ll quickly notice there&#8217;s a lot of information here. The search engine interface makes finding the information you&#8217;re looking for quick, though the amount of information there can be overwhelming. Check this site out if you&#8217;ve got a particular statistic in mind.</p>
<h2>The CIA World Factbook</h2>
<p>If you&#8217;re looking for an overview of a certain country you should really check the CIA World Factbook. This site provides the basic numbers of every country and territory on Earth, including a brief history and more stats than you probably need.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/cia-factbook-sa.png?323f2c" alt="statistics about the world" width="579" height="193" /></p>
<p>Go ahead and <a href="https://www.cia.gov/library/publications/the-world-factbook/">check out the World Factbook</a> right now. You an even <a href="https://www.cia.gov/library/publications/the-world-factbook/docs/flagsoftheworld.html">browse the world&#8217;s countries by flag</a>.</p>
<p>If you&#8217;re anything like me you&#8217;ll even stumble upon territories you didn&#8217;t know existed (like this <a href="https://www.cia.gov/library/publications/the-world-factbook/geos/sb.html">tiny French territory south of Newfoundland</a>). You will then spend far too much time reading about them.</p>
<h2>Internet World Stats</h2>
<p>This one&#8217;s a great collection of Internet usage stats from around the world. The <a href="http://en.wikipedia.org/wiki/Digital_divide">digital divide</a> is a well-publicized phenomenon; these numbers can give you a fantastic amount of context for it. All the information they have is cited, offering a look at where the world&#8217;s Internet users reside.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/internetworld-big.png?323f2c" alt="statistics about the world" width="579" height="253" /></p>
<p>Information is broken down by continent, so be sure to explore a bit to find out how your country ranks. Go ahead and <a href="http://www.internetworldstats.com/">check out Internet World Stats</a>.</p>
<h2>Wikipedia</h2>
<p>Anything can be found on Wikipedia, so its inclusion on this list should surprise no one. Pull up an article about any country or territory and you&#8217;ll find a handy sidebar:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/wikipedia-latin.png?323f2c" alt="international statistics" width="556" height="243" /></p>
<p>This overview is a great way to quickly find stats such as population or GDP.</p>
<p>Not sure if you can trust Wikipedia? Any article worth its word count is heavily cited, so check the article&#8217;s source to find out where it&#8217;s coming from.</p>
<h2>Conclusion</h2>
<p>Numbers, like quotations, can be taken out of context. That&#8217;s the point Mark Twain was trying to make when <a href="http://en.wikipedia.org/wiki/Lies,_damned_lies,_and_statistics">he mis-attributed &#8220;Lies, damned lies and statistics&#8221; to the 19th Century British Prime Minister Benjamin Disraeli</a>. This doesn&#8217;t mean numbers are useless, though; just that you should fact check them.</p>
<p>These sources give you the chance to do just that, but there must be more sources out there. Feel free to share any you know of in the comments below, or to share any interesting numbers you might stumble upon.</p>
<p>Oh, and by the way: the chart at the top of this article represents the top ten countries in a certain category. Feel free to offer guesses below!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/4-online-places-find-international-statistics-quickly/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>The 2 Best Non-Techie Ways To Backup WordPress Blog</title>
		<link>http://www.makeuseof.com/tag/2-methods-storing-wordpress-blog-backups/</link>
		<comments>http://www.makeuseof.com/tag/2-methods-storing-wordpress-blog-backups/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 21:31:36 +0000</pubDate>
		<dc:creator>Tim Lenahan</dc:creator>
				<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[blogging tools]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=44916</guid>
		<description><![CDATA[If you run a blog and you care about your data, you probably keep backups of your blog, right?  What&#8217;s that?  You don&#8217;t?  Well, you should.  If nothing has happened to your blog yet, you may be one of the lucky ones.  What if your site crashes or is hacked?  Your webhost keeps backups?  That&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/04/wordpress-logo.jpg"><img class="align-left" style="border: 0px none; margin-left: 20px; margin-top: 5px; float: right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/04/wordpress-logo.jpg?323f2c" alt="Wordpress Logo" />If you run a blog and you care about your data, you probably keep backups of your blog, right?  What&#8217;s that?  You don&#8217;t?  Well, you should.  If nothing has happened to your blog yet, you may be one of the lucky ones.  What if your site crashes or is hacked?  Your webhost keeps backups?  That&#8217;s good, but what if something goes wrong on their end?  It has happened.</p>
<p>Here at MakeUseOf we have covered the topic of how to backup a WordPress blog before.   In fact, I plan on referencing a couple of the articles in this article.  What I have found through reading and experience is that there are multiple methods of storing your site files once you have backed them up.</p>
<p><span id="more-44916"></span><br />
I would like to share some of those methods to backup a WordPress blog, some orthodox and some unorthodox, and share some of the pluses and minuses of each.  Then I would like to share a few quick tips in order to have the safest backup possible.</p>
<p>First let me mention that there are several different parts to your blog that you will want to back up:</p>
<ul>
<li>The database tables.</li>
<li>The files such as pictures.</li>
</ul>
<p>Each part of your blog is able to be stored in the 2 methods I am about to share.</p>
<h3><strong>1.  Back Up Your WordPress Blog Locally</strong></h3>
<p>One of the possibilities when it comes to storing backed up website files is to back them up locally on your own computer.</p>
<p><strong>Files:</strong></p>
<p>In order to back up the files, you can use tools such as FTP clients <a href="http://www.makeuseof.com/tag/transfer-files-by-ftp-with-filezilla/">FileZilla</a> or <a href="http://www.educ.umu.se/~cobian/cobianbackup.htm">Cobian Backup</a>.  Just access your site via FTP and copy over everything to your local machine.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/07/filezilla.png?323f2c" alt="backup wordpress blog" width="540" height="431" /></p>
<p><strong>Databases:</strong></p>
<p>In order to back up your databases one of the best plugins to go with is <a href="http://wordpress.org/extend/plugins/wp-dbmanager/">WP DB Manager</a> (makes both backing up and restoring a cinch).  A local copy gives the best control and flexibility.</p>
<p>The downside about a local backup is that you&#8217;re also vulnerable to a computer crash.  What are the odds of both your site crashing and your computer at the same time?  I don&#8217;t know but it does happen.  You may want to also back up your local files remotely with <a href="http://www.makeuseof.com/tag/4-services-to-backup-important-data-online/">a service  like Mozy</a>.</p>
<h3><strong>2.  Back Up Your WordPress Site To A Third Party Service</strong></h3>
<p>Another option is to rely on a third party to host your backed up WordPress files.</p>
<p><strong>Files:</strong></p>
<p>The tip at the end of the last method is a good example of using a  third party to keep a backup of your website&#8217;s files using Mozy. You  can also save your files using Google Docs now that they allow you to  save and access any type of file.</p>
<p>Just zip all the files (keeping the directories the same) and save them  there, depending on how much data you have.  However, for an easier solution, keep reading past the database section.</p>
<p><strong>Databases:</strong></p>
<p>A good example is how <a href="http://www.makeuseof.com/tag/wordpress-blog-online/">Online Backup for WordPress</a> works when it backs up the WordPress database to the service&#8217;s server instead of your own computer.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/statusplugin.png?323f2c" alt="backup wordpress blog" width="544" height="213" /></p>
<p>Both of the third party solutions for files and for the databases may work fine for you but if you want an easier solution that covers both, I have the plugin for you. Check out the <a href="http://www.labnol.org/software/backup-wordpress-to-amazon-s3/12825/">Automatic WordPress Backup</a> plugin.  This plugin will backup both the files and the database(s) and upload them to Amazon S3 for you.  Cheap storage plus an easy backup?  Nothing to complain about.</p>
<p>The third party method has several pluses including not having to manage the files on your system, you don&#8217;t have to worry about your PC crashing, and a website restoration could possibly happen from any place if need be.  The downside is that you may not want to rely on someone else to handle your precious data.  What if they mess up?  Like I said before, using multiple methods together is a better idea, just in case.</p>
<h3><strong>How To Restore Your Site From Backup</strong></h3>
<p>Knowing how to restore your site if something should go wrong is also important.</p>
<p><strong>Files:</strong></p>
<p>In order to restore the files, use an FTP program and upload the backup  copy of the files keeping the same directory structure.</p>
<p><strong>Database:</strong></p>
<p>I mentioned the <a href="http://wordpress.org/extend/plugins/wp-dbmanager/">WP DB Manager</a> plugin earlier.  This plugin comes with a restore feature which does the database restoring for you.  If you have just the database file, you can also use phpMyAdmin (<a href="http://codex.wordpress.org/Restoring_Your_Database_From_Backup">the WordPress site has a tutorial on this</a>).</p>
<p>What type of WordPress backup tips do you have?  Are there any tools that I could have linked to in any of these methods?  How do you backup your WordPress blog?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/2-methods-storing-wordpress-blog-backups/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Ant Movie Catalog &#8211; An Open-Source Movie Organizer For Your Video Collection</title>
		<link>http://www.makeuseof.com/tag/ant-movie-catalog-opensource-movie-organizer-entire-video-collection/</link>
		<comments>http://www.makeuseof.com/tag/ant-movie-catalog-opensource-movie-organizer-entire-video-collection/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 18:30:44 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[catalogs]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[imdb]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[organization tools]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=34392</guid>
		<description><![CDATA[My earliest recollection of trips to the video store usually ended with drumming my fingers. I did that while the guy behind the counter filled out the pink index card with the borrower&#8217;s details. Why couldn&#8217;t he be quicker about it? My frets didn&#8217;t speed him up. But any of today&#8217;s open source movie organizer [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/moviestrip.jpg?323f2c" border="0" alt="moviestrip" vspace="5" width="250" height="187" />My earliest recollection of trips to the video store usually ended with drumming my fingers. I did that while the guy behind the counter filled out the pink index card with the borrower&#8217;s details. Why couldn&#8217;t he be quicker about it? My frets didn&#8217;t speed him up. But any of today&#8217;s open source movie organizer or collection managers could have.</p>
<p>I don&#8217;t know if the guy behind the counter has updated his system, but I certainly have. I used to be a disgrace to the fraternity of digital packrats. Not anymore, because I have tidied up my act. From movies to songs, you ask it&#8221;¦I can bring up all the information you might need with a click. Thanks to a bevy of collection managers I have tried out.</p>
<p><span id="more-34392"></span><br />
<a href="http://www.antp.be/software/moviecatalog">Ant Movie Catalog</a> is the latest open source movie organizer that I am sieving my movie collection through. And I have been pleasantly surprised by the efficiency of this <a href="http://www.makeuseof.com/tag/4-open-source-collection-manager-apps/">Open Source</a> software. Ant Movie Catalog is a free open source movie organizer that you can <a href="http://www.antp.be/software/moviecatalog">download</a> and install or download, unpack and run <em>without</em> an install. I opted for the later. The download size is a tiny 3.5MB.</p>
<p>When you take the first look at the screen, you might feel overwhelmed by the sheer number of fields that need to be filled out. For a true movie lover, that&#8217;s candy for the eyes because all he wants are details and details about his favorite movies. But for him also, it would be a migraine inducer if he had to fill it all up by himself. But then why should you when the web can do it automatically for you.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/AMC-01.png?323f2c" alt="open source movie organizer" /></p>
<p>Here&#8217;s how I did it for the first bunch of film titles I put into the collection.</p>
<h3>In 3 clicks, get all the information on your movie</h3>
<p>Ant Movie Catalog not only goes into a lot of details for a movie but it makes it easy to get all that from a host of film databases. To fill out all the fields for a movie, you need to just click on Movie &#8220;“ Add&#8221;¦Put in the name in the Original Title field box and then either click on the <em>Get Information</em> toolbar icon or go via the menu (<em>Movie &#8220;“ Get Information &#8220;“ From internet using a script</em>).</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/AMC-02.png?323f2c" alt="Ant movie catalog" /></p>
<p>The scripts are where all the riches of Ant Movie Catalog lie. You have about 238 scripts at last count. You can try any one of them. These scripts are nothing but codes that help the software get specific information from online movie websites and online DVD stores. Familiar biggies like Amazon and IMDB are there of course.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/AMC-03.png?323f2c" alt="open source movie organizer" /></p>
<p>Run the any of the scripts; for similar named titles. Select yours and let Ant Movie Catalog collect all the values for the fields. You can customize which fields to include in your database.</p>
<p>You can add a bunch of titles in one go and complete your collection with a few clicks. Ant Movie Catalog also facilitates import of movie titles from other file formats.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/AMC-04.png?323f2c" alt="AMC-04" /></p>
<p>Ant Movie Catalog also connects any movie to online movie info sites like &#8220;“ IMDB, Rotten Tomatoes, DVD Empire and DVDZone2. You can add more sites from <em>Preferences</em>.</p>
<h3>So many ways to visualize all that information</h3>
<p>Ant Movie Catalog is an information hound&#8217;s delight. There are many ways to order, categorize and display all the movie information collected in the database.</p>
<p>You can group movies by any of the field values. For instance, group it by borrower to see which of your friend has begged, borrowed or stolen which title. Or by <em>Media Type</em> to give you an idea of the format you have used to archive the movie.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/AMC-05.png?323f2c" alt="AMC-05" /></p>
<p>For the guy who has an eye for pie charts and bar graphs, the <em>Statistics</em> feature is an information mine.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/AMC-06.png?323f2c" alt="open source movie cataloging tool" /></p>
<p>Ant Movie Catalog has an added <em>Loan</em> Management feature. Using it, you can manage the movies that your friends have borrowed from you. You can add borrower names and keep tabs by checking in and checking out the titles that you lend out.</p>
<p>The feature that I use most often is the <em>Export to another file format</em>. You can use any of the six available formats to send out a detailed list of your movies. For instance, I use the HTML format to send out the titles I have to my friends.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/AMC-07.png?323f2c" alt="AMC-07" /></p>
<p>And of course, you can print out your entire movie list with lots of customized templates to choose from.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/AMC-08.png?323f2c" alt="open source movie organizer" /></p>
<p>Ant Movie Catalog may lack the glamour but it catches the grammar of an efficient and comprehensive collection manager. Some extra bits like a feature to track movies by how many times we watch it would have helped.</p>
<p>But it squeezes in all the information it can find and presents it straight. For the sake of having all the <a href="http://www.makeuseof.com/service/movies/">movies</a> info at your fingertips, that&#8217;s all you want in the end.</p>
<p><a href="http://www.antp.be/software/moviecatalog">Ant Movie Catalog</a> version 3.5.1.2 is compatible with all Windows versions up to Win XP. The site says that &#8211; the compatibility with Windows Vista and 7 is not perfect, but that does not prevent the program from running normally.</p>
<p>Do you use any open source movie organizers? Which is the one for you?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/ant-movie-catalog-opensource-movie-organizer-entire-video-collection/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How To Easily Auto Backup Your WordPress Database</title>
		<link>http://www.makeuseof.com/tag/how-to-easily-automate-backing-up-your-wordpress-blog/</link>
		<comments>http://www.makeuseof.com/tag/how-to-easily-automate-backing-up-your-wordpress-blog/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 20:01:02 +0000</pubDate>
		<dc:creator>Dean Sherwin</dc:creator>
				<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=28593</guid>
		<description><![CDATA[So for the past few weeks my mind has pretty much been in &#8216;blog&#8217; mode, which you can probably tell due to my recent fixation on blog related posts. I&#8217;ve done nothing but think about my new blog and over the previous weekend I got the barebones live on the net. However, it didn&#8217;t all [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/backup_thumb.jpg?323f2c" border="0" alt="backup" vspace="5" align="left" /> So for the past few weeks my mind has pretty much been in &#8216;blog&#8217; mode, which you can probably tell due to my <a href="http://www.makeuseof.com/tag/author/dsherwin">recent fixation on blog related posts</a>. I&#8217;ve done nothing but think about my new blog and over the previous weekend I got the barebones live on the net.</p>
<p>However, it didn&#8217;t all go to plan. There was something wrong with the host which left my site back in 1982 until the MUO authors, more specifically <a href="http://www.makeuseof.com/tag/author/karl-l-gechlik/">Karl</a>, was able to get her up and running while I yelled at my hosting company.</p>
<p>So I was happy. For a while. But then the thought of &#8220;˜what if the host was to go belly up right now?&#8217; popped into my mind. At any minute it could all just go wrong and I&#8217;d be left blogless. All my posts would be gone. The theme I&#8217;ve fine-tuned. The media I&#8217;ve uploaded. It would be the virtual equivalent of pulling the pin from the hand grenade and tossing it into the epicentre of my site. The only remnants of its existence being a &#8217;404&#8242; error. And you want to know the worst thing? No matter how many times your press &#8216;F5&#8242;, the blog simply wont appear. Ever.</p>
<p>There are two things you need to do to have a full backup of your website. The first one is easy, you just have to backups server files. This can be easily done using any FTP client. Just connect to your server and copy the contents of the folder to your computer. </p>
<p>Second, you need to backup your database. Figuring out how to backup your WordPress blog database is the way to go. Most definitely.</p>
<p>One could do this the hard way. You could manually backup everything using an FTP client and an external hard drive. But that&#8217;s the hard way. So here is an easy way to backup your WordPress blog &#8220;“ in three easy steps no less.</p>
<p><span id="more-28593"></span></p>
<h3><strong>Getting a WordPress database &#8216;back up&#8217; plug-in</strong></h3>
<p>If there&#8217;s one thing that separates WordPress from the other half dozen popular blogging platforms, it&#8217;s the abundance of plug-ins. There are quite a few which back-up your blog but I recommend using the <a href="http://ilfilosofo.com/blog/wp-db-backup/">&#8216;WordPress Database Backup Plugin&#8217;</a>. For those of you familiar with the innermost working of a website &#8220;“ this plug-in will back-up your tables in your WordPress database. For those of you who aren&#8217;t familiar with the innermost working of a website &#8220;“ it will save you a weekend of going through the five stages of grief.</p>
<h3><strong>Installing the plugin</strong></h3>
<p>Have the plugin downloaded? You sure? You&#8217;re not just reading on through this post while your blog sits utterly vulnerable to destruction? OK, good.</p>
<p><img style="border: 0pt none; margin-right: 20px; margin-top: 5px; margin-bottom: 5px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/backupwordpressaddnewplugin_thumb.png?323f2c" border="0" alt="backup your blog" vspace="5" width="153" height="130" align="left" />Now comes the installation. It&#8217;s pretty much the same as any other plugin installation.</p>
<p>First go to the plugin menu on the WordPress admin page and under plugins click &#8216;<em>add new</em>&#8216; as seen in the screenshot. Upload the plugin. You can leave it in the .zip format if you like. Then click &#8216;<em>Activate</em>&#8216; once the install has finished.</p>
<h3><strong>Setting it up</strong></h3>
<p>Go to &#8216;<em>Tools</em>&#8216; along the left-hand sidebar in the WordPress admin area. Under &#8216;<em>Tools</em>&#8216; you&#8217;ll find a new menu called &#8216;<em>Backup</em>&#8216;. Click on that.</p>
<p>There are three main areas that you have to fill out in the screen which appears. The first area is entitled &#8216;<em>Tables</em>&#8216; and put simply, it allows you to specify what you want to back up. I&#8217;d suggest leaving everything ticked. This will basically back up your entire blog including posts, comments, users and settings.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/backupwp_thumb.jpg?323f2c" border="0" alt="backup your blog" width="447" height="450" /></p>
<p>Then, under &#8216;<em>Back Up Options</em>&#8216; you can select where you want the backup files to go. You can either save to your server, download to your computer or e-mail to a specified address. Pick whichever one works for you. I&#8217;ll be keeping mine on an external hard-drive so I&#8217;ll be downloading it to my computer. However the other two options &#8220;“ particularly the e-mail options are also good.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/wpbackup2_thumb.png?323f2c" border="0" alt="backup your blog" width="470" height="555" /></p>
<p>Finally, the third table allows you to choose how often your blog is backed up. This is done automatically. I&#8217;d suggest doing it at least weekly. If your blog is really big with multiple posts per hour you can back up hourly, daily and twice daily.</p>
<p>Finally click &#8216;<em>Backup Now</em>&#8216; under the second section to make sure you&#8217;re safe from the get-go.</p>
<p>So now if it all does go horribly wrong (i.e. a virtual hand grenade has just blown up in serverland) you&#8217;ll be back up (no pun intended) in no time by simply restoring the backed up database and uploading WordPress files using an FTP such as FileZilla. </p>
<p>For more great plugins for your WordPress blog <a href="http://www.makeuseof.com/tags/wordpress-plugins/">click here</a>.</p>
<p><small>Image Credit: <a rel="nofollow" href="http://www.flickr.com/photos/johnloo/1021069570/">John Loo</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/how-to-easily-automate-backing-up-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>4 Websites To Conduct A Niche Industry Analysis</title>
		<link>http://www.makeuseof.com/tag/how-to-do-a-niche-industry-analysis-with-free-online-tools/</link>
		<comments>http://www.makeuseof.com/tag/how-to-do-a-niche-industry-analysis-with-free-online-tools/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 18:00:01 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[advanced search]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[research tools]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=27784</guid>
		<description><![CDATA[Have you ever had a fantastic business idea that you&#8217;re absolutely certain will make loads of profit with hardly any effort? Maybe you&#8217;re considering opening up a shop or offering a service in your part of the world. One of the more difficult aspects of starting a new business is putting together an accurate analysis [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px; margin-top: 5px; margin-bottom: 5px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/industry.jpg?323f2c" alt="free industry analysis" vspace="5" width="300" height="225" align="left" />Have you ever had a fantastic business idea that you&#8217;re absolutely certain will make loads of profit with hardly any effort? Maybe you&#8217;re considering opening up a shop or offering a service in your part of the world. One of the more difficult aspects of starting a new business is putting together an accurate analysis of the local market and trying to determine if there&#8217;s a demand for your service. Even better, if you can analyze the industry and uncover a unique &#8220;niche&#8221; that is either unserved or underserved, you could create a wildly successful business.</p>
<p>Many companies spend a fortune for a complete niche industry analysis. I should know &#8211; I used to conduct the research and write up niche industry reports for a company that sold those reports to big businesses. Today, I&#8217;d like to share some inside secrets with MakeUseOf readers and reveal the naked truth &#8211; you don&#8217;t need memberships to special databases or statistics firms to uncover those industry niches, all you need to know is where to look for the information yourself and you can create your own free industry analysis.</p>
<h3>Always Start With Your Government</h3>
<p>The truth is, almost every government in every nation devotes a great deal of effort and resources to measuring the just about every aspect of society &#8211; from how many pounds of potatoes your country produces to the number of people born with specific diseases. Regardless of the industry you&#8217;re looking into, the odds are pretty good that there&#8217;s a government agency that produced a report on the topic. For example, when I was digging into Real Estate markets, I discovered a report on Mortgage Loans produced by the special &#8220;Office of Thrift Supervision&#8221; within the U.S. Department of the Treasury. Seriously, there&#8217;s such an office. The mortgage loan data they provided (for free, I might add) was exactly what I needed.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-27785" style="border: 1px solid black;" title="niche1" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/niche1.jpg?323f2c" alt="free industry analysis" width="521" height="508" /></p>
<p>The best place to start when you&#8217;re creating your free industry analysis is at an online government office listing directory such as my favorite, <a href="http://www.usa.gov/Agencies/Federal/All_Agencies/index.shtml">USA.gov</a> for the U.S. or <a href="http://www.direct.gov.uk">Direct.gov</a> for the UK. The individual agencies that you&#8217;ll find offer their own library chock-full of statistics, charts and detailed demographics that you&#8217;ll be hard-pressed to find anywhere else. For an international listing of government agencies around the world, the FDA (of all places) offers a fairly <a href="http://www.fda.gov/InternationalPrograms/Agreements/ucm131179.htm">comprehensive list</a>.</p>
<p><span id="more-27784"></span></p>
<h3>Schools and University Studies and Research</h3>
<p>It&#8217;s almost comical that companies spend so much money for a private corporation to produce a niche analysis on an industry when there&#8217;s so much free information available on the Internet. Aside from government agencies, Universities and Colleges from around the world constantly conduct studies and collect data and then publish the results online for free. These are typically published in the form of &#8220;white papers.&#8221; One of the best way to find these studies is by using <a href="http://scholar.google.com/">Google Scholar</a>, a white paper search engine that will turn up those results for you.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-27786" style="border: 1px solid black;" title="niche4" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/niche4.jpg?323f2c" alt="free industry analysis" width="490" height="281" /></p>
<p>The quality of data that you will find from these results and from the various University research projects are amazing. For example, while researching the real estate market, I uncovered a detailed Harvard study on rental housing.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-27787" style="border: 1px solid black;" title="niche3" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/niche3.jpg?323f2c" alt="sample industry analysis" width="551" height="432" /></p>
<p>If you&#8217;re looking for data, graphs and charts that uncover industry trends, social demographics and reveal the sort of niche opportunities for your business &#8211; you&#8217;ve got it all right here. Don&#8217;t only search for the larger schools, if you&#8217;re interested in your local market, make sure to check on any local studies your local community college or University might have completed &#8211; you may be very surprised what you find.</p>
<h3>The Pew Research Center</h3>
<p>In almost every niche analysis report I&#8217;ve ever written, I usually always come back to the <a href="http://pewresearch.org/">Pew Research Center</a> for research. The motto of this organization is, &#8220;Numbers, Facts and Trends Shaping Your World.&#8221; This is no exaggeration, Pew publishes some of the most obscure and eye opening social trends of any research organization I&#8217;ve seen.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-27788" style="border: 1px solid black;" title="niche5" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/niche5.jpg?323f2c" alt="sample industry analysis" width="535" height="499" /></p>
<p>It&#8217;s from Pew that I learned that middle-age women make up the largest demographic of users for online games, or that more teen girls use social networks than boys do. If you want to uncover any niche opportunities for a potential business, this site should be at the top of your bookmarks.</p>
<h3>Using Google Trends to Reveal Global Demographics</h3>
<p>Now, this article wouldn&#8217;t be complete if I didn&#8217;t mention the single tool that I&#8217;ve used above all others to uncover unique niche opportunities. It goes without saying that the Internet has become an important gauge of public sentiment, and of course since Google Trends reveals &#8220;the big picture&#8221; for particular keyword searches, then it makes sense that you should be able to use <a href="http://www.google.com/trends">Google Trends</a> to identify industry trends. In a simple example, if you&#8217;re thinking of investing in rental properties and becoming a landlord, it stands to reason that you would want the trend of people searching for &#8220;apartments for rent&#8221; to be rising.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-27789" style="border: 1px solid black;" title="niche6" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/niche6.jpg?323f2c" alt="sample industry analysis" width="571" height="419" /></p>
<p>Well, look at that. Google trends reveals that while interest in apartments held pretty steady (aside from the annual fluctuations) from 2004 through 2008, there&#8217;s been a sudden upswing in public interest in apartments in 2009 &#8211; interesting! With Google trends, you can dig even deeper than this. By copying each annual graph and overlaying them together (using your favorite image editing software), you can also reveal seasonal patterns. In this case doing so would reveal what part of the year more people usually hunt for apartments.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-27791" style="border: 1px solid black;" title="niche7" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/niche7.jpg?323f2c" alt="how to write an industry analysis" width="566" height="226" /></p>
<p>As you can see here, most people are looking for apartments during midsummer, and then that interest tanks as the school year approaches, recovering only at the end of the year. While this particular trend isn&#8217;t very shocking, you would be very surprised to see some of the fascinating seasonal trends that Google Trends sometimes reveals within certain industries.</p>
<p>So, whether you&#8217;re just curious about the current market for your small business idea, or you&#8217;re thinking about opening an enterprise on a much larger scale, just remember that the tools and resources are available on the web so that you can identify those awesome niche opportunities yourself.</p>
<p>Have you ever started your own business? What online tools and resources did you use to research your market? Share your insight in the comments section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/how-to-do-a-niche-industry-analysis-with-free-online-tools/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Browse, Download &amp; Install Freeware Easily With FreeWareUpdater</title>
		<link>http://www.makeuseof.com/tag/browse-download-install-freeware-easily-with-freewareupdater/</link>
		<comments>http://www.makeuseof.com/tag/browse-download-install-freeware-easily-with-freewareupdater/#comments</comments>
		<pubDate>Wed, 27 May 2009 21:00:44 +0000</pubDate>
		<dc:creator>Guy McDowell</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=18027</guid>
		<description><![CDATA[With all the downloading, reviewing, testing and occasionally, publishing of freeware that I do, you would think I would have seen this sooner. FreeWareUpdater is a simple, yet very effective tool for people who like freeware. Note, personal ethics and the laws of the nation require that I disclose to you the fact that I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-18099" title="logo" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/logo.jpg?323f2c" alt="logo" width="251" height="102" /></p>
<p style="text-align: left;">With all the downloading, reviewing, testing and occasionally, publishing of freeware that I do, you would think I would have seen this sooner. <strong>FreeWareUpdater </strong>is a simple, yet very effective tool for people who like freeware. Note, personal ethics and the laws of the nation require that I disclose to you the fact that I get 10% of every sale of FreewareUpdater. Which is, um, 25% of zero, carry the one, um, ah, it&#8217;s exactly zero. Raw deal.</p>
<p>Anyway, the point of FreeWareUpdater is to present you with a catalogue of freeware and open source software (OSS). From that catalogue you can download and install what you think you would like. Once the freeware of your choice is installed, FreeWareUpdater monitors the new software&#8217;s website for updates. Occasionally, FreeWareUpdater adds new software to its catalogue as well.<br />
<span id="more-18027"></span></p>
<h2>Download and Install FreeWareUpdater</h2>
<p>You can get the software over at <a href="http://www.freewareupdater.com/" target="_blank">FreeWareUpdater.com</a>. Install is a breeze, since the only option is where you want to install the program.</p>
<h2>Open Up FreeWareUpdater and Choose your Freeware</h2>
<p>At last count, there are 203 different pieces of freeware you can download through this app, in about 40 categories ranging from <strong>CD and DVD Tools</strong> to <strong>Video Software</strong>. Some of the software comes from heavy-hitters such as 7zip, Adobe, TurboCash, Google, and <a href="http://www.makeuseof.com/tag/get-geeky-with-hijackthis/" target="_blank">HijackThis</a>. I&#8217;ve already got most of those installed, so I&#8217;m going for something a little different for demonstration purposes. I&#8217;m thinking <strong><a href="http://www.makeuseof.com/tag/explore-the-night-sky-with-stellarium/" target="_blank">Stellarium</a>. </strong>Sounds pretty.<strong><br />
</strong></p>
<p style="text-align: left;"><strong><img class="aligncenter size-full wp-image-18089" style="margin-top: 10px; margin-bottom: 10px;" title="stellarium" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/stellarium1.jpg?323f2c" alt="stellarium" width="390" height="71" /></strong>&#8220;What is Stellarium?&#8221;, you ask. The brief above gives you a short summary, but if you look to the bottom left-hand corner of FreeWareUpdater you&#8217;ll see the <strong>Application Info</strong> button. Give it a click!</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-18090" style="margin-top: 10px; margin-bottom: 10px;" title="application_info_button" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/application_info.jpg?323f2c" alt="application_info_button" width="191" height="93" />There you go. Now you see a full description of the program, as well as some other information you might find important.</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-18092" style="margin-top: 10px; margin-bottom: 10px;" title="stellarium_information" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/stellarium_information1.jpg?323f2c" alt="stellarium_information" width="184" height="222" />That&#8217;s cool. I didn&#8217;t know that a 3 dimensional map of the stars was called a stellarium. Clicking on <strong>View full description</strong> opens a web page on the FreeWareUpdater site that tells you even more about the software. I want it.</p>
<p>Click on the <strong>Stellarium</strong> box so that it is highlighted the darker blue. Look up in the top of FreeWareUpdater. Click on the <strong>Download and Install </strong>icon.</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-18093" style="margin-top: 10px; margin-bottom: 10px;" title="download_and_install" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/download_and_install.jpg?323f2c" alt="download_and_install" width="418" height="222" />Oh lookie! There it is downloading!</p>
<p><img class="aligncenter size-full wp-image-18094" title="download_stellarium" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/download_stellarium.jpg?323f2c" alt="download_stellarium" width="438" height="129" /></p>
<p>Once the download is complete, the install process for Stellarium starts. I won&#8217;t go into the install of that since it isn&#8217;t pertinent to our article. But here&#8217;s a picture for snickers and giggles.</p>
<p><img class="aligncenter size-full wp-image-18097" title="stellarium_install_screen" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/stellarium_install_screen.jpg?323f2c" alt="stellarium_install_screen" width="503" height="392" /></p>
<p>FreeWareUpdater will also alert you to updates for freeware that you have installed through it. It might be a little shaky on that, but so far, it&#8217;s the best software I&#8217;ve found (for free) to do this. It&#8217;s a great app for new users to explore the amazing world of freeware and open source software.</p>
<p><strong>Caution:</strong> It appears that FreeWareUpdater.com is a one-person show. So don&#8217;t go expecting awesome tech support or hourly updates. It is usually the one-man-show that is the backbone of the freeware and OSS movement. Be thankful for their time, and for the cost of the application. If it&#8217;s not good enough for you, trot on down to your local <em>SpendAGrand</em> computer store and pay through the nose for something that is marginally better.</p>
<p>What do you use to manage your freeware? Got links to another cool app like this? I&#8217;d love to hear about it in the comments. I almost always respond to them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/browse-download-install-freeware-easily-with-freewareupdater/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>18 WordPress Security Plugins &amp; Tips To Secure Your Blog</title>
		<link>http://www.makeuseof.com/tag/18-useful-plugins-and-hacks-to-protect-your-wordpress-blog/</link>
		<comments>http://www.makeuseof.com/tag/18-useful-plugins-and-hacks-to-protect-your-wordpress-blog/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 16:44:32 +0000</pubDate>
		<dc:creator>Damien Oh</dc:creator>
				<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=14022</guid>
		<description><![CDATA[Without a doubt, for a self-hosted blog, WordPress is the best blog CMS that you can get. However, being a popular and open source software, it also means that hackers have full access to the code which they can scrutinize to find any exploits they can use to hack into any WordPress-enabled site. On the [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/wordpresslogin.png?323f2c" alt="wordpress-security-plugin" vspace="10" width="242" height="320" align="left" />Without a doubt, for a self-hosted blog, WordPress is the best blog CMS that you can get. However, being a popular and open source software, it also means that hackers have full access to the code which they can scrutinize to find any exploits they can use to hack into any WordPress-enabled site.</p>
<p>On the good side, one of the best things about WordPress is its plugin system that allows anyone to install any plugins or create your own plugins to extend its functionality, including improving security.</p>
<p>Here, I have listed some wordpress security plugins (and a couple of tricks) that you can use to secure WordPress blog.</p>
<p>All the plugins and tricks listed below are meant for WP 2.7 and above. If you are still using an older version of WordPress, it&#8217;s time to upgrade your blog.</p>
<h2><strong>Protecting Your Login</strong></h2>
<h3><strong><a href="http://wordpress.org/extend/plugins/chap-secure-login/" target="_blank">1. CHAP Secure Login</a></strong></h3>
<p>This plugin uses the <a href="http://en.wikipedia.org/wiki/Challenge-handshake_authentication_protocol" target="_blank">CHAP</a> protocol to encrypt your password.  The password is first salted with a random number (nonce) generated by the session, followed by the md5 transformation algorithm. This result is then sent to the server where it is decrpyted and authenticated. This is a zero-configuration plugin, which means you can use it immediately after activating it.</p>
<h3><strong><a href="http://wordpress.org/extend/plugins/stealth-login/" target="_blank">2. Stealth Login</a></strong></h3>
<p>Stealth Login obfuscates your login page by allowing you to define a custom login page rather than the default wp-login.php. In the event that your password is leaked, the hacker will also have a hard time finding the correct login URL. A good use of this is to prevent any malicious bots from accessing your wp-login.php file and attempting to break in.</p>
<h3><strong><a href="http://wordpress.org/extend/plugins/login-lockdown/" target="_blank">3. Login Lockdown</a></strong></h3>
<p>Login Lockdown is useful in preventing a brute force attack. What Login LockDown does is to record the IP address and timestamp of every failed login attempt. If more than a certain number of attempts are detected within a short period of time from the same IP range, it will lockdown the login function and prevent any people from that IP range to log in.</p>
<h3><strong><a href="http://wordpress.org/extend/plugins/askapache-password-protect/" target="_blank">4. AskApache Password Protect</a></strong></h3>
<p>This plugin adds an additional HTTP authentication  to provide a second layer of defense for your blog. You can set up password protection for your blog using HTTP Basic Authentication, or you can choose to use the more secure HTTP Digest Authentication.</p>
<p>Note that this plugin might/might not work depending on your server capability. If your site does not pass the AskApache configuration tests (the tests run by the plugin to detect your server capabilities), contact your web host and see if they can make changes on the server side.</p>
<h3><strong><a href="http://wordpress.org/extend/plugins/semisecure-login-reimagined/" target="_blank">5. Semisecure Login Reimagined</a></strong></h3>
<p>This plugin provides a &#8220;semisecure&#8221; login environment by encrypting your password with the <a href="http://en.wikipedia.org/wiki/RSA" target="_blank">RSA cryptography</a></p>
<h2><strong>Protecting Your Database</strong></h2>
<h3><strong><a href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">6. WP-DB-Backup</a></strong></h3>
<p>Perhaps for some of you, backing up a database could mean a troublesome technical chore. With WP-DB-Backup, you just need to configure it once and get it to run automatically at regular intervals.</p>
<p>What this plugin does is to automate the backing up of your database and have it sent to your email inbox. Other than the default table created by WordPress, you can also backup custom tables created by plugins. In the event that your account crashes, you can easily import and restore the database with the backup.</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-dbmanager/" target="_blank">7. WP-DBManager</a></h3>
<p>Wp-DBManager is just like a phpmyadmin within your dashboard. You can easily manage your database directly within your dashboard. There are useful features such as optimizing/repairing/backing up/restoring your database and if you are technical enough, you can even run your own SQL query from the option page.</p>
<p>On the bad side, if any hackers manage to login to your site, this plugin is going to be a gateway for them to create havoc in your database.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/wp-dbmanager.jpg?323f2c" alt="how to secure wordpress blog" /></p>
<h3><strong>8. Change database table prefix</strong></h3>
<p>The default prefix used by WordPress is &#8220;wp&#8221;. You can easily change the prefix to other terms that are difficult to guess using the <a href="http://wordpress.org/extend/plugins/wp-security-scan/" target="_blank">WP-Security-Scan</a>. More detail on this plugin below.</p>
<h3><strong>9. Protect your wp-config.php file</strong></h3>
<p>Your wp-config.php file contains all your database login credentials and it should be hidden from public view in all circumstances. In your htaccess file, put in this line:</p>
<pre>&lt;Files wp-config.php&gt;
order allow,deny
deny from all
&lt;/Files&gt;</pre>
<p>to prevent anyone from viewing the wp-config.php file.</p>
<h2><strong>Protecting Your Admin Page</strong></h2>
<h3><strong><a href="http://wordpress.org/extend/plugins/admin-ssl-secure-admin/" target="_blank">10. Admin SSL</a></strong></h3>
<p>This plugin forces SSL on all pages where passwords can be entered so that all information transmitted are encrypted.</p>
<p>One thing though, you have to own a SSL certificate before you can do it. If you are not willing to shell out the extra money to buy a private SSL certificate, you can ask your Web host about Shared SSL. Most web hosts provide Shared SSL for all their clients and it is easy to configure.</p>
<h3><strong>11. Change login username</strong></h3>
<p>Using &#8220;admin&#8221; as your login username is the last thing you want to do. When you first installed WordPress, you should immediately create another administrator account with your own username and password and delete the &#8220;admin&#8221; account.</p>
<h2><strong>Prevent Others From Viewing Your Internal File Structure</strong></h2>
<h3><strong>12. Hiding the WP version</strong></h3>
<p>In most WordPress themes under the &lt;head&gt; section, there is always a line of code showing the WordPress version that you are using. Giving away your WordPress version number means telling the hacker what exploit to use to hack into your site.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/wp-version.jpg?323f2c" alt="wordpress security test" /></p>
<p>Since WP2.6.5, WordPress has made it even harder to remove the wp version as it embeds that information within the <em>wp_header</em> tag. A plugin that you can use to remove that information is <a href="http://wordpress.org/extend/plugins/wp-security-scan/" target="_blank">WP-Security-Scan</a>.</p>
<h3><strong>13. Hiding the WP-content</strong></h3>
<p>The WP-content folder is where you stored all your plugins and theme files. This is the place where you want to prevent other people from looking into. You can either upload a blank <em>index.html</em> file to the wp-content folder, or create a .htaccess file in the wp-content folder and add this line:</p>
<pre>
<pre>Options All -Indexes</pre>
</pre>
<h3><strong>14. Block wp-folder from indexing by search engines</strong></h3>
<p>While you want the search engines to index your blog and bring in lots of traffic, the last thing that you want to see is to let the search engines expose your internal file structure to the public. What you can do is to block all your wp-folder from indexing by search engine by adding the following entries to the robot.txt:</p>
<pre>
<pre>Disallow: /wp-* </pre>
</pre>
<h2><strong>Maintenance</strong></h2>
<h3><strong><a href="http://wordpress.org/extend/plugins/wp-security-scan/" target="_blank">15. WP Security Scan</a></strong></h3>
<p>I have mentioned this plugin several times, so it is time for me to explain what it does. WP-Security-Scan checks your WordPress for security vulnerabilities and suggests/provides corrective actions. The corrective actions include changing your database prefix, hiding the WordPress version number from the header and allows you to test out the strength of your password.</p>
<p>Once in a while, it is a good idea to run the inbuilt security scanner and check your blog for any security invulnerabilities.</p>
<h3><strong>16. Change password regularly</strong></h3>
<p>Not only should you change your password regularly, you must also make sure that it is a strong one. If you have difficulty in creating one, find one how you can <a href="http://www.makeuseof.com/tag/how-to-create-strong-password-that-you-can-remember-easily/" target="_blank">create strong passwords that you can remember easily</a>.</p>
<h3><strong>17. Update WordPress and all plugins to the latest version</strong></h3>
<p>Needless to say, upgrading to the latest version of WordPress and plugins is the best way to protect yourself.</p>
<h2>Protecting Your Connection</h2>
<h3><strong>18. SFTP</strong></h3>
<p>Transferring files to your online account is a common thing to do. However, instead of using the unsecured FTP, you should use <a href="http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol" target="_blank">SFTP</a> (Secure FTP). This will create a SSH connection and sent all your files encrypted to the server. If you need help creating a SFTP connection, here&#8217;s the <a href="http://maketecheasier.com/connect-to-your-wordpress-account-via-secure-ftp/2009/03/09" target="_blank">guide</a>.</p>
<p>The above information should be sufficient for you to create a secure WordPress blog. If you have not implemented any of these, I would urge you to do so now.</p>
<p>What other methods do you use to secure your WordPress blog?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/18-useful-plugins-and-hacks-to-protect-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>67</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/48 queries in 0.268 seconds using apc
Object Caching 743/869 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 16:31:40 -->
