<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1041351" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1041351</link>
    <description></description>
    <language>en</language>
          <item>
    <title>This is a very good article</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/maintenance#comment-1231167</link>
    <description> &lt;p&gt;This is a very good article and I probably will try it out on next project&lt;/p&gt;
&lt;p&gt;I just went through setting up dev test sites for a group of 4 related sites with about 200,000 files (a lot of member images)&lt;/p&gt;
&lt;p&gt;In Plesk I could not archive and extract I had to use ftp&lt;/p&gt;
&lt;p&gt;In such a massive ftp process some stuff got left out or corrupted and I had to make a second pass to clean it up (I used Filezilla and redid the failed transfers)&lt;/p&gt;
&lt;p&gt;Probably the worst part of the process was copying the MySQL database in 20 stages. Now I know about &lt;a href=&quot;http://www.ozerov.de/bigdump.php&quot;&gt;Big Dump&lt;/a&gt; that handles big db migrations.&lt;/p&gt;
&lt;p&gt;I have used Tortoise SVN for some other projects but never thought about using Subversion for web dev&lt;/p&gt;
&lt;p&gt;cool!&lt;/p&gt;
 </description>
     <pubDate>Sun, 29 Jun 2008 16:44:12 +0000</pubDate>
 <dc:creator>netsperience</dc:creator>
 <guid isPermaLink="false">comment 1231167 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Yes, depending on how</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/maintenance#comment-1231149</link>
    <description> &lt;p&gt;Yes, depending on how important the site is and how much traffic is pulled.  &lt;a href=&quot;http://athleticsnyc.com/blog/entry/on-using-subversion-for-web-projects&quot;&gt;This article&lt;/a&gt; explains how you can work on different copies of your site and push changes to your production location quickly and easily.  I have been using this method on my recent projects and it&#039;s so much easier to maintain.  Repositories are amazing. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 29 Jun 2008 04:55:43 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1231149 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Or, alternatively, rather</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/maintenance#comment-1231071</link>
    <description> &lt;p&gt;Or, alternatively, rather than remove users access to the site when you work on it, you can &quot;mirror&quot; (copy) your entire site for working on.&lt;/p&gt;
&lt;p&gt;So you would work on the mirrored site and when you have completed something and fully tested it to confirm there are no errors, you can then simply copy it to the live site. Users might get a little disruption, but only seconds.&lt;/p&gt;
&lt;p&gt;All this depends on what you work on of course. If you are working on something where you need to stop users inputting or using a function as you need to take the current data from live and change it to a new procedure, then you would not want users inputting more data in &quot;the old way&quot;, so then you might still want to &quot;close&quot; the site for that.&lt;br /&gt;
But general improvements/maintenance etc can be done on a mirror site and avoiding the downtime.&lt;/p&gt;
&lt;p&gt;And even if you need to shut down the site just to upload new code, working on the mirrored site makes downtime a few seconds, rather than the time you are making/editing code as well.&lt;/p&gt;
 </description>
     <pubDate>Fri, 27 Jun 2008 11:28:44 +0000</pubDate>
 <dc:creator>greg</dc:creator>
 <guid isPermaLink="false">comment 1231071 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Method I use: For php home</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/maintenance#comment-1231057</link>
    <description> &lt;p&gt;Method I use: For php home page, put in an html page and use a .htaccess file to give html priority, if necessary. For an html home page, add a php page.&lt;/p&gt;
 </description>
     <pubDate>Fri, 27 Jun 2008 02:23:21 +0000</pubDate>
 <dc:creator>webwiz</dc:creator>
 <guid isPermaLink="false">comment 1231057 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>tyvm for this information i</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/maintenance#comment-1230961</link>
    <description> &lt;p&gt;tyvm for this information i have now done it:D&lt;/p&gt;
 </description>
     <pubDate>Wed, 25 Jun 2008 19:36:54 +0000</pubDate>
 <dc:creator>mark86123</dc:creator>
 <guid isPermaLink="false">comment 1230961 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>To redirect all page</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/maintenance#comment-1230958</link>
    <description> &lt;p&gt;To redirect all page requests to a temporary page, just add this to your .htaccess file.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;RewriteEngine on&lt;br /&gt;RewriteBase /&lt;br /&gt;RewriteCond %{REMOTE_HOST} !^24\.1\.456\.123&lt;br /&gt;RewriteCond %{REQUEST_URI} !/not-up\.htm$&lt;br /&gt;RewriteRule .* /not-up.htm [R=302,L]&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;Just make sure your own IP is in the 3rd line.  Make a copy of that line to add additional addresses as well.&lt;/p&gt;
&lt;p&gt;Also, this code assumes that your temporary page is located at /not-up.htm.  If it&#039;s not there, you will have to change those last two lines accordingly.&lt;/p&gt;
 </description>
     <pubDate>Wed, 25 Jun 2008 19:01:16 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1230958 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
