<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/des3bashwebsite/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/des3bashwebsite/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/des3bashwebsite/bugs/</id><updated>2009-04-13T18:46:38Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>Database Compression</title><link href="https://sourceforge.net/p/des3bashwebsite/bugs/2/" rel="alternate"/><published>2009-04-13T18:46:38Z</published><updated>2009-04-13T18:46:38Z</updated><author><name>Matthew Barker</name><uri>https://sourceforge.net/u/mwbarker/</uri></author><id>https://sourceforge.netde4d42f64361741e8c10eec06b3b97fb35361492</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;This code seems to be incorrect as well:&lt;/p&gt;
&lt;p&gt;for database in $databases&lt;br /&gt;
do&lt;br /&gt;
rm -f ${backupdir}/${DOW}-${database}.sql.gz&lt;br /&gt;
rm -f ${backupdir}/sql/${DOW}-${database}.sql.gz&lt;br /&gt;
$gzip ${backupdir}/${DOW}-${database}.sql&lt;br /&gt;
done&lt;/p&gt;
&lt;p&gt;Should read this:&lt;/p&gt;
&lt;p&gt;for database in $databases&lt;br /&gt;
do&lt;br /&gt;
rm -f ${backupdir}/${DOW}-${database}.sql.gz #not even sure what this is supposed to do since no db files are created here&lt;br /&gt;
rm -f ${backupdir}/sql/${DOW}-${database}.sql.gz&lt;br /&gt;
gzip ${backupdir}/sql/${DOW}-${database}.sql&lt;br /&gt;
done&lt;/p&gt;
&lt;p&gt;Without this change, nothing is really being accomplished.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Backing up multiple databases</title><link href="https://sourceforge.net/p/des3bashwebsite/bugs/1/" rel="alternate"/><published>2009-04-13T18:38:26Z</published><updated>2009-04-13T18:38:26Z</updated><author><name>Matthew Barker</name><uri>https://sourceforge.net/u/mwbarker/</uri></author><id>https://sourceforge.net83e47ab72162dc04c4e9a3a05231c42b3bf0b705</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;There appears to be an error in the code on line 31. It reads this:&lt;/p&gt;
&lt;p&gt;$mysqldumpcmd $userpassword $dumpoptions $databases &amp;gt; ${backupdir}/sql/${DOW}-${database}.sql&lt;/p&gt;
&lt;p&gt;It should read this:&lt;/p&gt;
&lt;p&gt;$mysqldumpcmd $userpassword $dumpoptions $database &amp;gt; ${backupdir}/sql/${DOW}-${database}.sql&lt;/p&gt;
&lt;p&gt;The key is $database instead of $databases before the dump.&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>