<?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: Automatic MySql Backup Script</title>
	<atom:link href="http://www.dagondesign.com/articles/automatic-mysql-backup-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/</link>
	<description>WordPress Plugins, PHP Scripts, Tools, and Tutorials</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:58:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Vidhyasagar</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-7/#comment-555946</link>
		<dc:creator>Vidhyasagar</dc:creator>
		<pubDate>Fri, 13 Jan 2012 12:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-555946</guid>
		<description>Awesome Script… Thank you Oliver Mueller &amp; Austin. If we had a backup counter incorporated to delete the older backup it would be great.</description>
		<content:encoded><![CDATA[<p>Awesome Script… Thank you Oliver Mueller &amp; Austin. If we had a backup counter incorporated to delete the older backup it would be great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vidhyasagar</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-7/#comment-555941</link>
		<dc:creator>Vidhyasagar</dc:creator>
		<pubDate>Fri, 13 Jan 2012 11:01:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-555941</guid>
		<description>Hi John,
Instead id ‘localhost’ please specify you database instance domain name or ipaddress.

Example:
// Mysql connection settings (must have root access to get all DBs)
$MYSQL_HOST = ‘192.168.1.X’;

Regards,
Vidhyasagar</description>
		<content:encoded><![CDATA[<p>Hi John,<br />
Instead id ‘localhost’ please specify you database instance domain name or ipaddress.</p>
<p>Example:<br />
// Mysql connection settings (must have root access to get all DBs)<br />
$MYSQL_HOST = ‘192.168.1.X’;</p>
<p>Regards,<br />
Vidhyasagar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vidhyasagar</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-7/#comment-555940</link>
		<dc:creator>Vidhyasagar</dc:creator>
		<pubDate>Fri, 13 Jan 2012 11:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-555940</guid>
		<description>Hi John,
Instead id &#039;localhost&#039; please specify you database instance domain name or ipaddress.

Example:
// Mysql connection settings (must have root access to get all DBs)
$MYSQL_HOST = &#039;192.168.1.X&#039;;</description>
		<content:encoded><![CDATA[<p>Hi John,<br />
Instead id &#8216;localhost&#8217; please specify you database instance domain name or ipaddress.</p>
<p>Example:<br />
// Mysql connection settings (must have root access to get all DBs)<br />
$MYSQL_HOST = &#8216;192.168.1.X&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sagar</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-7/#comment-555939</link>
		<dc:creator>Sagar</dc:creator>
		<pubDate>Fri, 13 Jan 2012 10:55:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-555939</guid>
		<description>Awesome Script... Thank you Oliver Mueller &amp; Austin.</description>
		<content:encoded><![CDATA[<p>Awesome Script&#8230; Thank you Oliver Mueller &amp; Austin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-7/#comment-554015</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 13 Dec 2011 18:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-554015</guid>
		<description>Hi, I have copied your scripts onto myserver, set a cron job going, but i keep getting an access error:
&lt;code&gt;
Executing MySQL Backup Script v1.4
Processing Databases..
Access denied for user &#039;cronDataBaseBackup&#039;@&#039;localhost&#039; (using password: YES)
Access denied for user &#039;cronDataBaseBackup&#039;@&#039;localhost&#039; (using password: YES)
Access denied for user &#039;cronDataBaseBackup&#039;@&#039;localhost&#039; (using password: YES)
&lt;/code&gt;

The config files looks like this:
&lt;code&gt;
// Path to the mysql commands (mysqldump, mysqladmin, etc..)
$MYSQL_PATH = &#039;/usr/bin&#039;;  //and i meant to set this to a different path?

// Mysql connection settings (must have root access to get all DBs)
$MYSQL_HOST = &#039;localhost&#039;;
$MYSQL_USER = &#039;cronDataBaseBackup&#039;; //this user been created specifically for backing up the database, and has all privs
$MYSQL_PASSWD = &#039;hfuHYv6%F5dhf9jg9dn0*UNil&#039;;

// Backup destination (will be created if not already existing)
$BACKUP_DEST = $current_path.&#039;/sql_files/&#039;;

// Temporary location (will be created if not already existing)
$BACKUP_TEMP = &#039;/tmp/backup_temp&#039;;

// Show script status on screen while processing
// (Does not effect log file creation)
$VERBOSE = true;
&lt;/code&gt;

Any ideas? Have I missed something? (the login details, username ad password are defo correct)


Thanks,

John</description>
		<content:encoded><![CDATA[<p>Hi, I have copied your scripts onto myserver, set a cron job going, but i keep getting an access error:<br />
<pre><code>
Executing MySQL Backup Script v1.4
Processing Databases..
Access denied for user 'cronDataBaseBackup'@'localhost' (using password: YES)
Access denied for user 'cronDataBaseBackup'@'localhost' (using password: YES)
Access denied for user 'cronDataBaseBackup'@'localhost' (using password: YES)
</code></pre></p>
<p>The config files looks like this:<br />
<pre><code>
// Path to the mysql commands (mysqldump, mysqladmin, etc..)
$MYSQL_PATH = '/usr/bin';  //and i meant to set this to a different path?

// Mysql connection settings (must have root access to get all DBs)
$MYSQL_HOST = 'localhost';
$MYSQL_USER = 'cronDataBaseBackup'; //this user been created specifically for backing up the database, and has all privs
$MYSQL_PASSWD = 'hfuHYv6%F5dhf9jg9dn0*UNil';

// Backup destination (will be created if not already existing)
$BACKUP_DEST = $current_path.'/sql_files/';

// Temporary location (will be created if not already existing)
$BACKUP_TEMP = '/tmp/backup_temp';

// Show script status on screen while processing
// (Does not effect log file creation)
$VERBOSE = true;
</code></pre></p>
<p>Any ideas? Have I missed something? (the login details, username ad password are defo correct)</p>
<p>Thanks,</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miraclesoul</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-7/#comment-552175</link>
		<dc:creator>miraclesoul</dc:creator>
		<pubDate>Mon, 21 Nov 2011 16:15:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-552175</guid>
		<description>i have just recently wrote up a blog entry for how to make a batch file to take the daily backup of MYSQL databases in windows environment at a particular time.

please see the link below, i have also added screenshots for the ease of understanding

&lt;a href=&quot;http://www.newsinjection.com/solved-simple-batch-file-to-daily-take-backup-of-mysql-database-in-windows&quot; rel=&quot;nofollow&quot;&gt;

MYSQL database backup, mysql backup, mysql daily backup, mysql daily database backup, mysql daily database backup windows, simple mysql script for database backup  

&lt;/a&gt;

thanks</description>
		<content:encoded><![CDATA[<p>i have just recently wrote up a blog entry for how to make a batch file to take the daily backup of MYSQL databases in windows environment at a particular time.</p>
<p>please see the link below, i have also added screenshots for the ease of understanding</p>
<p><a href="http://www.newsinjection.com/solved-simple-batch-file-to-daily-take-backup-of-mysql-database-in-windows" rel="nofollow"></p>
<p>MYSQL database backup, mysql backup, mysql daily backup, mysql daily database backup, mysql daily database backup windows, simple mysql script for database backup  </p>
<p></a></p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-7/#comment-551750</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Wed, 16 Nov 2011 09:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-551750</guid>
		<description>I installed in windows server and get no errors. All messages show success except that there is no arcive file. There is log file that shows success but no backup file. It will email a backup file but when i try to open it says cannot open this type of file. anyone know why?</description>
		<content:encoded><![CDATA[<p>I installed in windows server and get no errors. All messages show success except that there is no arcive file. There is log file that shows success but no backup file. It will email a backup file but when i try to open it says cannot open this type of file. anyone know why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: replica</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-551334</link>
		<dc:creator>replica</dc:creator>
		<pubDate>Sat, 12 Nov 2011 00:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-551334</guid>
		<description>Nice hosting! It’s my first time to read like this article.</description>
		<content:encoded><![CDATA[<p>Nice hosting! It’s my first time to read like this article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wholesale</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-550398</link>
		<dc:creator>wholesale</dc:creator>
		<pubDate>Fri, 28 Oct 2011 05:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-550398</guid>
		<description>Coach is a leading American desig</description>
		<content:encoded><![CDATA[<p>Coach is a leading American desig</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ugg</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-550241</link>
		<dc:creator>ugg</dc:creator>
		<pubDate>Wed, 26 Oct 2011 05:57:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-550241</guid>
		<description>No matter what size you are, you’ll have no problem locating a pair to suit your toes.</description>
		<content:encoded><![CDATA[<p>No matter what size you are, you’ll have no problem locating a pair to suit your toes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wholesale</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-550041</link>
		<dc:creator>wholesale</dc:creator>
		<pubDate>Sat, 22 Oct 2011 11:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-550041</guid>
		<description>each people all have own nam</description>
		<content:encoded><![CDATA[<p>each people all have own nam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: donghanjin</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-549491</link>
		<dc:creator>donghanjin</dc:creator>
		<pubDate>Sat, 15 Oct 2011 10:08:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-549491</guid>
		<description>I always gain new ideas here.</description>
		<content:encoded><![CDATA[<p>I always gain new ideas here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alejandro Arauz</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-549137</link>
		<dc:creator>Alejandro Arauz</dc:creator>
		<pubDate>Mon, 10 Oct 2011 17:30:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-549137</guid>
		<description>I found this site looking for Mysql backup tools but honestly I prefer a tool with a simple GUI rather than running scripts.
I found this tool MySqlBackupFTP (http://mysqlbackupftp.com), the free version does pretty much the same as the script except that instead of emailing you the backup it uses an FTP server or a local/network folder. It only emails you a confirmation once the backup is done. If you are looking for a friendly backup solution you should give it a try.</description>
		<content:encoded><![CDATA[<p>I found this site looking for Mysql backup tools but honestly I prefer a tool with a simple GUI rather than running scripts.<br />
I found this tool MySqlBackupFTP (<a href="http://mysqlbackupftp.com" rel="nofollow">http://mysqlbackupftp.com</a>), the free version does pretty much the same as the script except that instead of emailing you the backup it uses an FTP server or a local/network folder. It only emails you a confirmation once the backup is done. If you are looking for a friendly backup solution you should give it a try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wholesale</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-548560</link>
		<dc:creator>wholesale</dc:creator>
		<pubDate>Thu, 29 Sep 2011 08:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-548560</guid>
		<description>Great that you enter to our fashion wallet on sale shop for searching for D&amp;G Wallet ,</description>
		<content:encoded><![CDATA[<p>Great that you enter to our fashion wallet on sale shop for searching for D&amp;G Wallet ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wholesale</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-548376</link>
		<dc:creator>wholesale</dc:creator>
		<pubDate>Tue, 27 Sep 2011 04:18:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-548376</guid>
		<description>I wouldnt have ever noticed you if I never tried look and research. Superb and excellent and aim delighted I saw it. Now I know what I need to do. Thanks ever so much.</description>
		<content:encoded><![CDATA[<p>I wouldnt have ever noticed you if I never tried look and research. Superb and excellent and aim delighted I saw it. Now I know what I need to do. Thanks ever so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: petdeals</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-548353</link>
		<dc:creator>petdeals</dc:creator>
		<pubDate>Mon, 26 Sep 2011 16:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-548353</guid>
		<description>Hello, first of all, thanks for your efforts!

I have one error:

DUMP FAILED
sh: /usr/local/mysql/mysqldump: No such file or directory
DUMP FAILED
sh: /usr/local/mysql/mysqldump: No such file or directory

I used:

  to find out where my mysql dir is.

What should I do?</description>
		<content:encoded><![CDATA[<p>Hello, first of all, thanks for your efforts!</p>
<p>I have one error:</p>
<p>DUMP FAILED<br />
sh: /usr/local/mysql/mysqldump: No such file or directory<br />
DUMP FAILED<br />
sh: /usr/local/mysql/mysqldump: No such file or directory</p>
<p>I used:</p>
<p>  to find out where my mysql dir is.</p>
<p>What should I do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wholesale</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-547965</link>
		<dc:creator>wholesale</dc:creator>
		<pubDate>Tue, 20 Sep 2011 06:44:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-547965</guid>
		<description>Cheap coach Handbags On Sale and pumps. This is all just for starters. As you can tell, there is literally something to fit all tastes. No matter what size you are, you’ll have no problem locating a pair to suit your toes.</description>
		<content:encoded><![CDATA[<p>Cheap coach Handbags On Sale and pumps. This is all just for starters. As you can tell, there is literally something to fit all tastes. No matter what size you are, you’ll have no problem locating a pair to suit your toes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wholesale</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-547608</link>
		<dc:creator>wholesale</dc:creator>
		<pubDate>Mon, 12 Sep 2011 07:59:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-547608</guid>
		<description>Thanks for the article, I&#039;ll think about what you mentioned in it. It&#039; an interesting point of view.</description>
		<content:encoded><![CDATA[<p>Thanks for the article, I&#8217;ll think about what you mentioned in it. It&#8217; an interesting point of view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: replica eyewear</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-547311</link>
		<dc:creator>replica eyewear</dc:creator>
		<pubDate>Mon, 05 Sep 2011 16:26:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-547311</guid>
		<description>&lt;code&gt;I always gain new ideas here. very goo site. I give you 10 out of 10.yuytujdf&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code>I always gain new ideas here. very goo site. I give you 10 out of 10.yuytujdf</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: replica jewelry</title>
		<link>http://www.dagondesign.com/articles/automatic-mysql-backup-script/comment-page-6/#comment-547038</link>
		<dc:creator>replica jewelry</dc:creator>
		<pubDate>Wed, 31 Aug 2011 03:38:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/automatic-mysql-backup-script/#comment-547038</guid>
		<description>&lt;code&gt;it’s very useful.&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code>it’s very useful.</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

