<?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; Adding To WordPress</title>
	<atom:link href="http://wpbloghost.tv/category/wordpress-tutorials/adding-to-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>Guarding WordPress Against Hacker URL Requests</title>
		<link>http://wpbloghost.tv/block-bad-requests/</link>
		<comments>http://wpbloghost.tv/block-bad-requests/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 16:01:11 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=206</guid>
		<description><![CDATA[Update: This plugin can now be found in the WordPress plugin repository for easy installs. I was skimming through my Google FeedReader the other day and read an excellent article by Jeff Starr of Perishable Press which showed us how to create a very simple plugin to help protect our WordPress sites from malicious WordPress [...]


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>
<li><a href='http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</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>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Update:</strong> This plugin can now be found in the <a href="http://wordpress.org/extend/plugins/block-bad-queries/" target="_blank">WordPress plugin repository</a> for easy installs.</p>
<p>I was skimming through my Google FeedReader the other day and <a title="Perishable Press" href="http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/" target="_blank">read an excellent article</a> by Jeff Starr of Perishable Press which showed us how to create a very simple plugin to help protect our WordPress sites from malicious WordPress crackers.</p>
<p>He found this code in the <a title="Code collaboration." href="http://pastebin.com/pastebin.php?help=1" target="_blank">pastebin repository</a>, a site where people who write computer code can come together and help one another.</p>
<p>A dead giveaway that someone is trying to hack into your blog is when you see terms like the following being used:</p>
<ul>
<li>base64()</li>
<li>eval()</li>
</ul>
<p>The plugin shown below will attempt to block such requests. So with that, let&#8217;s get on to the tutorial.</p>
<h3>The How-To Video</h3>
<p>Remember you can click the &#8220;full view&#8221; button to see it a little better.</p>
<p><embed src="http://blip.tv/play/AYG502oC" type="application/x-shockwave-flash" width="480" height="390" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>Step-by-Step</h3>
<p><strong>Step1:</strong> Head over to Perishable Press and copy the code Jeff shows us by <a href="http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/" target="_blank" title="Copy the code over here">clicking here</a> (link opens in a new window).</p>
<p><strong>Step 2:</strong> Open a text editor and paste the code in. Be sure to save the file as a .php file (for example, <strong>block-bad-requests.php</strong>).</p>
<p><strong>Step 3:</strong> Zip up the file you just created using a zip program like <a href="http://www.winzip.com/index.htm" target="_blank" title="Zip utility">WinZip</a> or the zip utility that comes with Windows.</p>
<p><img src="http://wpbloghost.tv/wp-files/wp-content/uploads/2009/12/2-zip-file.jpg" alt="zip the file" title="zip the file" width="580" height="373" class="aligncenter size-full wp-image-210" /></p>
<p><strong>Step4:</strong> Upload, install, and activate the plugin.</p>
<p><img src="http://wpbloghost.tv/wp-files/wp-content/uploads/2009/12/add-new-plugin.jpg" alt="" title="Add a new plugin." width="206" height="182" class="aligncenter size-full wp-image-212" /></p>
<p><img src="http://wpbloghost.tv/wp-files/wp-content/uploads/2009/12/upload-plugin.jpg" alt="" title="upload-plugin" width="567" height="348" class="aligncenter size-full wp-image-213" /></p>
<p><img src="http://wpbloghost.tv/wp-files/wp-content/uploads/2009/12/install-plugin.jpg" alt="" title="install-plugin" width="570" height="294" class="aligncenter size-full wp-image-214" /></p>
<p><img src="http://wpbloghost.tv/wp-files/wp-content/uploads/2009/12/activate-plugin.jpg" alt="" title="activate-plugin" width="538" height="269" class="aligncenter size-full wp-image-215" /></p>
<p><img src="http://wpbloghost.tv/wp-files/wp-content/uploads/2009/12/done.jpg" alt="" title="done" width="290" height="174" class="aligncenter size-full wp-image-216" /></p>
<p>Quick, simple, and effective.</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>
<li><a href='http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/block-bad-requests/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>How To Backup Your WordPress Blog&#8217;s Database With A Plugin</title>
		<link>http://wpbloghost.tv/wordpress-database-backup-plugin/</link>
		<comments>http://wpbloghost.tv/wordpress-database-backup-plugin/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 04:00:20 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[Must Know]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=199</guid>
		<description><![CDATA[In this video tutorial, I&#8217;ll show you how to backup your WordPress blog&#8217;s database using the WordPress Database Backup plugin by Austin Matzko. Keeping a recent backup of your blog is a mandatory step for bloggers. Set this plugin up to email you a copy of your database at least once a week. It&#8217;s good [...]


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/how-to-fully-backup-your-wordpress-blog-at-wp-blog-host/' rel='bookmark' title='Permanent Link: How to Fully Backup Your WordPress Blog at WP Blog Host'>How to Fully Backup Your WordPress Blog at WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In this video tutorial, I&#8217;ll show you how to backup your WordPress blog&#8217;s database using the <a href="http://ilfilosofo.com/blog/wp-db-backup/">WordPress Database Backup plugin</a> by Austin Matzko.</p>
<p>Keeping a recent backup of your blog is a mandatory step for bloggers. Set this plugin up to email you a copy of your database at least once a week. It&#8217;s good practice to keep database backups for at least 1 year.</p>
<p><center><br />
<embed src="http://blip.tv/play/AYGyrAIA" type="application/x-shockwave-flash" width="580" height="490" allowscriptaccess="always" allowfullscreen="true"></embed><br />
</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/how-to-fully-backup-your-wordpress-blog-at-wp-blog-host/' rel='bookmark' title='Permanent Link: How to Fully Backup Your WordPress Blog at WP Blog Host'>How to Fully Backup Your WordPress Blog at WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/wordpress-database-backup-plugin/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>SEO Egghead WordPress Firewall Plugin Video Overview</title>
		<link>http://wpbloghost.tv/seo-egghead-wordpress-firewall-plugin/</link>
		<comments>http://wpbloghost.tv/seo-egghead-wordpress-firewall-plugin/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 18:13:56 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=191</guid>
		<description><![CDATA[Awhile back I wrote an article on my blog called, 2 Easy Ways To Set Up A WordPress Firewall. In it, I highlighted a WordPress Firewall security plugin released by SEO Egghead which greatly increases your blog&#8217;s security against common exploits and hacks. In this video, I&#8217;ll go over how to install the plugin and [...]


Related posts:<ol><li><a href='http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<li><a href='http://wpbloghost.tv/wordpress-settings-overview/' rel='bookmark' title='Permanent Link: WordPress Settings Overview'>WordPress Settings Overview</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><embed src="http://blip.tv/play/AYGw9TEA" type="application/x-shockwave-flash" width="580" height="490" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>Awhile back I wrote an article on my blog called, <a href="http://wpbloghost.com/blog/2-easy-ways-to-set-up-a-wordpress-firewall/">2 Easy Ways To Set Up A WordPress Firewall</a>. In it, I highlighted a <a href="http://www.seoegghead.com/software/wordpress-firewall.seo">WordPress Firewall security plugin</a> released by SEO Egghead which greatly increases your blog&#8217;s security against common exploits and hacks.</p>
<p>In this video, I&#8217;ll go over how to install the plugin and a few of its settings.</p>
<p>If WordPress security is important to you (and it should be), I have a new WordPress security ebook being released soon. I&#8217;m currently setting up a newsletter for reminders but for now if you&#8217;d like to be notified when the ebook is released, leave a comment below. It won&#8217;t be that expensive.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<li><a href='http://wpbloghost.tv/wordpress-settings-overview/' rel='bookmark' title='Permanent Link: WordPress Settings Overview'>WordPress Settings Overview</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/seo-egghead-wordpress-firewall-plugin/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To Decrease The Load Time Of Your WordPress Blog Using gzip</title>
		<link>http://wpbloghost.tv/how-to-decrease-the-load-time-of-your-wordpress-blog-using-gzip/</link>
		<comments>http://wpbloghost.tv/how-to-decrease-the-load-time-of-your-wordpress-blog-using-gzip/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 04:00:08 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=184</guid>
		<description><![CDATA[Copy This and Put It Here Copy &#60;?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], &#8216;gzip&#8216;)) ob_start(&#8220;ob_gzhandler&#8221;); else ob_start(); ?&#62; Paste A (for WordPress users) For WordPress users, paste the code up at the very top of your header.php file (above the DOCTYPE line). If you&#8217;re not sure how to do this, see the video at the end of this [...]


Related posts:<ol><li><a href='http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<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/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><embed src="http://blip.tv/play/AYGdozIC" type="application/x-shockwave-flash" width="580" height="490" allowscriptaccess="always" allowfullscreen="true"></embed> </center></p>
<h3>Copy This and Put It Here</h3>
<p><strong>Copy</strong></p>
<p style="border-style: dotted; border-width: 1px; border-color: #008e84; margin: 5px 20px 15px 9px;">&lt;?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], &#8216;<span class="highlight">gzip</span>&#8216;)) ob_start(&#8220;ob_gzhandler&#8221;); else ob_start(); ?&gt;</p>
<p><strong>Paste A (for WordPress users)</strong></p>
<p>For WordPress users, paste the code up at the very top of your header.php file (above the <strong>DOCTYPE</strong> line). If you&#8217;re not sure how to do this, see the video at the end of this tutorial.</p>
<p><img src="http://wpbloghost.com/blog/wp-files-greenblog/../blogimages/2009/09/gzip-where-to-paste-php.jpg" alt="gzip-where-to-paste-php" title="gzip-where-to-paste-php" width="592" height="131" class="aligncenter size-full wp-image-2301" /></p>
<p><strong>Paste B (for static .html pages)</strong></p>
<p>If your website is coded in html and not php, then what you&#8217;ll need to do is copy the code above and paste it up at the very top of each web page you want to compress (above the <strong>DOCTYPE</strong>). </p>
<p>The one change you&#8217;ll need to do here is change the extension of your web pages from .html to .php.</p>
<p>So for example, change: index.html to index.php</p>
<p>You can test your results by visiting <a href="http://www.port80software.com/support/p80tools.asp" target="_blank" title="Analysis Tools For Your Website">http://www.port80software.com</a>.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<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/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-decrease-the-load-time-of-your-wordpress-blog-using-gzip/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</title>
		<link>http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/</link>
		<comments>http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 14:57:31 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=176</guid>
		<description><![CDATA[If you&#8217;ve been blogging for longer than a few months, you&#8217;ve probably heard of the ever so popular site analytics program, Google Analytics. It allows blog owners to do such things as: Discover how your site visitors found your blog View how many visitors your blog receives each day View areas on your blog where [...]


Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-not-track-your-own-visits-in-google-analytics-setting-up-a-filter/' rel='bookmark' title='Permanent Link: How To Not Track Your Own Visits In Google Analytics &#8211; Setting Up A Filter'>How To Not Track Your Own Visits In Google Analytics &#8211; Setting Up A Filter</a></li>
<li><a href='http://wpbloghost.tv/block-bad-requests/' rel='bookmark' title='Permanent Link: Guarding WordPress Against Hacker URL Requests'>Guarding WordPress Against Hacker URL Requests</a></li>
<li><a href='http://wpbloghost.tv/how-to-decrease-the-load-time-of-your-wordpress-blog-using-gzip/' rel='bookmark' title='Permanent Link: How To Decrease The Load Time Of Your WordPress Blog Using gzip'>How To Decrease The Load Time Of Your WordPress Blog Using gzip</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><center><object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/dUfef288VLU&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dUfef288VLU&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="470"></embed></object></center></p>
<table>
<tr>
<td height="25px"></td>
</tr>
</table>
<p>If you&#8217;ve been blogging for longer than a few months, you&#8217;ve probably heard of the ever so popular site analytics program, <a title="Google Analytics Sign Up Page." href="http://www.google.com/analytics/" target="_blank">Google Analytics</a>.</p>
<p>It allows blog owners to do such things as:</p>
<ul>
<li>Discover how your site visitors found your blog</li>
<li>View how many visitors your blog receives each day</li>
<li>View areas on your blog where people have clicked</li>
<li>. . . and a <a title="Google Analytics features" href="http://www.google.com/analytics/features.html" target="_blank">ton more</a>.</li>
</ul>
<p>If you blog, it&#8217;s inevitable that you are going to try Google Analytics at some point. It really is a great analytics program; however, I must admit that it can seem quite complex at times and if you&#8217;re new to the program and you might feel a bit intimidated. In the near future I&#8217;ll try to post some examples on how to use the program.</p>
<p>When it comes to plugging Google Analytics into your blog, you have a couple of options available to you.</p>
<ol>
<li>Download and use a plugin . . . <em>or</em></li>
<li>Copy and paste code into your blog&#8217;s footer file</li>
</ol>
<p><strong>Why I don&#8217;t like plugins</strong></p>
<p>Simply put, plugins slow down the load time of your website and also pose security risks which could leave your blog open to intruders. Even if the plugin is secure today, it might not be when a newer version of WordPress is released or if the plugin author abandons the program and stops issuing updates.</p>
<p>In my opinion, the best way (and just as easy) to install this is to simply copy and paste Google&#8217;s supplied code into your theme&#8217;s footer file. That&#8217;s it, no plugin, done and move on.</p>
<p><strong>Step 1: <a title="Click here to sign up" href="http://www.google.com/analytics/index.html" target="_blank">Sign up for a new Google Analytics account</a>.</strong></p>
<p align="center"><img src="http://wpbloghost.com/images/blog_articles/images2/google-signup.jpg" alt="" /></p>
<p><strong>Step 2: Copy the JavaScript code.</strong></p>
<p>During the sign up process you&#8217;ll be asked things like your name, email address, etc. At some point, you&#8217;ll come to a page that looks like the image seen below. You will will need to copy this code and paste it into your blog.</p>
<p align="center"><img src="http://wpbloghost.com/images/blog_articles/images2/copy-code.jpg" alt="" /></p>
<p>As a side note, even if you used a plugin to install Google Analytics, you would still need to copy and paste this code at some point; so plugins don&#8217;t necessarily make things any easier.</p>
<p><strong>Step 3: Pasting the code into your footer.php file</strong></p>
<p>At this point, log into your WordPress blog and navigate to your theme&#8217;s editor by going to Dashboard -&gt; Appearance &#8211;&gt; Editor.</p>
<p align="center"><img src="http://wpbloghost.com/images/blog_articles/images2/theme-editor.jpg" alt="" /></p>
<p>Then on the right you should see a list of your theme&#8217;s files. Click on the <strong>Footer.php</strong> file.</p>
<p align="center"><img src="http://wpbloghost.com/images/blog_articles/images2/footer.jpg" alt="" /></p>
<p>Paste the code you copied from Google Analytics just above the ending <strong>&lt;/body&gt;</strong> tag.</p>
<p align="center"><img src="http://wpbloghost.com/images/blog_articles/images2/paste-code.jpg" alt="" /></p>
<p>Click <strong>Update File</strong></p>
<p align="center"><img src="http://wpbloghost.com/images/blog_articles/images2/click-update.jpg" alt="" /></p>
<p>And that&#8217;s it. No plugins and no worries about updates.</p>
<p>To view your site&#8217;s statistics now, log into your Google Analytics account and view your stats. It may take a day or so to start receiving your traffic stats, so if you don&#8217;t see it right away, just be patient.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-not-track-your-own-visits-in-google-analytics-setting-up-a-filter/' rel='bookmark' title='Permanent Link: How To Not Track Your Own Visits In Google Analytics &#8211; Setting Up A Filter'>How To Not Track Your Own Visits In Google Analytics &#8211; Setting Up A Filter</a></li>
<li><a href='http://wpbloghost.tv/block-bad-requests/' rel='bookmark' title='Permanent Link: Guarding WordPress Against Hacker URL Requests'>Guarding WordPress Against Hacker URL Requests</a></li>
<li><a href='http://wpbloghost.tv/how-to-decrease-the-load-time-of-your-wordpress-blog-using-gzip/' rel='bookmark' title='Permanent Link: How To Decrease The Load Time Of Your WordPress Blog Using gzip'>How To Decrease The Load Time Of Your WordPress Blog Using gzip</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>How To Not Track Your Own Visits In Google Analytics &#8211; Setting Up A Filter</title>
		<link>http://wpbloghost.tv/how-to-not-track-your-own-visits-in-google-analytics-setting-up-a-filter/</link>
		<comments>http://wpbloghost.tv/how-to-not-track-your-own-visits-in-google-analytics-setting-up-a-filter/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 14:49:54 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[Must Know]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=174</guid>
		<description><![CDATA[Anyone whose been blogging for longer than a couple weeks will of at least heard of Google Analytics. Problem is, it&#8217;s so damn difficult to try and figure out when you&#8217;re just starting out because there&#8217;s SO much you can do with it. One of my first frustrations with it was the fact that I [...]


Related posts:<ol><li><a href='http://wpbloghost.tv/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<li><a href='http://wpbloghost.tv/a-complete-guide-to-setting-up-feedburner-on-wordpress/' rel='bookmark' title='Permanent Link: A Complete Guide To Setting Up FeedBurner On WordPress'>A Complete Guide To Setting Up FeedBurner On WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Anyone whose been blogging for longer than a couple weeks will of at least heard of <a href="http://www.google.com/analytics/" title="The most popular analytics program">Google Analytics</a>.</p>
<p>Problem is, it&#8217;s so damn difficult to try and figure out when you&#8217;re just starting out because there&#8217;s SO much you can do with it. One of my first frustrations with it was the fact that I couldn&#8217;t determine which clicks and visits were my own?</p>
<p>Obviously, you&#8217;re more interested in who is visiting your site, where they came from, and what they did to find you. You&#8217;re <em>not</em> interested in how you found your own website.</p>
<p>So here&#8217;s a little video I put together which hopefully you&#8217;ll find useful. It will show you how to set up a filter on Google Analytics so you don&#8217;t track your own movements and visits to your own website.</p>
<p>If you haven&#8217;t already set up Google Analytics to run on your blog, here&#8217;s how: <a href="http://wpbloghost.com/how-to-install-google-analytics-on-a-wordpress-blog-without-using-a-plugin/" title="Video tutorial included.">How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></p>
<h2>How To Set Up A Google Analytics Filter</h2>
<p><center><object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/8JAuTE8P0XI&#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/8JAuTE8P0XI&#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/install-google-analytics-on-wordpress-without-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<li><a href='http://wpbloghost.tv/a-complete-guide-to-setting-up-feedburner-on-wordpress/' rel='bookmark' title='Permanent Link: A Complete Guide To Setting Up FeedBurner On WordPress'>A Complete Guide To Setting Up FeedBurner On WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-not-track-your-own-visits-in-google-analytics-setting-up-a-filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add New Users To WordPress</title>
		<link>http://wpbloghost.tv/wordpress-add-new-users/</link>
		<comments>http://wpbloghost.tv/wordpress-add-new-users/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 17:27:50 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=118</guid>
		<description><![CDATA[Create someone a new username and password so you can allow others access to your blog without giving them your own login and password information.


Related posts:<ol><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>
<li><a href='http://wpbloghost.tv/how-to-log-in-and-out-of-wordpress/' rel='bookmark' title='Permanent Link: How to log in and out of WordPress'>How to log in and out of WordPress</a></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There may be times when you want to allow someone else, like a web designer, to access your WordPress dashboard.</p>
<p>Here&#8217;s how you can create them a new username and password so you can allow them access to your blog without giving them your own login and password information.</p>
<p><center><br />
<object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/_1iG2NOpL2E&#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/_1iG2NOpL2E&#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><br />
</center></p>


<p>Related posts:<ol><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>
<li><a href='http://wpbloghost.tv/how-to-log-in-and-out-of-wordpress/' rel='bookmark' title='Permanent Link: How to log in and out of WordPress'>How to log in and out of WordPress</a></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/wordpress-add-new-users/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Manually Install WordPress</title>
		<link>http://wpbloghost.tv/how-to-manually-install-wordpress/</link>
		<comments>http://wpbloghost.tv/how-to-manually-install-wordpress/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 15:21:52 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[Beginner Tutorials]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=85</guid>
		<description><![CDATA[A step by step video guide on how to install the latest version of WordPress manually.


Related posts:<ol><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>
<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-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><strong><u>Video 1</u></strong></p>
<p><embed src="http://blip.tv/play/AYGO3DoA" type="application/x-shockwave-flash" width="590" height="480" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p><strong><u>Video 2</u></strong></p>
<p><embed src="http://blip.tv/play/AYGO3EYA" type="application/x-shockwave-flash" width="590" height="480" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>Note for Video 2: For WP Blog Host customers, instead of logging into the database to get your Database Host, you could just click the pencil icon as shown below.<br />
<img src="http:///wpbloghost.tv/tutorial-images/misc/database-pencil.jpg" alt="database-pencil" title="database-pencil" width="582" height="167" class="aligncenter size-full wp-image-1894" /></p>
<p><strong><u>Video 3</u></strong></p>
<p><embed src="http://blip.tv/play/AYGO3FEA" type="application/x-shockwave-flash" width="590" height="480" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p><strong><u>Video 4</u></strong></p>
<p><embed src="http://blip.tv/play/AYGO3DQA" type="application/x-shockwave-flash" width="590" height="480" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>Links shown in the videos:</p>
<ul>
<li>Download WordPress: <a href="http://wordpress.org/download/" target="_blank">http://wordpress.org/download/</a></li>
<li>WordPress 5-Minute Install: <a href="http://codex.wordpress.org/Installing_WordPress" target="_blank">http://codex.wordpress.org/Installing_WordPress</a></li>
</ul>
<p>If you have any questions, please don&#8217;t hesitate to ask in the comment section below.</p>


<p>Related posts:<ol><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>
<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-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-manually-install-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Complete Guide To Setting Up FeedBurner On WordPress</title>
		<link>http://wpbloghost.tv/a-complete-guide-to-setting-up-feedburner-on-wordpress/</link>
		<comments>http://wpbloghost.tv/a-complete-guide-to-setting-up-feedburner-on-wordpress/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 14:04:38 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=59</guid>
		<description><![CDATA[This is a 3-part complete video guide showing how to set up a FeedBurner RSS subscription service for your WordPress blog.


Related posts:<ol><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/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/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>The 3 videos are shown below.</p>
<p>Sorry for a 3 part video (<a title="WP Blog Host YouTube's account" href="http://youtube.com/wpbloghost">YouTube</a> only allows up to 10 minute videos), however I wanted to make sure this was a COMPLETE tutorial on how to set up a <a title="Google's Feedburner" href="https://www.google.com/accounts/ServiceLogin?service=feedburner&amp;continue=http%3A%2F%2Ffeedburner.google.com%2Ffb%2Fa%2Fmyfeeds">FeedBurner</a> account and hook it up to your WordPress blog. It will show you how to:</p>
<ul>
<li>Set up your FeedBurner account</li>
<li>How to add a RSS image to your blog&#8217;s theme if there&#8217;s not already one there &#8211; and how to link it to your FeedBurner&#8217;s feed</li>
<li>How to set up a &#8220;Subscribe by Email&#8221; box which users can subscribe to your blog by email</li>
<li>How to redirect all the default WordPress feeds on your blog to your FeedBurner&#8217;s feed through a .htaccess file</li>
<li>All this is done without the use of a FeedBurner plugin (which I don&#8217;t like using)</li>
</ul>
<p><strong>1. Your Feed Address</strong><br />
Your default WordPress feed address you&#8217;ll need to type or paste into FeedBurner will look like this:</p>
<p align="center">http://your-site.com/feed</p>
<p>If your blog is contained within a subdirectory, say <strong>/blog</strong>, your feed&#8217;s address will look something like this:</p>
<p align="center">http://your-site.com/blog/feed</p>
<p><strong>2. How To Redirect Your Feeds To FeedBurner Through .htaccess</strong></p>
<p><em><strong>UPDATE:</strong> Thanks to feedback from viewers, we&#8217;ve discovered that this code doesn&#8217;t always work with your theme. If it doesn&#8217;t work, you may have to go into your header.php or sidebar.php file and manually replace the default WordPress feed&#8217;s address with your FeedBurner&#8217;s address.</em></p>
<p>If your WordPress theme already includes a RSS icon, it will link to your default WordPress feed and not your FeedBurner&#8217;s feed. To link it to your FeedBurner&#8217;s feed, log into your web hosting control panel, navigate to your WordPress installation&#8217;s directory and either create or open the .htaccess file.</p>
<p>Paste in the following code to your .htaccess file. Don&#8217;t forget to edit the feed address in the code below  (shown in blue) to your own feed. Save the .htaccess file and your RSS icon should now link to your FeedBurner&#8217;s feed.</p>
<table border="0">
<tbody>
<tr>
<td height="15px"></td>
</tr>
</tbody>
</table>
<pre># Redirect your WordPress feeds to your FeedBurner's feed automatically
&lt;IfModule mod_rewrite.c&gt;
 RewriteEngine on
 RewriteCond %{HTTP_USER_AGENT} !FeedBurner    [NC]
 RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC]
 RewriteRule ^feed/?([_0-9a-z-]+)?/?$ <span style="color: #0000ff;">http://feeds2.feedburner.com/wpbloghost</span> [R=302,NC,L]
&lt;/IfModule&gt;</pre>
<h2>How To Set Up FeedBurner Video 1 of 3</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="470" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/PE9A7w5bF3A&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550" height="470" src="http://www.youtube.com/v/PE9A7w5bF3A&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>How To Set Up FeedBurner Video 2 of 3</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="470" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/oaQwZxWh12A&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550" height="470" src="http://www.youtube.com/v/oaQwZxWh12A&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>How To Set Up FeedBurner Video 3 of 3</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="470" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/cvliwz1t7Tg&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550" height="470" src="http://www.youtube.com/v/cvliwz1t7Tg&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>


<p>Related posts:<ol><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/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/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/a-complete-guide-to-setting-up-feedburner-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>How To Set Up Multiple Installs of WordPress To Share One Database</title>
		<link>http://wpbloghost.tv/wordpress-share-database/</link>
		<comments>http://wpbloghost.tv/wordpress-share-database/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 17:05:52 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=54</guid>
		<description><![CDATA[Here's how you can install multiple versions of WordPress on a hosting account and make them share one database.


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/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/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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>WordPress requires the use of a database and although this is not the case for <a href="http://wpbloghost.com">WP Blog Host</a>, some web hosts only allow their hosting customers one database in their hosting account.</p>
<p>This could pose a problem if you are trying to install more than one WordPress installation on your account.</p>
<p>Here&#8217;s how you can install multiple versions of WordPress on a hosting account and make them share one database.</p>
<p><center><embed src="http://blip.tv/play/AYGUjBIC" 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/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/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/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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/wordpress-share-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
