<?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: Simple, yet powerful WordPress backup script. Cron job setup howto.</title>
	<atom:link href="http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/</link>
	<description>Ecommerce Web Hosting, Web Development, Promotions, News &#38; Trends of the Industry</description>
	<lastBuildDate>Mon, 13 Jun 2011 11:41:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Eric</title>
		<link>http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/comment-page-1/#comment-15832</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Tue, 19 Apr 2011 19:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://svhostingblog.com/?p=397#comment-15832</guid>
		<description>I had to modify this script to work at my host, because the database host is not localhost.

The script already has a line for the IP address of the mysql server, which I filled out:

DBHOST=example.database.com

Then I had to modify the mysqldump command line to include the host (-h):

mysqldump -h$DBHOST -u$USERNAME -p$PASSWORD $DBNAME &#124; gzip &gt; $BACKUPDIR/mysql_backup_$DATE.gz;</description>
		<content:encoded><![CDATA[<p>I had to modify this script to work at my host, because the database host is not localhost.</p>
<p>The script already has a line for the IP address of the mysql server, which I filled out:</p>
<p>DBHOST=example.database.com</p>
<p>Then I had to modify the mysqldump command line to include the host (-h):</p>
<p>mysqldump -h$DBHOST -u$USERNAME -p$PASSWORD $DBNAME | gzip &gt; $BACKUPDIR/mysql_backup_$DATE.gz;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ubuntu Cron File Location &#124; More More Pics</title>
		<link>http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/comment-page-1/#comment-15477</link>
		<dc:creator>Ubuntu Cron File Location &#124; More More Pics</dc:creator>
		<pubDate>Sat, 19 Feb 2011 11:28:01 +0000</pubDate>
		<guid isPermaLink="false">http://svhostingblog.com/?p=397#comment-15477</guid>
		<description>[...] Cron menu location in DA svhostingblog.com [...]</description>
		<content:encoded><![CDATA[<p>[...] Cron menu location in DA svhostingblog.com [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RalphGL</title>
		<link>http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/comment-page-1/#comment-13680</link>
		<dc:creator>RalphGL</dc:creator>
		<pubDate>Sun, 02 Jan 2011 00:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://svhostingblog.com/?p=397#comment-13680</guid>
		<description>hi Archie,
the described problem on debian (or ubuntu) system is caused by forbidden parameters for mtime:
m=month; h=hours, m=minutes, s=seconds are not allowed, only the number of days must be defined.</description>
		<content:encoded><![CDATA[<p>hi Archie,<br />
the described problem on debian (or ubuntu) system is caused by forbidden parameters for mtime:<br />
m=month; h=hours, m=minutes, s=seconds are not allowed, only the number of days must be defined.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Archie</title>
		<link>http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/comment-page-1/#comment-12182</link>
		<dc:creator>Archie</dc:creator>
		<pubDate>Thu, 09 Dec 2010 18:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://svhostingblog.com/?p=397#comment-12182</guid>
		<description>Hey Ralph,

Thanks for mentioning that!
The script was used on FreeBSD and tried out on CentOS, since it was a custom solution, we couldn&#039;t cover all distros to make sure it&#039;s going to work everywhere.

Anyway, if you have a fix for that - please let us know - we are much interested.</description>
		<content:encoded><![CDATA[<p>Hey Ralph,</p>
<p>Thanks for mentioning that!<br />
The script was used on FreeBSD and tried out on CentOS, since it was a custom solution, we couldn&#8217;t cover all distros to make sure it&#8217;s going to work everywhere.</p>
<p>Anyway, if you have a fix for that &#8211; please let us know &#8211; we are much interested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RalphGL</title>
		<link>http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/comment-page-1/#comment-12179</link>
		<dc:creator>RalphGL</dc:creator>
		<pubDate>Thu, 09 Dec 2010 16:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://svhostingblog.com/?p=397#comment-12179</guid>
		<description>find $BACKUPDIR -type f -name “*.gz” -mtime +$BPAGE -exec rm -f {} \;
is leading to 
find: invalid argument `-exec&#039; to `-mtime&#039;
on Debian Lenny-System. So the backups which are to old will not been deleted.</description>
		<content:encoded><![CDATA[<p>find $BACKUPDIR -type f -name “*.gz” -mtime +$BPAGE -exec rm -f {} \;<br />
is leading to<br />
find: invalid argument `-exec&#8217; to `-mtime&#8217;<br />
on Debian Lenny-System. So the backups which are to old will not been deleted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carol</title>
		<link>http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/comment-page-1/#comment-4255</link>
		<dc:creator>Carol</dc:creator>
		<pubDate>Fri, 16 Jul 2010 08:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://svhostingblog.com/?p=397#comment-4255</guid>
		<description>Thanks for another fantastic  article. I am always looking for  original WordPress tutorials to suggest  to my own readers. Thanks for creating this post.  It&#039;s just  what I was  trying to find. Truly  phenomenal post.</description>
		<content:encoded><![CDATA[<p>Thanks for another fantastic  article. I am always looking for  original WordPress tutorials to suggest  to my own readers. Thanks for creating this post.  It&#8217;s just  what I was  trying to find. Truly  phenomenal post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webhosting coupons</title>
		<link>http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/comment-page-1/#comment-539</link>
		<dc:creator>webhosting coupons</dc:creator>
		<pubDate>Tue, 16 Feb 2010 06:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://svhostingblog.com/?p=397#comment-539</guid>
		<description>wish I had found this blog before today. The advices in this posts are very helpful and I surely will read the other posts of this series too.Thank you for posting this. Your Blog is Bookmarked</description>
		<content:encoded><![CDATA[<p>wish I had found this blog before today. The advices in this posts are very helpful and I surely will read the other posts of this series too.Thank you for posting this. Your Blog is Bookmarked</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adbox</title>
		<link>http://svhostingblog.com/guides/simple-yet-powerful-wordpress-backup-script-cron-job-setup-howto/comment-page-1/#comment-304</link>
		<dc:creator>adbox</dc:creator>
		<pubDate>Sat, 30 Jan 2010 21:41:13 +0000</pubDate>
		<guid isPermaLink="false">http://svhostingblog.com/?p=397#comment-304</guid>
		<description>This is partially relative: I&#039;m running through promotionals for this site:  http://www.cronwatch.com</description>
		<content:encoded><![CDATA[<p>This is partially relative: I&#8217;m running through promotionals for this site:  <a href="http://www.cronwatch.com" rel="nofollow">http://www.cronwatch.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

