<?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; moving</title>
	<atom:link href="http://wpbloghost.tv/tag/moving/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpbloghost.tv</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 31 Aug 2011 00:21:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How To Move Your WordPress Core Files Out Of Root</title>
		<link>http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/</link>
		<comments>http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 18:33:46 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[Moving WordPress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=154</guid>
		<description><![CDATA[This tutorial is meant to show you how to clean up all the system WordPress files that clog up your root directory by moving them into a subdirectory.


Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
<li><a href='http://wpbloghost.tv/how-to-move-your-wordpress-blog-from-a-subdirectroy-to-root/' rel='bookmark' title='How to Move Your WordPress Blog from a Subdirectroy to Root'>How to Move Your WordPress Blog from a Subdirectroy to Root</a></li>
<li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This tutorial is meant to show you how to clean up all the system WordPress files that clog up your root directory by moving them into a subdirectory. </p>
<h2>Watch The How-To Video</h2>
<p><embed src="http://blip.tv/play/AYGT5hoC" type="application/x-shockwave-flash" width="590" height="480" allowscriptaccess="always" allowfullscreen="true"></embed> </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. During the move process you&#8217;ll be moving your /wp-content folder, which contains all your plugins. This will cause your site to not load; therefore, it&#8217;s best to have your own maintenance page independent of WordPress.</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" /></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>Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
<li><a href='http://wpbloghost.tv/how-to-move-your-wordpress-blog-from-a-subdirectroy-to-root/' rel='bookmark' title='How to Move Your WordPress Blog from a Subdirectroy to Root'>How to Move Your WordPress Blog from a Subdirectroy to Root</a></li>
<li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to Move Your WordPress Blog from a Subdirectroy to Root</title>
		<link>http://wpbloghost.tv/how-to-move-your-wordpress-blog-from-a-subdirectroy-to-root/</link>
		<comments>http://wpbloghost.tv/how-to-move-your-wordpress-blog-from-a-subdirectroy-to-root/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 15:11:11 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[Moving WordPress]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=81</guid>
		<description><![CDATA[Down the road during your blogging career you might decide to move your blog out of /blog and into your root directory. Here's how.


Related posts:<ol><li><a href='http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='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-transfer-your-blog-from-wordpress-com-to-wpbloghost/' rel='bookmark' title='How to Transfer Your Blog from WordPress.com to WP Blog Host'>How to Transfer Your Blog from WordPress.com to WP Blog Host</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Always be sure to fully back up your blog before attempting a move.</strong></p>
<p>Many times, new bloggers might put their blog in a subdirectory, like /blog or they did not realize that when you install WordPress manually, it will be installed in the /wordpress directory. If this is the case and you want to move your blog out of a subdirectory and into the root folder of your site (i.e. you domain name), then follow the instructions in the video below.</p>
<p>If you have any questions, please comment below.</p>
<p><center><object width="550" height="470"><param name="movie" value="http://www.youtube.com/v/BYWfbx-Qvnc&#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/BYWfbx-Qvnc&#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/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='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-transfer-your-blog-from-wordpress-com-to-wpbloghost/' rel='bookmark' title='How to Transfer Your Blog from WordPress.com to WP Blog Host'>How to Transfer Your Blog from WordPress.com to WP Blog Host</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-move-your-wordpress-blog-from-a-subdirectroy-to-root/feed/</wfw:commentRss>
		<slash:comments>81</slash:comments>
		</item>
		<item>
		<title>How to Transfer Your Blog from a cPanel Host, Such as Bluehost, to WP Blog Host</title>
		<link>http://wpbloghost.tv/transfer-blog-from-cpanel-host-to-wp-blog-host/</link>
		<comments>http://wpbloghost.tv/transfer-blog-from-cpanel-host-to-wp-blog-host/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 16:56:39 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[Moving WordPress]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[moving]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=52</guid>
		<description><![CDATA[In this tutorial, we'll show you how to transfer your blog from another web host which uses the cPanel hosting, such as Bluehost, over to WP Blog Host. Why host with a hosting company not dedicated to blogging?


Related posts:<ol><li><a href='http://wpbloghost.tv/transfer-from-blogger-to-wp-blog-host/' rel='bookmark' title='How to Transfer Your Blog from Blogger to WP Blog Host'>How to Transfer Your Blog from Blogger to WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/how-to-transfer-your-blog-from-wordpress-com-to-wpbloghost/' rel='bookmark' title='How to Transfer Your Blog from WordPress.com to WP Blog Host'>How to Transfer Your Blog from WordPress.com to WP Blog Host</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In this tutorial, we&#8217;ll show you how to transfer your blog from another web host which uses the cPanel hosting over to <a href="https://www.securepaynet.net/Hosting/Legacy.aspx?ci=13453&#038;prog_id=442543&#038;isc=appemail40">WP Blog Host hosting</a>.</p>
<h2>Video 1 of 2</h2>
<p><center><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/k1IzIjNFaUU&#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/k1IzIjNFaUU&#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="445" height="364"><param name="movie" value="http://www.youtube.com/v/SRQv5SB6GJg&#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/SRQv5SB6GJg&#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/transfer-from-blogger-to-wp-blog-host/' rel='bookmark' title='How to Transfer Your Blog from Blogger to WP Blog Host'>How to Transfer Your Blog from Blogger to WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/how-to-transfer-your-blog-from-wordpress-com-to-wpbloghost/' rel='bookmark' title='How to Transfer Your Blog from WordPress.com to WP Blog Host'>How to Transfer Your Blog from WordPress.com to WP Blog Host</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/transfer-blog-from-cpanel-host-to-wp-blog-host/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Transfer Your Blog from Blogger to WP Blog Host</title>
		<link>http://wpbloghost.tv/transfer-from-blogger-to-wp-blog-host/</link>
		<comments>http://wpbloghost.tv/transfer-from-blogger-to-wp-blog-host/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 23:39:35 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[Moving WordPress]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=49</guid>
		<description><![CDATA[Free blogs are never a good idea because one day you might find you need to move your blog to paid hosting, then what? It'll cost you money, time, broken links, SEO, and a ton more. This tutorial will show you how to move your Blogger blog over to WP Blog Host.


Related posts:<ol><li><a href='http://wpbloghost.tv/transfer-blog-from-cpanel-host-to-wp-blog-host/' rel='bookmark' title='How to Transfer Your Blog from a cPanel Host, Such as Bluehost, to WP Blog Host'>How to Transfer Your Blog from a cPanel Host, Such as Bluehost, to WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/how-to-transfer-your-blog-from-wordpress-com-to-wpbloghost/' rel='bookmark' title='How to Transfer Your Blog from WordPress.com to WP Blog Host'>How to Transfer Your Blog from WordPress.com to WP Blog Host</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to transfer your blog over from a BlogSpot (a.k.a. Blogger) account over to WP Blog Host <a href="https://www.securepaynet.net/Hosting/Legacy.aspx?ci=13453&#038;prog_id=442543&#038;isc=appemail40" title="WP Blog Host hosting details">web hosting</a>. </p>
<p>Many people new to the world of blogging think that since they are just starting out they should start with a free blog over at sites like Blogger and wordpress.com. There are numerous reasons why that is not necesarily a good idea. Here are a couple articles on our blog to read up more on the differences between free hosting/blogs and paid hosting.</p>
<ul>
<li><a href="http://wpbloghost.com/blog/start-a-blog-free-or-paid-wordpress-or-blogger/" target="_blank">Start A Blog: Free or Paid? WordPress or Blogger?</a></li>
<li><a href="http://wpbloghost.com/blog/8-drawbacks-to-free-web-hosting/" target="_blank">8+ Drawbacks to Free Web Hosting</a></li>
</ul>
<h2>How to Transfer Your Blog from Blogger to WP Blog Host</h2>
<p><center><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/S1FqWSoPpRU&#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/S1FqWSoPpRU&#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/transfer-blog-from-cpanel-host-to-wp-blog-host/' rel='bookmark' title='How to Transfer Your Blog from a cPanel Host, Such as Bluehost, to WP Blog Host'>How to Transfer Your Blog from a cPanel Host, Such as Bluehost, to WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/how-to-transfer-your-blog-from-wordpress-com-to-wpbloghost/' rel='bookmark' title='How to Transfer Your Blog from WordPress.com to WP Blog Host'>How to Transfer Your Blog from WordPress.com to WP Blog Host</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/transfer-from-blogger-to-wp-blog-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Transfer Your Blog from WordPress.com to WP Blog Host</title>
		<link>http://wpbloghost.tv/how-to-transfer-your-blog-from-wordpress-com-to-wpbloghost/</link>
		<comments>http://wpbloghost.tv/how-to-transfer-your-blog-from-wordpress-com-to-wpbloghost/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 15:53:22 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[Moving WordPress]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=43</guid>
		<description><![CDATA[Learn how to move your blog from wordpress.com over to WP Blog Host's hosting.


Related posts:<ol><li><a href='http://wpbloghost.tv/transfer-from-blogger-to-wp-blog-host/' rel='bookmark' title='How to Transfer Your Blog from Blogger to WP Blog Host'>How to Transfer Your Blog from Blogger to WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/transfer-blog-from-cpanel-host-to-wp-blog-host/' rel='bookmark' title='How to Transfer Your Blog from a cPanel Host, Such as Bluehost, to WP Blog Host'>How to Transfer Your Blog from a cPanel Host, Such as Bluehost, to WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/how-to-move-your-wordpress-blog-from-a-subdirectroy-to-root/' rel='bookmark' title='How to Move Your WordPress Blog from a Subdirectroy to Root'>How to Move Your WordPress Blog from a Subdirectroy to Root</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><a title="Blog hosting company" href="http://wpbloghost.com"><img src="http://wpbloghost.tv/tutorial-images/misc/wp-blog-host.jpg" align="right" />WP Blog Host</a> is a full-service web hosting company committed and designed to help new (and experienced) bloggers learn and grow.</p>
<p>Bloggers can choose between <a href="https://www.securepaynet.net/gdshop/hosting/shared.asp?isc=appemail40&amp;app_hdr=&amp;prog_id=442543&amp;ci=13453">hosting</a> products, <a href="https://www.securepaynet.net/gdshop/domain_offer.asp?isc=appemail40&amp;se=%2B&amp;prog_id=442543&amp;ci=545&amp;app_hdr=">domain</a> products, <a href="http://www.securepaynet.net/gdshop/email.asp?isc=appemail40&amp;ci=1794&amp;prog_id=442543">email</a> products, and <a href="http://www.securepaynet.net/gdshop/catalog.asp?ci=6899&amp;prog_id=442543">more</a>.</p>
<p>This video tutorial will show you how to move your WordPress blog from wordpress.com to WP Blog Host hosting.</p>
<h2>Watch It Bigger</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="445" height="364" 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/j9qk2cVUB3Q&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="445" height="364" src="http://www.youtube.com/v/j9qk2cVUB3Q&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></td>
</tr>
</tbody>
</table>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/transfer-from-blogger-to-wp-blog-host/' rel='bookmark' title='How to Transfer Your Blog from Blogger to WP Blog Host'>How to Transfer Your Blog from Blogger to WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/transfer-blog-from-cpanel-host-to-wp-blog-host/' rel='bookmark' title='How to Transfer Your Blog from a cPanel Host, Such as Bluehost, to WP Blog Host'>How to Transfer Your Blog from a cPanel Host, Such as Bluehost, to WP Blog Host</a></li>
<li><a href='http://wpbloghost.tv/how-to-move-your-wordpress-blog-from-a-subdirectroy-to-root/' rel='bookmark' title='How to Move Your WordPress Blog from a Subdirectroy to Root'>How to Move Your WordPress Blog from a Subdirectroy to Root</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-transfer-your-blog-from-wordpress-com-to-wpbloghost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

