<?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>Aurstad Success</title>
	<atom:link href="http://aurstad.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://aurstad.org</link>
	<description>Passion Into Knowledge</description>
	<lastBuildDate>Mon, 07 Sep 2009 18:25:10 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>9 Important Steps On Securing Your WordPress Blog</title>
		<link>http://aurstad.org/security-tips/9-important-steps-on-securing-your-wordpress-blog/</link>
		<comments>http://aurstad.org/security-tips/9-important-steps-on-securing-your-wordpress-blog/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 18:25:10 +0000</pubDate>
		<dc:creator>haurs</dc:creator>
				<category><![CDATA[Security Tips]]></category>
		<category><![CDATA[Securing WordPress]]></category>
		<category><![CDATA[WordPress 2.8]]></category>
		<category><![CDATA[WordPress 2.8.3]]></category>
		<category><![CDATA[WordPress 2.8.4]]></category>

		<guid isPermaLink="false">http://aurstad.org/?p=192</guid>
		<description><![CDATA[Whether you&#8217;re starting an online business or setting up a personal blog, there are several security priorities you better look at if you want to reduce the risk of getting website robbed online. Below you&#8217;ll find 9 steps of what I consider to be the most important security actions to take if running WordPress.
If you&#8217;re all new to WordPress, this ...]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 272px"><a href="http://www.flickr.com/photos/groundzero/97679390/"><img title="Securing Your Blog" src="http://farm1.static.flickr.com/32/97679390_297fee83a0.jpg" alt="Photo by ground.zero" width="262" height="350" /></a><p class="wp-caption-text">Photo by ground.zero</p></div>
<p>Whether you&#8217;re starting an online business or setting up a personal blog, there are several security priorities you better look at if you want to reduce the risk of getting website robbed online. Below you&#8217;ll find 9 steps of what I consider to be the most important security actions to take if running WordPress.</p>
<p>If you&#8217;re all new to WordPress, this guide will take you through in the right order, step by step, and at the end you&#8217;ll come out with a much better WordPress setup than what you had when you first started. So settle up and we&#8217;ll get started.</p>
<p>Before we start, always remember to <a href="../../tips/2-easy-ways-to-backup-your-wordpress-database">backup your WordPress database</a> if you already got WP installed.</p>
<h2>Step 1: Start with your database</h2>
<ul>
<li>The first step you should take is by installing WordPress on its OWN database. The reason is simply a step to avoid other information been on risk if someone manages to gain access to one of your sites if you&#8217;re running several sites or applications on the same server.</li>
</ul>
<ul>
<li>Create one user for your WordPress database and set user privileges to only &#8220;<strong>SELECT, INSERT, UPDATE, DELETE </strong>and<strong> ALTER</strong>&#8220;. That&#8217;s enough privileges to make WP run and at the same time make things really hard for someone unauthorized to control your database.</li>
</ul>
<p>Depending on your host, this should normally be a simple task to accomplish through CPanel.</p>
<h2>Step 2: Modify <code>wp-config.php</code></h2>
<p>As default, the <code>wp-config-sample.php</code> must be renamed to <code>wp-config.php</code></p>
<p>Before we upload the config file, its recommended that we add a little more security. Open up your <code>wp-config.php</code> in your text editor (notepad works great) and follow the 2 important steps below:</p>
<ol>
<li>Generate unique keys using <a href="https://api.wordpress.org/secret-key/1.1/">https://api.wordpress.org/secret-key/1.1/</a> Simply copy the 4 lines of code, past and replace them with those within your wp-config.php. You can change these keys at any time without any problem. If any users are logged in at the time you do the change, they will be forced to log in again.</li>
<li>To avoid attackers guessing your WordPress database prefix, we should add our own little prefix modification. Instead of using WordPress default prefix <code>wp_</code>, we should  add a more random name like for example <code>7i64u_</code>. This makes it more difficult for an attacker to guess your database prefix. Simply locate <code>$table_prefix = 'wp_';</code> inside wp-config.php and add your own random name.</li>
</ol>
<p>Example &#8211; Instead of:</p>
<pre>$table_prefix = 'wp_';</pre>
<p>Choose your own random name:</p>
<pre>$table_prefix = '7i64u_';</pre>
<h2>Step 3: Change default &#8220;admin&#8221; username</h2>
<p>By default WordPress chooses &#8220;admin&#8221; as the administrator username. While Fantastico users are able to pick a different username when installing, manually installations of WordPress will have to do this by modifying the database.</p>
<p>There are several ways to get this done, so pick the one that suites you best.</p>
<ul>
<li>While logged into your WordPress Dashboard, click on &#8220;Users&#8221; and &#8220;Add New&#8221;. Then create a new user with all administration rights. Now log out as &#8220;admin&#8221; and log in with your new username. Go to &#8220;Users&#8221; again and delete the original &#8220;admin&#8221; user.</li>
<li>If you know your way around in phpMyAdmin you may do the change simply by editing the user_login value to the username you prefers.</li>
<li>You may also use a WordPress Plugin to change your username. There are several plugins out there that will help you do this. The plugin I recommend: <a href="http://w-shadow.com/blog/2008/07/24/change-admin-username-in-wordpress/" target="_blank">http://w-shadow.com/blog/2008/07/24/change-admin-username-in-wordpress/</a></li>
</ul>
<h2>Step 4: Hide your Wordpress Version</h2>
<p>By default, Wordpress themes displays the Wordpress version in the meta tag. This makes it extra easy for hackers or others to discover what version of Wordpress you&#8217;re using.</p>
<p>Displaying your version number might lead to attacks. So prevent yourself from been a target for specific wordpress attacks.</p>
<p>There are several ways hide your WordPress version, but the best way is to add this line of code inside your themes <code>function.php</code> &#8211; if you ain&#8217;t got any functions.php inside your themes folder, simply add a new file and name it functions.php</p>
<p>I&#8217;ve seen many who just add the code you see below, including myself, but without proper checking they don&#8217;t realize that the  feed is leaking the wordpress version! So to clarify, the line of code below ONLY removes the version from the meta tags &#8211; NOT from the feed generator!</p>
<pre>//Removes WordPress version from Meta Tag
remove_action('wp_head', 'wp_generator');</pre>
<p>To completely remove the WordPress version, add the following code to your functions.php</p>
<pre>//Stops WordPress from leaking the version number
add_filter( 'the_generator', create_function('$a', "return null;") );</pre>
<h2>Step 5: Block public directories browsing</h2>
<p>There are two simple ways to prevent someone from the public browsing your directories, and that is to:</p>
<ul>
<li>Make an empty <code>index.html</code> file inside each folder</li>
</ul>
<p>or</p>
<ul>
<li>Add the following line of code to your <code>.htaccess</code> file located in your server root.</li>
</ul>
<pre>Options All -Indexes</pre>
<h2>Step 6: Restricting your <code>wp-content</code> and <code>wp-includes</code> directory</h2>
<p>Add <code>.htaccess</code> to restrict files and only accept images, css, and javascripts. Thanks to http://blogsecurity.net.</p>
<p>The following line of codes helps from restricting access to your directories. Add the code to a new .htaccess file and upload it to your directories.</p>
<pre>Order Allow,Deny
Deny from all
&lt;Files ~ "\.(css|jpe?g|png|gif|js)$"&gt;
Allow from all
&lt;/Files&gt;</pre>
<p>On the other hand, if you want certain files to gain access, you may do so by adding the following to your /wp-content/.htaccess file.</p>
<pre>&lt;Files ".php"&gt;
Allow from all
&lt;/Files&gt;</pre>
<p><em>Note if you&#8217;re using several plugins &#8211; you might need to spend a little time tweaking before it works correctly.</em></p>
<p><em>PS. I had some problems getting this to work under the wp-includes folder without disabling some of the WP toolbar features. If you&#8217;re having the same problem, skip to add the .htaccess file inside the wp-includes, but make sure you include it in your wp-content folder.<br />
</em></p>
<h2>Step 7: Security scanning your site</h2>
<p>Wordpress scanner allows you to measure security on your site. It&#8217;s a free plugin ready to be uploaded to your server.</p>
<p>There are 2 ways to run the scann. Choose the one that suites you.</p>
<ol>
<li><a href="http://blogsecurity.net/projects/wp-scanner.zip" target="_blank">Download the plugin</a>, extract and upload to <code>/plugin/</code> directory</li>
<li>Login to your WordPress admin and activate plugin.</li>
<li>Go to <a href="http://blogsecurity.net/wpscan" target="_blank">BlogSecurity.net</a> and type in your website url as well as the security code.</li>
<li>Click &#8220;Start Scan&#8221;</li>
</ol>
<p>The scanner will then connect to you site to check if it got the permission to do a scan. It will then prompt you with recommendations if any security issues are located.</p>
<p>The scanner also supports text-file for scan verification.</p>
<ol>
<li><a href="http://blogsecurity.net/projects/wpscan.txt" target="_blank">Download the text file</a> and upload it to your blog directory <code>/wordpress/wpscan.txt</code> directory</li>
<li>Go to <a href="http://blogsecurity.net/wpscan" target="_blank">BlogSecurity.net</a> and type in your website url as well as the security code.</li>
<li>Click &#8220;Start Scan&#8221;</li>
</ol>
<p>As same as the plugin version, the scanner will then connect to you site to check if it got the permission to do a scan. It will then prompt you with recommendations if any security issues are located.</p>
<p><em>Remember to disable the plugin when finish scanning. Otherwise, other people would be able to scan your site as well. </em></p>
<h2>Step 8: Habit of picking strong passwords</h2>
<p>With password all over the place, we have all been tempted to choose a password we easily remember. Sound familiar&#8230;? Then please take your right hand and give yourself a big security slap!</p>
<p>Do yourself a favor from now on and choose a strong password containing both uppercase, lowercase as well as some numbers. If you want to go extra deep, add a few special tags like brackets, question marks etc.</p>
<p><a href="http://www.microsoft.com/protect/yourself/password/checker.mspx">Try Microsoft&#8217;s password checker to test the strength of your passwords.</a></p>
<p>To generate strong passwords, try <a href="http://strongpasswordgenerator.com/">Strong Password Generator</a> web generator for free.</p>
<p>If you want a software to manage, auto-fill and generate passwords for you, I recommend checking out <a href="http://www.roboform.com/download.html">RoboForm&#8217;s password manager</a> for free.</p>
<h2>Step 9: Update update update</h2>
<p>Keep your WordPress well updated on security releases, updates and plugin updates by simply using the <strong>Automatic Update</strong> from your WordPress admin or <a href="http://wordpress.org/download/" target="_blank">manually download WordPress 2.8.x</a>.</p>
<h2>Final Word</h2>
<p>If you have followed every step, you&#8217;ve now taken a huge step in making you WP more secure. Congratulations! Remember to keep it updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://aurstad.org/security-tips/9-important-steps-on-securing-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5 Steps To Survive When Starting An Online Business</title>
		<link>http://aurstad.org/online-business/5-steps-to-survive-when-starting-an-online-business/</link>
		<comments>http://aurstad.org/online-business/5-steps-to-survive-when-starting-an-online-business/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 14:36:02 +0000</pubDate>
		<dc:creator>haurs</dc:creator>
				<category><![CDATA[Online Business]]></category>

		<guid isPermaLink="false">http://aurstad.org/?p=174</guid>
		<description><![CDATA[There&#8217;s only one foolproof way to make sure your online business doesn&#8217;t fail, and that is to make sure your product sells like hot chocolate! Here&#8217;s 5 steps to help your online business career on your way:
Step 1. Upfront researching:
Before getting started you should do some research to get a feel of what&#8217;s popular in today&#8217;s online market. You probably ...]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 291px"><a href="http://www.flickr.com/photos/vincealongi/2535727910/"><img class="   " title="Surviving" src="http://farm3.static.flickr.com/2114/2535727910_769c020c0d.jpg" alt="" width="281" height="223" /></a><p class="wp-caption-text">Photo by Vince Alongi</p></div>
<p>There&#8217;s only one foolproof way to make sure your online business doesn&#8217;t fail, and that is to make sure your product sells like hot chocolate! Here&#8217;s 5 steps to help your online business career on your way:</p>
<h2>Step 1. Upfront researching:</h2>
<p>Before getting started you should do some research to get a feel of what&#8217;s popular in today&#8217;s online market. You probably don&#8217;t want to find yourself down the road with no fuel left getting you nowhere. So by doing a little research before getting started will help you from spending a ridiculous amount of time on a project that has no future.</p>
<p>To get a feel of what&#8217;s popular, dig around and see if there&#8217;s any pain or urgency. Remember that people go online to search for solutions to their problems. Be there and help them.</p>
<p>You can simply have a look around popular online sites like <a href="http://www.amazon.com/gp/new-releases/ref=pd_ts_mte">Amazon Hot Releases</a>, <a href="http://www.google.com/trends/hottrends">Google&#8217;s Top 100 Trends</a>, <a href="http://pulse.ebay.com/">eBay Pulse</a> to get a feel of what&#8217;s considered to be popular and hot.</p>
<p>Choose wisely &#8211; and by that I recommend going for products that your passionate about &#8211; if not, the risk of failing is more likely to occur. So search around to see what might fit your interests.</p>
<h2>Step 2. Building your product line:</h2>
<p>Got some awesome ideas lined up already? Great! If not, don&#8217;t worry &#8211; simply go back, take your time and look around. I&#8217;ll be here when you&#8217;re ready to take the next step.</p>
<p>Don&#8217;t be afraid going into a well established niche. Popular niches are probably the easiest ways to make money online &#8211; you just have to remember to bring new interesting information or solutions to your product line.<strong> </strong></p>
<p>To be able to sell your products like crazy, you got to remember to create a one-of-a-kind idea. Also bear in mind, you won&#8217;t make it a step further if you ain&#8217;t got a user friendly product.</p>
<p>So make it simple to understand and make it unique. This is also your first product in line, so learn as you go further.</p>
<p>I know this might seem as a lot of work, and yes that true, but that&#8217;s why I&#8217;m here to help. So to help ease the workflow you may want to consider outsource some of your design work, or even more, with experts at <a href="http://www.elance.com/">Elance</a>. Then you can focus your mind of the main important things like your content and the next step&#8230;</p>
<h2>Step 3. Creating your landing page:</h2>
<div class="wp-caption alignright" style="width: 311px"><a href="http://www.flickr.com/photos/hamed/403486715/"><img class="    " title="Landing" src="http://farm1.static.flickr.com/165/403486715_2cd6e46424.jpg" alt="by Hamed Saber" width="301" height="200" /></a><p class="wp-caption-text">by Hamed Saber</p></div>
<p>Now as you got your ideas and products in place, you should focus on building a landing page for your product. This is an important piece of the puzzle where you send visitors to your site.</p>
<p>The landing page should be kept simple, and do not include a bunch of image or text links pointing out of the page. Neat headline and text will do just fine. Remember pain and urgency! What would be the outcome when using your product?</p>
<p>Remember to add <a href="http://www.protectyouronlineassets.com/rep/pro85.html">terms and conditions and privacy policy</a> at the bottom of the page.</p>
<p>I&#8217;ll do an article later on building your kickass landing page.</p>
<h2>Step 4. Learn marketing:</h2>
<p>You ain&#8217;t going nowhere without learning some marketing. How can you get your products out to the public if you can&#8217;t manage at least some dissent marketing tactics?</p>
<p>Marketing services like <a href="http://adwords.google.com/">Google Adwords</a>, <a href="http://www.adbrite.com/">Ad Brite</a> are good places to start. Let me know if theres any interest in learning more about these services and I&#8217;ll set up an article on getting started.</p>
<p>Hot Tip: <a href="http://www.amazon.com/gp/product/0071467858?ie=UTF8&amp;tag=aurstad-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0071467858">Words that Sell, Revised and Expanded Edition </a> are some excellent information to read.</p>
<p>Hot Tip 2: <a href="http://www.amazon.com/gp/product/0071418539?ie=UTF8&amp;tag=aurstad-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0071418539">More Words That Sell</a></p>
<p>Both books are simply, a bunch of words, that sell well! So use them in your marketing.</p>
<p><a href="http://www.amazon.com/gp/product/0071418539?ie=UTF8&amp;tag=aurstad-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0071418539"></a><img class=" kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb kpncjxkjyryzevudohbb oxtiwxztylpofawffoan oxtiwxztylpofawffoan oxtiwxztylpofawffoan oxtiwxztylpofawffoan" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=aurstad-20&amp;l=as2&amp;o=1&amp;a=0071418539" border="0" alt="" width="1" height="1" /></p>
<h2>Step 5. Make a free offer:</h2>
<p>Take some of your best advice and give it away. Make it a free downloadable ebook, video, tele class etc. Don&#8217;t expect to tell your customers into buying. They should get a feel of what you&#8217;re offering and by giving away some valuable free information they&#8217;ll be wanting more.</p>
<p>Remember to gather visitors email address when offering free content.</p>
<p>You&#8217;re building an online business that&#8217;s here to support your future &#8211; so start thinking of it like your real business and get busy building your line of products.</p>
]]></content:encoded>
			<wfw:commentRss>http://aurstad.org/online-business/5-steps-to-survive-when-starting-an-online-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Update: WordPress 2.8.4 Security Release</title>
		<link>http://aurstad.org/updates/update-wordpress-2-8-4-security-release/</link>
		<comments>http://aurstad.org/updates/update-wordpress-2-8-4-security-release/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 05:16:54 +0000</pubDate>
		<dc:creator>haurs</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[WordPress 2.8]]></category>
		<category><![CDATA[WordPress 2.8.4]]></category>

		<guid isPermaLink="false">http://aurstad.org/?p=154</guid>
		<description><![CDATA[New WordPress 2.8.4 security release. A new vulnerability was discovered yesterday by the WordPress team. As usual, like any other security release, its highly recommended that you upgrade your older WordPress version.
From the WordPress Team this morning: 

Yesterday a vulnerability was discovered: a specially crafted URL could be requested that would allow an attacker to bypass a security check to ...]]></description>
			<content:encoded><![CDATA[<p><strong>New WordPress 2.8.4 security release.</strong> A new vulnerability was discovered yesterday by the WordPress team. As usual, like any other security release, its highly recommended that you upgrade your older WordPress version.</p>
<p><strong>From the WordPress Team this morning: </strong></p>
<div>
<blockquote><p>Yesterday a vulnerability was discovered: a specially crafted URL could be requested that would allow an attacker to bypass a security check to verify a user requested a password reset. As a result, the first account without a key in the database (usually the admin account) would have its password reset and a new password would be emailed to the account owner. This doesn’t allow remote access, but it is very annoying.</p>
<p>We fixed this problem last night and have been testing the fixes and looking for other problems since then. <a href="http://wordpress.org/download/">Version 2.8.4 which fixes all known problems is now available for download</a> and is highly recommended for all users of WordPress.</p></blockquote>
<p>Make sure you update your WordPress to the latest version by simply using the <strong>Automatic Update</strong> from your WordPress admin or <a href="http://wordpress.org/download/" target="_blank">manually download WordPress 2.8.4</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://aurstad.org/updates/update-wordpress-2-8-4-security-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update: WordPress 2.8.3 Security Release</title>
		<link>http://aurstad.org/updates/update-wordpress-2-8-3-security-release/</link>
		<comments>http://aurstad.org/updates/update-wordpress-2-8-3-security-release/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 05:38:10 +0000</pubDate>
		<dc:creator>haurs</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[WordPress 2.8]]></category>
		<category><![CDATA[WordPress 2.8.3]]></category>

		<guid isPermaLink="false">http://aurstad.org/?p=84</guid>
		<description><![CDATA[A new WordPress 2.8.3 security update! It&#8217;s not that long ago since we had a security path released, but here it is, although it came a little surprising to me.
As for what this security path is all about, this is what the WordPress Team had to say: 
Unfortunately, I missed some places when fixing the privilege escalation issues for 2.8.1.  ...]]></description>
			<content:encoded><![CDATA[<p>A new <strong>WordPress 2.8.3 security update</strong>! It&#8217;s not that long ago since we had a security path released, but here it is, although it came a little surprising to me.</p>
<p><strong>As for what this security path is all about, this is what the WordPress Team had to say: </strong></p>
<blockquote><p>Unfortunately, I missed some places when fixing the privilege escalation issues for 2.8.1.  Luckily, the entire WordPress community has our backs.  Several folks in the community dug deeper and discovered areas that were overlooked.  With their help, the remaining issues are fixed in 2.8.3.  Since this is a security release, upgrading is highly recommended.  <a href="http://wordpress.org/download/">Download</a> 2.8.3, or upgrade automatically from your admin.</p></blockquote>
<p>So make sure you update your WordPress to the latest version by simply using the <strong>Automatic Update</strong> from your WordPress admin or manually download WordPress 2.8.3 from <a href="http://wordpress.org/download/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://aurstad.org/updates/update-wordpress-2-8-3-security-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Easy Ways To Backup Your WordPress Database</title>
		<link>http://aurstad.org/tips/2-easy-ways-to-backup-your-wordpress-database/</link>
		<comments>http://aurstad.org/tips/2-easy-ways-to-backup-your-wordpress-database/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 09:19:25 +0000</pubDate>
		<dc:creator>haurs</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://aurstad.org/?p=208</guid>
		<description><![CDATA[When wanting to backup, you got to choose the one that fits your current setup.
1. Manually backup through phpMyAdmin

1. Login to your phpMyAdmin and select the database where you got WordPress installed.
2. Click the Export button on your top menu.
3. Export &#8220;Select All&#8221; type should be &#8220;SQL&#8221;.
4. Hit &#8220;Save as file&#8221; to save this backup as a file
4. Choose compression ...]]></description>
			<content:encoded><![CDATA[<p>When wanting to backup, you got to choose the one that fits your current setup.</p>
<h2>1. Manually backup through phpMyAdmin</h2>
<ol>
<li>1. Login to your phpMyAdmin and select the database where you got WordPress installed.</li>
<li>2. Click the Export button on your top menu.</li>
<li>3. Export &#8220;Select All&#8221; type should be &#8220;SQL&#8221;.</li>
<li>4. Hit &#8220;Save as file&#8221; to save this backup as a file</li>
<li>4. Choose compression type. Zipped or Gzipped. I prefer Gzipped.</li>
<li>5. Hit Go or Export to store the file and save it on your computer.</li>
</ol>
<p>You&#8217;re done!</p>
<h2>2. Automatic backup using WordPress plugin</h2>
<p>There are several automatic backup plugins available for WordPress. I&#8217;ve been trying a few, and are currently using <a href="http://lesterchan.net/wordpress/readme/wp-dbmanager.html">WP-DBManager</a> by Lester &#8216;GaMerZ&#8217; Chan.</p>
<p>Another one that works great as well are <a href="http://wordpress.org/extend/plugins/wp-db-backup/">WP-DB-Backup</a>.</p>
<p>It&#8217;s up to you which one you choose, they both supports automatic email to backup files and both works great. The automatic email is a neat feature that lets you schedule your backup to be emailed to you at what time you&#8217;d like.</p>
<ol>
<li>1. Simply choose the one you like, extract and upload the folder to your <code>/plugin/</code> directory</li>
<li>2. Activate it under the Plugins menu</li>
<li>3. For WP-DBManager, go to &#8220;WP-Admin&#8221; -&gt; &#8220;Database&#8221; -&gt; &#8220;DB Options&#8221; to configure the database options. Enter the email address you like the backup files being sent to and set when you&#8217;d like the backups to take place.</li>
<li>4. For WP-DB-Backup, go to &#8220;WP-Admin&#8221; -&gt; &#8220;Backup&#8221; to set how you&#8217;d like the backup to be delivered.</li>
</ol>
<p><strong>PS!</strong> Sending the backup emails to an email provider that&#8217;s not related to your regular host helps you from losing your backup if the host loses everything. Simply apply for a <a href="http://mail.google.com" target="_blank">free Gmail account</a> that allows large attachments and free storage up to 7.3 GB and use that one to send your backups to.</p>
]]></content:encoded>
			<wfw:commentRss>http://aurstad.org/tips/2-easy-ways-to-backup-your-wordpress-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
