<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How To Create A &#8216;Maintenance&#8217; Holding Page When Upgrading Your WordPress Blog</title>
	<atom:link href="http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Sat, 21 Nov 2009 01:01:31 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kjetil</title>
		<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/comment-page-1#comment-10290</link>
		<dc:creator>Kjetil</dc:creator>
		<pubDate>Sat, 12 Sep 2009 17:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=1540#comment-10290</guid>
		<description>You were quite right! - so thanks a lot
I&#039;ve never been aware that there are two ways to write a quote mark:
&quot;
The curly ones from the bad pasting made the problem.
Just one thing to add in: If your site lives in its own folder, eg /blogg should be added like this:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} !blogg/maintenance.php$
RewriteCond %{REMOTE_HOST} !^62.16.191.18
RewriteRule $ /blogg/maintenance.php [R=302,L]
...and with some styling work (eg using Dreamweaver) it even looks nice.
Works like a charm!
Kjetil
PS Grabbing Damien&#039;s page doesn&#039;t work, but just reinsert all &quot; (quotes) and you&#039;re on the right track</description>
		<content:encoded><![CDATA[<p>You were quite right! &#8211; so thanks a lot<br />
I&#8217;ve never been aware that there are two ways to write a quote mark:<br />
&#8221;<br />
The curly ones from the bad pasting made the problem.<br />
Just one thing to add in: If your site lives in its own folder, eg /blogg should be added like this:<br />
Options +FollowSymlinks<br />
RewriteEngine on<br />
RewriteCond %{REQUEST_URI} !blogg/maintenance.php$<br />
RewriteCond %{REMOTE_HOST} !^62.16.191.18<br />
RewriteRule $ /blogg/maintenance.php [R=302,L]<br />
&#8230;and with some styling work (eg using Dreamweaver) it even looks nice.<br />
Works like a charm!<br />
Kjetil<br />
PS Grabbing Damien&#8217;s page doesn&#8217;t work, but just reinsert all &#8221; (quotes) and you&#8217;re on the right track</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: samnob</title>
		<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/comment-page-1#comment-10159</link>
		<dc:creator>samnob</dc:creator>
		<pubDate>Tue, 08 Sep 2009 16:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=1540#comment-10159</guid>
		<description>I had a similar problem, it turned out that the double quotes in the above code block were not cutting and pasting well. (not sure why)

I replaced the characters by hand and it worked fine, but it would probably be easier to grab Damien&#039;s working page from:
http://maketecheasier.com/maintenance.php</description>
		<content:encoded><![CDATA[<p>I had a similar problem, it turned out that the double quotes in the above code block were not cutting and pasting well. (not sure why)</p>
<p>I replaced the characters by hand and it worked fine, but it would probably be easier to grab Damien&#8217;s working page from:<br />
<a href="http://maketecheasier.com/maintenance.php" rel="nofollow">http://maketecheasier.com/maintenance.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kjetil</title>
		<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/comment-page-1#comment-9846</link>
		<dc:creator>Kjetil</dc:creator>
		<pubDate>Sun, 30 Aug 2009 19:09:59 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=1540#comment-9846</guid>
		<description>Hm - sorry for all these questions, but maybe others have the same problems.
Now, in the maintenance.php I&#039;ve just replaced the mysite stuff and uploaded it to the site&#039;s root.
And - to the start of the .htaccess file I&#039;ve added:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} !/maintenance.php$
RewriteCond %{REMOTE_HOST} !^62.16.191.158
RewriteRule $ /maintenance.php [R=302,L]
but the result to others (and me if I open dolcevita.no/maintenance.php) is
Parse error: syntax error, unexpected T_LNUMBER in /home/2/d/dolcevita/www/maintenance.php on line 2
(I also tried to enter the IP address as you had, like 62\.16\.191\.158 - but of course that won&#039;t work.)
Some obvious mistake?
Thanks,
Kjetil</description>
		<content:encoded><![CDATA[<p>Hm &#8211; sorry for all these questions, but maybe others have the same problems.<br />
Now, in the maintenance.php I&#8217;ve just replaced the mysite stuff and uploaded it to the site&#8217;s root.<br />
And &#8211; to the start of the .htaccess file I&#8217;ve added:<br />
Options +FollowSymlinks<br />
RewriteEngine on<br />
RewriteCond %{REQUEST_URI} !/maintenance.php$<br />
RewriteCond %{REMOTE_HOST} !^62.16.191.158<br />
RewriteRule $ /maintenance.php [R=302,L]<br />
but the result to others (and me if I open dolcevita.no/maintenance.php) is<br />
Parse error: syntax error, unexpected T_LNUMBER in /home/2/d/dolcevita/www/maintenance.php on line 2<br />
(I also tried to enter the IP address as you had, like 62\.16\.191\.158 &#8211; but of course that won&#8217;t work.)<br />
Some obvious mistake?<br />
Thanks,<br />
Kjetil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kjetil</title>
		<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/comment-page-1#comment-9825</link>
		<dc:creator>Kjetil</dc:creator>
		<pubDate>Sun, 30 Aug 2009 08:57:11 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=1540#comment-9825</guid>
		<description>Thanks,
It just seemed wrong, with totally different numbers than I expected.
Ready to upgrade. They say things have happened with WP since 2.6.
Cheers</description>
		<content:encoded><![CDATA[<p>Thanks,<br />
It just seemed wrong, with totally different numbers than I expected.<br />
Ready to upgrade. They say things have happened with WP since 2.6.<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damien</title>
		<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/comment-page-1#comment-9811</link>
		<dc:creator>Damien</dc:creator>
		<pubDate>Sun, 30 Aug 2009 00:37:27 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=1540#comment-9811</guid>
		<description>When you go to whatismyip.com, you will see your ip at the top of the screen automatically.</description>
		<content:encoded><![CDATA[<p>When you go to whatismyip.com, you will see your ip at the top of the screen automatically.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kjetil</title>
		<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/comment-page-1#comment-9786</link>
		<dc:creator>Kjetil</dc:creator>
		<pubDate>Sat, 29 Aug 2009 10:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=1540#comment-9786</guid>
		<description>Great idea - facing a major upgrade process this would be very useful.
BUT: Where do I go on whatismyip.com to detect my network&#039;s IP address? I don&#039;t know the terms well enough to find the path there...
Thanks a lot for many great tips
Kjetil</description>
		<content:encoded><![CDATA[<p>Great idea &#8211; facing a major upgrade process this would be very useful.<br />
BUT: Where do I go on whatismyip.com to detect my network&#8217;s IP address? I don&#8217;t know the terms well enough to find the path there&#8230;<br />
Thanks a lot for many great tips<br />
Kjetil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: OmniDownloads &#124; Scribefire: A Full Featured Blog Editor For Firefox Users</title>
		<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/comment-page-1#comment-8273</link>
		<dc:creator>OmniDownloads &#124; Scribefire: A Full Featured Blog Editor For Firefox Users</dc:creator>
		<pubDate>Sun, 21 Jun 2009 08:41:29 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=1540#comment-8273</guid>
		<description>[...] How To Create A &#8216;Maintenance&#8217; Holding Page When Upgrading Your WordPress Blog [...]</description>
		<content:encoded><![CDATA[<p>[...] How To Create A &#8216;Maintenance&#8217; Holding Page When Upgrading Your WordPress Blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pavan Kumar</title>
		<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/comment-page-1#comment-3683</link>
		<dc:creator>Pavan Kumar</dc:creator>
		<pubDate>Thu, 18 Dec 2008 05:59:20 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=1540#comment-3683</guid>
		<description>Gone are the days of hectic upgrade. Its highly simple to use upgrade plugins if one is on wp2.6...</description>
		<content:encoded><![CDATA[<p>Gone are the days of hectic upgrade. Its highly simple to use upgrade plugins if one is on wp2.6&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DemoGeek</title>
		<link>http://maketecheasier.com/create-a-maintenance-holding-page-when-upgrading-wordpress/2008/12/12/comment-page-1#comment-3580</link>
		<dc:creator>DemoGeek</dc:creator>
		<pubDate>Sat, 13 Dec 2008 07:36:39 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=1540#comment-3580</guid>
		<description>That&#039;s a neat and simple trick and a much needed one at the time of WP 2.7 upgrade. Thanks for sharing this.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a neat and simple trick and a much needed one at the time of WP 2.7 upgrade. Thanks for sharing this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
