<?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: Backups Part 1: Creating a Backup of your Web Site</title>
	<atom:link href="http://blog.westhost.com/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/</link>
	<description>News, Announcements &#38; More</description>
	<lastBuildDate>Tue, 01 Nov 2011 13:20:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: James</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-36100</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 26 Oct 2011 21:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-36100</guid>
		<description>I&#039;ve been wanting a good backup tutorial for a while... I&#039;ll bookmark this one. Thanks Chris!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been wanting a good backup tutorial for a while&#8230; I&#8217;ll bookmark this one. Thanks Chris!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eric marantan</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-16812</link>
		<dc:creator>eric marantan</dc:creator>
		<pubDate>Mon, 22 Feb 2010 22:28:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-16812</guid>
		<description>hello, I have an existing domain and using a database in my web host. My phpmyadmin is not installed in my cpanel. If I were going to install my phpmyadmin in my cpanel through the one-click install application, does my existing database will affected or it will maybe remove?

I just want to add a subdomain account and it needs a database. If I were going to install my phpmyadmin, is there any changes will happen to my existing database? please help me. i need your suggestion about this.

thank you..</description>
		<content:encoded><![CDATA[<p>hello, I have an existing domain and using a database in my web host. My phpmyadmin is not installed in my cpanel. If I were going to install my phpmyadmin in my cpanel through the one-click install application, does my existing database will affected or it will maybe remove?</p>
<p>I just want to add a subdomain account and it needs a database. If I were going to install my phpmyadmin, is there any changes will happen to my existing database? please help me. i need your suggestion about this.</p>
<p>thank you..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ting</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-16222</link>
		<dc:creator>ting</dc:creator>
		<pubDate>Tue, 08 Dec 2009 17:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-16222</guid>
		<description>i accidentally drop my whole database, c203 in phpmyadmin. help me~ =(</description>
		<content:encoded><![CDATA[<p>i accidentally drop my whole database, c203 in phpmyadmin. help me~ =(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Website Design UK</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-15254</link>
		<dc:creator>Website Design UK</dc:creator>
		<pubDate>Thu, 22 Oct 2009 11:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-15254</guid>
		<description>Thanks for a sharing articles.</description>
		<content:encoded><![CDATA[<p>Thanks for a sharing articles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-15010</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Sat, 29 Aug 2009 22:32:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-15010</guid>
		<description>Chris Olson has it right. If your web site is important to you then it makes good sense to maintain an off-site copy of it just in case. This advice would apply, no matter where you host your site. 

I do all the things mentioned here to back up some sites I have at Westhost plus I also use a Perl script to email the tar.gz files to a mail box not at Westhost. Put all the shell commands in a shell script and execute it from a cron job. You have an automatic back up process.

The script I use is adapted from this:

http://lena.franken.de/perl_hier/sendingmail.html

At the minimum you will need to add a mime type:

$mime_filetype = &quot;application/g-zip&quot; if ( $sendfile_fn =~ /gz$/ );

For a person wanting to learn a little about linux commands  and shell scripting, this could be a good starter project. The Westhost Community Forums are full of advice on how to do things like this.</description>
		<content:encoded><![CDATA[<p>Chris Olson has it right. If your web site is important to you then it makes good sense to maintain an off-site copy of it just in case. This advice would apply, no matter where you host your site. </p>
<p>I do all the things mentioned here to back up some sites I have at Westhost plus I also use a Perl script to email the tar.gz files to a mail box not at Westhost. Put all the shell commands in a shell script and execute it from a cron job. You have an automatic back up process.</p>
<p>The script I use is adapted from this:</p>
<p><a href="http://lena.franken.de/perl_hier/sendingmail.html" rel="nofollow">http://lena.franken.de/perl_hier/sendingmail.html</a></p>
<p>At the minimum you will need to add a mime type:</p>
<p>$mime_filetype = &#8220;application/g-zip&#8221; if ( $sendfile_fn =~ /gz$/ );</p>
<p>For a person wanting to learn a little about linux commands  and shell scripting, this could be a good starter project. The Westhost Community Forums are full of advice on how to do things like this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Olson</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-14497</link>
		<dc:creator>Chris Olson</dc:creator>
		<pubDate>Thu, 06 Aug 2009 17:17:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-14497</guid>
		<description>Westhost regularly backs up its standard shared hosting accounts. Only with the dedicated server plans is it an additional option to have Westhost back up your account. We maintain a rolling five-day backup and so we will always have the last five days of backups on your site. There is one caveat to this and that is that this backup is mainly used for technical support reasons and shouldn&#039;t be relied on 100% as your main backup and shouldn&#039;t take the place of your regular backups. But it is nice to have this as a secondary backup if ever needed. If you need us to restore a backup for you, just contact us and we can help you use this backup option.

It&#039;s always nice to know how to do the backup yourself. I also agree that it would be ideal to have this done automatically and stored offsite. Currently there is no automatic backup solution that Westhost offers; however, we will have other backup solutions when we move to Westhost 4.0 in the following months. We currently do not have a date on when that will happen, but we are in alpha testing now.
</description>
		<content:encoded><![CDATA[<p>Westhost regularly backs up its standard shared hosting accounts. Only with the dedicated server plans is it an additional option to have Westhost back up your account. We maintain a rolling five-day backup and so we will always have the last five days of backups on your site. There is one caveat to this and that is that this backup is mainly used for technical support reasons and shouldn&#8217;t be relied on 100% as your main backup and shouldn&#8217;t take the place of your regular backups. But it is nice to have this as a secondary backup if ever needed. If you need us to restore a backup for you, just contact us and we can help you use this backup option.</p>
<p>It&#8217;s always nice to know how to do the backup yourself. I also agree that it would be ideal to have this done automatically and stored offsite. Currently there is no automatic backup solution that Westhost offers; however, we will have other backup solutions when we move to Westhost 4.0 in the following months. We currently do not have a date on when that will happen, but we are in alpha testing now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nate</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-14480</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Wed, 05 Aug 2009 23:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-14480</guid>
		<description>Two questions:
1. Does WestHost do any regular backups of customer files?
2. Although it&#039;s nice to know how to do manual backups, automatic is always better!  Can you step us through how to set up automatic backups, perhaps that get emailed or ftp&#039;d offsite automatically as well?</description>
		<content:encoded><![CDATA[<p>Two questions:<br />
1. Does WestHost do any regular backups of customer files?<br />
2. Although it&#8217;s nice to know how to do manual backups, automatic is always better!  Can you step us through how to set up automatic backups, perhaps that get emailed or ftp&#8217;d offsite automatically as well?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oregon Wedding Photographer</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-14475</link>
		<dc:creator>Oregon Wedding Photographer</dc:creator>
		<pubDate>Wed, 05 Aug 2009 21:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-14475</guid>
		<description>Thank you for such a great detailed explanation of how to backup our websites. I have been looking for something like this for some time.</description>
		<content:encoded><![CDATA[<p>Thank you for such a great detailed explanation of how to backup our websites. I have been looking for something like this for some time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benjamin</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-14220</link>
		<dc:creator>Benjamin</dc:creator>
		<pubDate>Mon, 27 Jul 2009 21:08:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-14220</guid>
		<description>beware the fancy quotes in the above.  also, the m-dash before in #2 is really two hyphens

i.e
- - all - databases
but without the spaces

the backtick is really a backtick (over the tab key)</description>
		<content:encoded><![CDATA[<p>beware the fancy quotes in the above.  also, the m-dash before in #2 is really two hyphens</p>
<p>i.e<br />
- &#8211; all &#8211; databases<br />
but without the spaces</p>
<p>the backtick is really a backtick (over the tab key)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benjamin</title>
		<link>http://www.westhost.com/blog/2009/07/21/backups-part-1-creating-a-backup-of-your-web-site/comment-page-1/#comment-14218</link>
		<dc:creator>Benjamin</dc:creator>
		<pubDate>Mon, 27 Jul 2009 20:02:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.westhost.com/blog/?p=356#comment-14218</guid>
		<description>If you&#039;re going to give shell instructions, then you should also add either:

1) for just the foobardatabase
mysqldump foobardatabase &#124; gzip &gt; foobardatabase`date  &quot;+%Y-%m-%d&quot;`.sql.gz


2) or for all databases
mysqldump --all-databases &#124; gzip &gt; all`date &quot;+%Y-%m-%d&quot;`.sql.gz</description>
		<content:encoded><![CDATA[<p>If you&#8217;re going to give shell instructions, then you should also add either:</p>
<p>1) for just the foobardatabase<br />
mysqldump foobardatabase | gzip &gt; foobardatabase`date  &#8220;+%Y-%m-%d&#8221;`.sql.gz</p>
<p>2) or for all databases<br />
mysqldump &#8211;all-databases | gzip &gt; all`date &#8220;+%Y-%m-%d&#8221;`.sql.gz</p>
]]></content:encoded>
	</item>
</channel>
</rss>

