<?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>WP Blog Host Video Tutorials &#187; Maintaining WordPress</title>
	<atom:link href="http://wpbloghost.tv/category/wordpress-tutorials/maintaining-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpbloghost.tv</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 28 Jun 2010 16:01:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How To Upgrade WordPress Manually</title>
		<link>http://wpbloghost.tv/how-to-upgrade-wordpress-manually/</link>
		<comments>http://wpbloghost.tv/how-to-upgrade-wordpress-manually/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 18:25:11 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Must Know]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=150</guid>
		<description><![CDATA[This video tutorial will show you how to upgrade WordPress manually by following the instructions on WordPress.org.


Related posts:<ol><li><a href='http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='Permanent Link: How To Move Your WordPress Core Files Out Of Root'>How To Move Your WordPress Core Files Out Of Root</a></li>
<li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Permanent Link: Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
<li><a href='http://wpbloghost.tv/how-to-upgrade-your-wordpress-blog-using-the-automatic-upgrade-tool/' rel='bookmark' title='Permanent Link: How to Upgrade Your WordPress Blog Using The Automatic Upgrade Tool'>How to Upgrade Your WordPress Blog Using The Automatic Upgrade Tool</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><center><embed src="http://blip.tv/play/AYGVmAMC" type="application/x-shockwave-flash" width="590" height="470" allowscriptaccess="always" allowfullscreen="true"></embed></center></p>
<h2>How To Create A Simple Maintenance Page</h2>
<p>You could always download a <a href="http://sw-guide.de/wordpress/plugins/maintenance-mode/" title="WordPress Maintenance Mode plugin">WordPress maintenance mode plugin</a>, but in this case it probably won&#8217;t work. When you follow the <a href="http://codex.wordpress.org/Upgrading_WordPress" title="Steps to upgrade WordPress">upgrade instructions on WordPress.org</a>, you&#8217;ll notice it says to <strong>deactivate all your plugins</strong>.</p>
<p>So, here&#8217;s how to create a custom maintenance page without a plugin.</p>
<p><strong>Step 1</strong></p>
<p>Create a simple html file and place it in your blog&#8217;s root directory. Name it something like, maintenance.html. Inside the maintenance.html file you can put anything you want. &#8220;Hi. I&#8217;m out to lunch for a few moments while the construction crew is busy at work . . .&#8221;</p>
<p>But why stop there? Your site is better than that. Customize the page with your site&#8217;s colors and images. Maybe add a video or your latest blog post. CSSgirl wrote some tips and shows some examples on the topic of <a href="http://www.cssgirl.com/articles/2008/06/16/create-a-memorable-maintenance-page/" title="Create A Memorable Maintenance Page">creating a memorable maintenance page</a>.</p>
<p><strong>Step 2</strong></p>
<p>Ok so now you have your maintenance.html page set up; the next step is to redirect everyone to it while you&#8217;re doing your upgrade.</p>
<p>Navigate to your blog&#8217;s root directory in your web hosting control panel and open your .htaccess file.</p>
<p><center><img src="http://wpbloghost.tv/wp-files/wp-content/uploads/2009/08/htaccess-edit.jpg" alt="htaccess-edit" title="htaccess-edit" width="579" height="266" class="aligncenter size-full wp-image-152" /></center></p>
<p>Once opened, you&#8217;re going to add this code at the top:</p>
<p><strong># Use this code to redirect visitors to maintenance.html file while upgrading<br />
Options +FollowSymlinks<br />
RewriteEngine on<br />
RewriteCond %{REMOTE_ADDR} !^<span style="background-color: rgb(255, 255, 0);">618\.124\.259\.25</span><br />
RewriteCond %{REQUEST_URI} !/maintenance.html$<br />
RewriteRule $ <span style="background-color: rgb(255, 255, 0);">http://your-site.com</span>/maintenance.html [R=302,L]</strong></p>
<p>The yellow parts above are the areas you need to change. Visit <a href="http://whatismyipaddress.com">What is my IP address?</a> to find your IP address and put those numbers in under the first yellow highlight. Next add the url path to your own maintenance page in the second yellow part.</p>
<p>And that should do it. Your site should now show a maintenance page to everyone except you (your IP address was whitelisted). To see what everyone else sees, add a # sign in front of the IP line:</p>
<p align="center"># RewriteCond %{REMOTE_ADDR} !^618\.124\.259\.25</p>
<p>The # comments lines out.</p>
<p>When you&#8217;re finished, leave the code in your .htaccess file for next time. To disable the code, just add a # in front of each line:</p>
<p><strong># Use this code to redirect visitors to maintenance.html file while upgrading<br />
# Options +FollowSymlinks<br />
# RewriteEngine on<br />
# RewriteCond %{REMOTE_ADDR} !^618\.124\.259\.25<br />
# RewriteCond %{REQUEST_URI} !/maintenance.html$<br />
# RewriteRule $ http://your-site.com/maintenance.html [R=302,L]</strong></p>
<p>Remember, if you need help with upgrades, visit the <a href="http://wpbloghost.com/blog-customization-and-services/" title="Contact John">blog services page</a> and use the contact form there to get in touch with me.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='Permanent Link: How To Move Your WordPress Core Files Out Of Root'>How To Move Your WordPress Core Files Out Of Root</a></li>
<li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Permanent Link: Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
<li><a href='http://wpbloghost.tv/how-to-upgrade-your-wordpress-blog-using-the-automatic-upgrade-tool/' rel='bookmark' title='Permanent Link: How to Upgrade Your WordPress Blog Using The Automatic Upgrade Tool'>How to Upgrade Your WordPress Blog Using The Automatic Upgrade Tool</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-upgrade-wordpress-manually/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Backup Your WordPress Database Using phpMyAdmin</title>
		<link>http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/</link>
		<comments>http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 18:21:15 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=148</guid>
		<description><![CDATA[This tutorial will show you how to download a backup of your WordPress database to your computer. This is a vital topic you should learn.


Related posts:<ol><li><a href='http://wpbloghost.tv/wordpress-database-backup-plugin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Blog&#8217;s Database With A Plugin'>How To Backup Your WordPress Blog&#8217;s Database With A Plugin</a></li>
<li><a href='http://wpbloghost.tv/restore-your-database-using-bigdump/' rel='bookmark' title='Permanent Link: How to Restore Your WordPress Database Using Bigdump &#8211; For Larger Databases'>How to Restore Your WordPress Database Using Bigdump &#8211; For Larger Databases</a></li>
<li><a href='http://wpbloghost.tv/how-to-restore-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How to Restore Your WordPress Database Using phpMyAdmin'>How to Restore Your WordPress Database Using phpMyAdmin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to download a backup of your WordPress database to your computer. This is a vital topic you should learn.</p>
<p>This tutorial will show you how to do it through phpMyAdmin (a more advanced way just in case plugins aren&#8217;t working). If you&#8217;re looking for an easy way to backup your database, try the <a target="_blank" title="WordPress database backup plugin" href="http://www.ilfilosofo.com/blog/wp-db-backup">Il Filosofo Database Backup plugin</a>.</p>
<p><center><object width="550" height="470" data="http://www.youtube.com/v/DFF45r8ZtZE&amp;hl=en&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/DFF45r8ZtZE&amp;hl=en&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" /><param name="allowfullscreen" value="true" /></object></center></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/wordpress-database-backup-plugin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Blog&#8217;s Database With A Plugin'>How To Backup Your WordPress Blog&#8217;s Database With A Plugin</a></li>
<li><a href='http://wpbloghost.tv/restore-your-database-using-bigdump/' rel='bookmark' title='Permanent Link: How to Restore Your WordPress Database Using Bigdump &#8211; For Larger Databases'>How to Restore Your WordPress Database Using Bigdump &#8211; For Larger Databases</a></li>
<li><a href='http://wpbloghost.tv/how-to-restore-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How to Restore Your WordPress Database Using phpMyAdmin'>How to Restore Your WordPress Database Using phpMyAdmin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Change Your WordPress Username &amp; Password Through phpMyAdmin</title>
		<link>http://wpbloghost.tv/change-wordpress-username-password-through-phpmyadmin/</link>
		<comments>http://wpbloghost.tv/change-wordpress-username-password-through-phpmyadmin/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 18:01:07 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=140</guid>
		<description><![CDATA[Forget your password or username? Or perhaps someone hacked your blog and changed them? Here's how to change them through your database so you can regain control.


Related posts:<ol><li><a href='http://wpbloghost.tv/change-display-name-wordpress/' rel='bookmark' title='Permanent Link: How to Change Your Display Name on Your WordPress Blog'>How to Change Your Display Name on Your WordPress Blog</a></li>
<li><a href='http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Database Using phpMyAdmin'>How To Backup Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/how-to-password-protect-a-directory-using-wp-blog-host-hosting/' rel='bookmark' title='Permanent Link: How To Password Protect a Directory Using WP Blog Host Hosting'>How To Password Protect a Directory Using WP Blog Host Hosting</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There may be times when you need to change your username and password for your WordPress blog. Perhaps you forgot what they were, but an even bigger reason why it is good to know how to do this is if someone hacks into your blog they might change your password.</p>
<p>This is how you can take back control of your blog and regain access by changing your username and password through the database.</p>
<p><center><embed src="http://blip.tv/play/AYGUi14C" type="application/x-shockwave-flash" width="590" height="480" allowscriptaccess="always" allowfullscreen="true"></embed> </center></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/change-display-name-wordpress/' rel='bookmark' title='Permanent Link: How to Change Your Display Name on Your WordPress Blog'>How to Change Your Display Name on Your WordPress Blog</a></li>
<li><a href='http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Database Using phpMyAdmin'>How To Backup Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/how-to-password-protect-a-directory-using-wp-blog-host-hosting/' rel='bookmark' title='Permanent Link: How To Password Protect a Directory Using WP Blog Host Hosting'>How To Password Protect a Directory Using WP Blog Host Hosting</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/change-wordpress-username-password-through-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Create a Static Home Page on Your WordPress Blog</title>
		<link>http://wpbloghost.tv/create-static-home-page-wordpress/</link>
		<comments>http://wpbloghost.tv/create-static-home-page-wordpress/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 17:34:25 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=128</guid>
		<description><![CDATA[WordPress is great for creating articles, but sometimes articles don't make for a great home page. Here's how to create your own home page that is not a post.


No related posts.]]></description>
			<content:encoded><![CDATA[<p><center><object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/YYcUAXhSxOQ&#038;hl=en&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/YYcUAXhSxOQ&#038;hl=en&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="470"></embed></object></center></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/create-static-home-page-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Fully Backup Your WordPress Blog at WP Blog Host</title>
		<link>http://wpbloghost.tv/how-to-fully-backup-your-wordpress-blog-at-wp-blog-host/</link>
		<comments>http://wpbloghost.tv/how-to-fully-backup-your-wordpress-blog-at-wp-blog-host/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 16:42:22 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[Must Know]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=116</guid>
		<description><![CDATA[It is vital to keep backups of your blog. Don't miss this video. Let's learn how to fully backup your WordPress blog.


Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Database Using phpMyAdmin'>How To Backup Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/wordpress-database-backup-plugin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Blog&#8217;s Database With A Plugin'>How To Backup Your WordPress Blog&#8217;s Database With A Plugin</a></li>
<li><a href='http://wpbloghost.tv/how-to-password-protect-a-directory-using-wp-blog-host-hosting/' rel='bookmark' title='Permanent Link: How To Password Protect a Directory Using WP Blog Host Hosting'>How To Password Protect a Directory Using WP Blog Host Hosting</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Backing up your WordPress blog is one of the most important things you <em>must</em> do. To do a full backup, make sure you download both your <em>database</em> and your blog&#8217;s <em>source files (i.e. all the files contained in your web hosting account)</em>.</p>
<h2>Video Tutorial — Part 1 of 2</h2>
<p><center><object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/kM9fJanUTro&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/kM9fJanUTro&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="470"></embed></object></center></p>
<h2>Video Tutorial — Part 2 of 2</h2>
<p><center><object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/QOwedocz0cA&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/QOwedocz0cA&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="470"></embed></object></center></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Database Using phpMyAdmin'>How To Backup Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/wordpress-database-backup-plugin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Blog&#8217;s Database With A Plugin'>How To Backup Your WordPress Blog&#8217;s Database With A Plugin</a></li>
<li><a href='http://wpbloghost.tv/how-to-password-protect-a-directory-using-wp-blog-host-hosting/' rel='bookmark' title='Permanent Link: How To Password Protect a Directory Using WP Blog Host Hosting'>How To Password Protect a Directory Using WP Blog Host Hosting</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-fully-backup-your-wordpress-blog-at-wp-blog-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Moderate Comments In WordPress</title>
		<link>http://wpbloghost.tv/how-to-moderate-comments-in-wordpress/</link>
		<comments>http://wpbloghost.tv/how-to-moderate-comments-in-wordpress/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 15:15:13 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=83</guid>
		<description><![CDATA[Most blogs are set up to receive comments by readers. Sometimes those comments go to a queue and wait for you to approve or disapprove of them. Here's how to moderate those comments.


No related posts.]]></description>
			<content:encoded><![CDATA[<p><center><br />
<object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/BqEwZDKhEJ4&#038;hl=en&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/BqEwZDKhEJ4&#038;hl=en&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="470"></embed></object></center></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-moderate-comments-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Remove The WordPress Version Number From Your Source Code</title>
		<link>http://wpbloghost.tv/remove-wordpress-version-number/</link>
		<comments>http://wpbloghost.tv/remove-wordpress-version-number/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 14:54:21 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=77</guid>
		<description><![CDATA[One way hackers might try to gain more information about your blog is learning what version of WordPress you're using by viewing your source code. Here's how to remove that piece of information.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>One way hackers might try to gain more information about your blog is learning what version of WordPress you&#8217;re using by viewing your source code. Here&#8217;s how to remove that piece of information.</p>
<p>Just paste this code into your <strong>functions.php</strong> file:</p>
<p align="center">remove_action(&#8216;wp_head&#8217;, &#8216;wp_generator&#8217;);</p>
<p><center><embed src="http://blip.tv/play/AYGUi0gC" type="application/x-shockwave-flash" width="590" height="480" allowscriptaccess="always" allowfullscreen="true"></embed> </center></p>
<p>I’d like to give credit to the good guys over at <a href="http://digwp.com/2009/07/remove-wordpress-version-number/">Digging Into WordPress</a>. It is there where I first found this code.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/remove-wordpress-version-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Restore Your WordPress Database Using Bigdump &#8211; For Larger Databases</title>
		<link>http://wpbloghost.tv/restore-your-database-using-bigdump/</link>
		<comments>http://wpbloghost.tv/restore-your-database-using-bigdump/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 14:47:17 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=73</guid>
		<description><![CDATA[If you've tried restoring your blog's database but it won't upload, it may be because your database is too big. Here's a tutorial on how to do it using Big Dump.


Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-restore-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How to Restore Your WordPress Database Using phpMyAdmin'>How to Restore Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Database Using phpMyAdmin'>How To Backup Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/wordpress-share-database/' rel='bookmark' title='Permanent Link: How To Set Up Multiple Installs of WordPress To Share One Database'>How To Set Up Multiple Installs of WordPress To Share One Database</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you have a database sql file on your computer which you need to upload to your WordPress&#8217; database on your hosting server, you could try <a href="http://wpbloghost.tv/how-to-restore-your-wordpress-database-using-phpmyadmin/">uploading it through phpMyAdmin</a>.</p>
<p>It&#8217;s easier doing it that way, however, if your database is upwards of 20 MB, then you may have troubles uploading it this way. The reason is that phpMyAdmin simply uploads the entire file all at once, but since the file is so big, it takes too long to upload and your web browser (Firefox, Internet Explorer, etc.) will do what we call timeout. This means it was waiting too long for a task to happen, so it just stalled.</p>
<p>Big Dump is a way around that. Big Dump splits up your upload into smaller sizes so your web browser doesn&#8217;t timeout. <a href="http://www.ozerov.de/bigdump.php" title="Visit Big Dump's website" target="_blank">Download Big Dump here</a>.</p>
<h2>Video 1 of 2</h2>
<p><center><object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/xQa5D31k61Q&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/xQa5D31k61Q&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="470"></embed></object></center></p>
<h2>Video 2 of 2</h2>
<p><center><object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/trbhRgIlTIQ&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/trbhRgIlTIQ&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="470"></embed></object></center></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-restore-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How to Restore Your WordPress Database Using phpMyAdmin'>How to Restore Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Database Using phpMyAdmin'>How To Backup Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/wordpress-share-database/' rel='bookmark' title='Permanent Link: How To Set Up Multiple Installs of WordPress To Share One Database'>How To Set Up Multiple Installs of WordPress To Share One Database</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/restore-your-database-using-bigdump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Restore Your WordPress Database Using phpMyAdmin</title>
		<link>http://wpbloghost.tv/how-to-restore-your-wordpress-database-using-phpmyadmin/</link>
		<comments>http://wpbloghost.tv/how-to-restore-your-wordpress-database-using-phpmyadmin/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 14:24:43 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=71</guid>
		<description><![CDATA[Backing up WordPress is great, but how do you restore the database? Here's how you do that through phpMyAdmin.


Related posts:<ol><li><a href='http://wpbloghost.tv/restore-your-database-using-bigdump/' rel='bookmark' title='Permanent Link: How to Restore Your WordPress Database Using Bigdump &#8211; For Larger Databases'>How to Restore Your WordPress Database Using Bigdump &#8211; For Larger Databases</a></li>
<li><a href='http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Database Using phpMyAdmin'>How To Backup Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/change-wordpress-username-password-through-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Change Your WordPress Username &#038; Password Through phpMyAdmin'>How To Change Your WordPress Username &#038; Password Through phpMyAdmin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><center><object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/wl3aeK8XLxU&#038;hl=en&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/wl3aeK8XLxU&#038;hl=en&#038;fs=1&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="470"></embed></object></center></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/restore-your-database-using-bigdump/' rel='bookmark' title='Permanent Link: How to Restore Your WordPress Database Using Bigdump &#8211; For Larger Databases'>How to Restore Your WordPress Database Using Bigdump &#8211; For Larger Databases</a></li>
<li><a href='http://wpbloghost.tv/how-to-backup-your-wordpress-database-using-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Backup Your WordPress Database Using phpMyAdmin'>How To Backup Your WordPress Database Using phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/change-wordpress-username-password-through-phpmyadmin/' rel='bookmark' title='Permanent Link: How To Change Your WordPress Username &#038; Password Through phpMyAdmin'>How To Change Your WordPress Username &#038; Password Through phpMyAdmin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-restore-your-wordpress-database-using-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Upgrade Your WordPress Blog Using The Automatic Upgrade Tool</title>
		<link>http://wpbloghost.tv/how-to-upgrade-your-wordpress-blog-using-the-automatic-upgrade-tool/</link>
		<comments>http://wpbloghost.tv/how-to-upgrade-your-wordpress-blog-using-the-automatic-upgrade-tool/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 15:41:16 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[Must Know]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=41</guid>
		<description><![CDATA[Upgrading WordPress can be a pain if you don't know how to do it right. Here's the best way to upgrade WordPress automatically to help limit any problems which may arise after upgrading.


Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='Permanent Link: How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><center><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/bE169FAzcdI&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/bE169FAzcdI&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="470"></embed></object></center></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='Permanent Link: How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-upgrade-your-wordpress-blog-using-the-automatic-upgrade-tool/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
