1
0
Fork 0
Dieser Commit ist enthalten in:
DSB 2011-06-10 22:58:43 +00:00
Commit a4890c2cda
37 geänderte Dateien mit 3387 neuen und 0 gelöschten Zeilen

5
.buildpath Normale Datei
Datei anzeigen

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
<buildpathentry kind="src" path=""/>
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
</buildpath>

22
.project Normale Datei
Datei anzeigen

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>m</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.dltk.core.scriptbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.php.core.PHPNature</nature>
</natures>
</projectDescription>

233
config_overview.php Normale Datei
Datei anzeigen

@ -0,0 +1,233 @@
<?php
include("inc/header.php");
if (isset($_POST["load"]))
{
$msg=SetDefault();
$msg=nl2br($msg)."<br>". $l["load_success"]."<br>";
?>
<script language="JavaScript">
parent.menu.location.href="menu.php";
</script>
<?php
}
if (isset($_POST["save"]))
{
//Parameter auslesen
$dbpraefix=$_POST["dbpraefix"];
$dbpraefix_a[$db_selected_index]=$dbpraefix;
$dbcronpraefix=$_POST["dbcronpraefix"];
$compression=$_POST["compression"];
$lang=$_POST["lang"];
$email[0]=$_POST["email0"];
$email[1]=$_POST["email1"];
$send_mail=$_POST["send_mail"];
//$path=$_POST["path"];
if(substr($path,strlen($path)-1,1)!="/") $path.="/";
$auto_delete=$_POST["auto_delete"];
$del_files_after_days=$_POST["del_files_after_days"];
$max_backup_files=$_POST["max_backup_files"];
$cron_timelimit=$_POST["cron_timelimit"];
$cron_samedb=$_POST["cron_samedb"];
$cron_dbindex=$_POST["cron_dbindex"];
if($cron_samedb==0)$cron_dbindex=$db_selected_index;
$ftp_transfer=$_POST["ftp_transfer"];
$ftp_server=$_POST["ftp_server"];
$ftp_port=$_POST["ftp_port"];
$ftp_user=$_POST["ftp_user"];
$ftp_pass=$_POST["ftp_pass"];
$ftp_dir=$_POST["ftp_dir"];
$anzahl_zeilen=$_POST["dumpz"];
$anzahl_zeilen_restore=$_POST["restorez"];
// und wegschreiben
if (WriteParams()==true)
{
//neue Sprache? Dann Men&uuml; links auch aktualisieren
if($_POST["lang_old"]!=$lang)
{
?>
<script language="JavaScript">
parent.menu.location.href="menu.php";
</script>
<?php
}
//Parameter laden
include($config_file);
$msg.= $l["save_success"];
} else $msg.= $l["save_error"];
}
echo "<h3>".$l["config_headline"]."</h3>".$msg;
?>
<form method="POST" action="config_overview.php">
<?php
$td='<td class="tableheads_off" onmouseover="this.className=\'tableheads_on\'" onmouseout="this.className=\'tableheads_off\'" align="center">';
$a1.= '<div align="center"><table border="1"><tr>';
echo $a1;
echo $td.'<input class="Menubutton" name="load" type="submit" value="'.$l["load"].'" onclick="if (!confirm(\''.$l["config_askload"].'\')) return false;"></td>';
echo '</tr></table></div>';
?>
<table border="1" cellpadding="0" cellspacing="0" align="center">
<!--Zugangsdaten-->
<tr><td colspan="2" class="hd"><?php echo $l["config_databases"]; ?></td></tr>
<tr>
<td valign="top"><?php echo Help($l["help_db"],"conf1").$l["list_db"];?></td>
<td><div align="left" class="scrollbox">
<?php
$datenbanken=count($dbname_a);
for($i=0;$i<$datenbanken;$i++)
{
$a=($i+1).". ".$dbname_a[$i].'<br>';
if($i==$db_selected_index) $a='<strong>'.$a.'</strong>';
echo $a;
}
?>
</select></div>
</td>
</tr>
<tr><td><?php echo Help($l["help_praefix"],"conf2").$l["praefix"]; ?>:&nbsp;</td><td><input type="text" name="dbpraefix" value="<?php echo $dbpraefix; ?>"></td></tr>
<!--sonstige Einstellungen-->
<tr><td colspan="2" class="hd"><?php echo $l["config_dumprestore"]; ?></td></tr>
<tr>
<td><?php echo Help($l["help_zip"],"conf3").$l["gzip"]; ?>:&nbsp;</td>
<td>
<input type="radio" value="1" name="compression" <?php echo($compression==1)?" checked":""?>><?php echo $l["activated"]; ?>
<input type="radio" value="0" name="compression"<?php echo($compression==0)?" checked":""?>><?php echo $l["not_activated"]; ?>
</td>
</tr>
<tr>
<td><?php echo Help($l["help_dumpz"],"conf19").$l["dump_zeilen"]; ?>:&nbsp;</td>
<td><input type="text" size="6" maxlength="6" name="dumpz" value="<?php echo $anzahl_zeilen; ?>"></td>
</tr>
<tr>
<td><?php echo Help($l["help_restorez"],"conf20").$l["restore_zeilen"]; ?>:&nbsp;</td>
<td><input type="text" size="6" maxlength="6" name="restorez" value="<?php echo $anzahl_zeilen_restore; ?>"></td>
</tr>
<!-- <tr><td><?php echo Help($l["help_budir"],"conf4").$l["backup_dir"]; ?>:&nbsp;</td><td><input type="text" name="path" value="<?php echo $path; ?>"></td></tr>
-->
<!--Email-->
<tr><td colspan="2" class="hd"><?php echo $l["config_email"]; ?></td></tr>
<tr>
<td><?php echo Help($l["help_mail1"],"conf5").$l["send_mail_form"]; ?>:&nbsp;</td>
<td>
<input type="radio" value="1" name="send_mail"<?php echo($send_mail==1)?" checked":""?>><?php echo $l["activated"]; ?>
<input type="radio" value="0" name="send_mail"<?php echo($send_mail==0)?" checked":""?>><?php echo $l["not_activated"]; ?>
</td>
</tr>
<tr><td><?php echo Help($l["help_mail2"],"conf6").$l["email_adress"]; ?>:&nbsp;</td><td><input type="text" name="email0" value="<?php echo $email[0]; ?>" size="30"></td></tr>
<tr><td><?php echo Help($l["help_mail3"],"conf7").$l["email_subject"]; ?>:&nbsp;</td><td><input type="text" name="email1" value="<?php echo $email[1]; ?>" size="30"></td></tr>
<!--FTP-->
<tr><td colspan="2" class="hd"><?php echo $l["config_ftp"]; ?></td></tr>
<tr>
<td><?php echo Help($l["help_ftptransfer"],"conf13").$l["ftp_transfer"]; ?>:&nbsp;</td>
<td>
<input type="radio" value="1" name="ftp_transfer" <?php echo($ftp_transfer==1)?" checked":""?>><?php echo $l["activated"]; ?>
<input type="radio" value="0" name="ftp_transfer"<?php echo($ftp_transfer==0)?" checked":""?>><?php echo $l["not_activated"]; ?>
</td>
</tr>
<tr>
<td><?php echo Help($l["help_ftpserver"],"conf14").$l["ftp_server"]; ?>:&nbsp;</td>
<td><input type="text" size="30" name="ftp_server" value="<?php echo $ftp_server; ?>"></td>
</tr>
<tr>
<td><?php echo Help($l["help_ftpport"],"conf15").$l["ftp_port"]; ?>:&nbsp;</td>
<td><input type="text" size="30" name="ftp_port" value="<?php echo $ftp_port; ?>"></td>
</tr>
<tr>
<td><?php echo Help($l["help_ftpuser"],"conf16").$l["ftp_user"]; ?>:&nbsp;</td>
<td><input type="text" size="30" name="ftp_user" value="<?php echo $ftp_user; ?>"></td>
</tr>
<tr>
<td><?php echo Help($l["help_ftppass"],"conf17").$l["ftp_pass"]; ?>:&nbsp;</td>
<td><input type="password" size="30" name="ftp_pass" value="<?php echo $ftp_pass; ?>"></td>
</tr>
<tr>
<td><?php echo Help($l["help_ftpdir"],"conf18").$l["ftp_dir"]; ?>:&nbsp;</td>
<td><input type="text" size="30" name="ftp_dir" value="<?php echo $ftp_dir; ?>"></td>
</tr>
<!--automatisches L&ouml;schen-->
<tr><td colspan="2" class="hd"><?php echo $l["config_autodelete"]; ?></td></tr>
<tr>
<td><?php echo Help($l["help_ad1"],"conf8").$l["autodelete"]; ?>:&nbsp;</td>
<td>
<input type="radio" value="1" name="auto_delete" <?php echo($auto_delete==1)?" checked":""?>><?php echo $l["activated"]; ?>
<input type="radio" value="0" name="auto_delete"<?php echo($auto_delete==0)?" checked":""?>><?php echo $l["not_activated"]; ?>
</td>
</tr>
<tr>
<td><?php echo Help($l["help_ad2"],"conf9").$l["age_of_files"]; ?>:&nbsp;</td>
<td><input type="text" size="3" name="del_files_after_days" value="<?php echo $del_files_after_days; ?>"></td>
</tr>
<tr><td><?php echo Help($l["help_ad3"],"conf10").$l["number_of_files_form"]; ?>:&nbsp;</td><td><input type="text" size="3" name="max_backup_files" value="<?php echo $max_backup_files; ?>"></td></tr>
<tr><td colspan="2" class="hd"><?php echo $l["config_interface"]; ?></td></tr>
<tr>
<td><?php echo Help($l["help_lang"],"conf11").$l["language"]; ?>:&nbsp;</td>
<td><select name="lang">
<option value="de" <?php echo($lang=="de")?" SELECTED":""?>><?php echo $l["lang_de"]; ?></option>
<option value="en" <?php echo($lang=="en")?" SELECTED":""?>><?php echo $l["lang_en"]; ?></option>
</select><input type="hidden" name="lang_old" value="<?php echo $lang; ?>"></td>
</tr>
<!--Cronjob-->
<tr><td colspan="2" class="hd"><?php echo $l["config_cron"]; ?></td></tr>
<tr>
<td><?php echo Help($l["help_crontime"],"conf12").$l["cron_timelimit"]; ?>:&nbsp;</td>
<td><input type="text" size="3" maxlength="3" name="cron_timelimit" value="<?php echo $cron_timelimit; ?>"> sek.</td>
</tr>
<tr>
<td><?php echo Help($l["help_cronsamedb"],"conf13").$l["cron_samedb"]; ?>:&nbsp;</td>
<td>
<input type="radio" value="0" name="cron_samedb" onclick="document.getElementById('cdb').style.visibility='hidden';" <?php echo($cron_samedb==0)?" checked":""?>><?php echo $l["yes"]; ?>
<input type="radio" value="1" name="cron_samedb" onclick="document.getElementById('cdb').style.visibility='visible';" <?php echo($cron_samedb==1)?" checked":""?>><?php echo $l["no"]; ?>
</td>
</tr>
<tr>
<td><?php echo Help($l["help_crondbindex"],"conf14").$l["cron_crondbindex"]; ?>:&nbsp;</td>
<td><div id="cdb" style="visibility:<?php echo ($cron_samedb==0)?"hidden;":"visible;"?>">
<select name="cron_dbindex">
<?php
$datenbanken=count($dbname_a);
for($i=0;$i<$datenbanken;$i++)
{
echo '<option value="'.$i.'" ';
if($i==$cron_dbindex) echo 'SELECTED';
echo '>'.$dbname_a[$i].'</option>\n';
}
?>
</select><br>
<input type="text" name="dbcronpraefix" value="<?php echo $dbcronpraefix; ?>">
</div>
</td>
</tr>
<!-- Formular-Buttons -->
<tr height="50"><td colspan="2" align="center">
<input class="Formbutton" type="reset" name="reset" value="<?php echo $l["reset"];?>">&nbsp;&nbsp;&nbsp;<input class="Formbutton" type="submit" name="save" value="<?php echo $l["save"];?>">
</td></tr>
</table>
</form>
<?php
include("inc/footer.php");
?>

176
cron_dump.php Normale Datei
Datei anzeigen

@ -0,0 +1,176 @@
<?
include_once("inc/functions_dump.php");
@TestWorkDir();
include($config_file);
@set_time_limit ($cron_timelimit);
@ignore_user_abort(1);
if (!isset($table_offset))
{
//Crondb
if($cron_samedb==0) {
$cron_dbname=$dbname;
$cron_dbpraefix = $dbpraefix;
}else {
$cron_dbname=$dbname_a[$cron_dbindex];
$cron_dbpraefix = $dbpraefix_a[$cron_dbindex];
}
$dateiname=$cron_dbname."_".date("d\.m\.Y\_H",time())."_Uhr_".date("i",time())."_cron"; // Dateiname aus Datum und Uhrzeit bilden
$endung= ($compression) ? ".sql.gz" : ".sql";
$backupdatei=$dateiname.$endung;
if (file_exists($backup_path.$backupdatei)) @unlink($backup_path.$backupdatei);
WriteLog("Start Cron-Dump '$backupdatei' from '$HTTP_REFERER'");
$table_offset=0;
// Seitenerstaufruf -> Backupdatei anlegen
$cur_time=date("Y-m-d H:i");
$newfile="# Dump created on $cur_time\r\n";
$newfile.="# Remember that you must use my restorescript in order to get a working DB\r\n";
$newfile.="# because I use a special code to mark the end of a command.\r\n";
$newfile.="# This is NOT compatible with other restorescripts!\r\n";
$newfile.="# Anyway, have fun with this but use it at your own risk. :-) \r\n";
if ($compression==1)
{
$fp = gzopen ($backup_path.$backupdatei,"wb");
gzwrite ($fp,$newfile);
gzclose ($fp);
chmod($backup_path.$backupdatei,0777);
}
else
{
$fp = fopen ($backup_path.$backupdatei,"wb");
fwrite ($fp,$newfile);
fclose ($fp);
chmod($backup_path.$backupdatei,0777);
}
}
$conn = mysql_connect($dbhost,$dbuser,$dbpass) or die(mysql_error());
$tabellen = mysql_list_tables($cron_dbname,$conn);
$num_tables = @mysql_num_rows($tabellen);
$tables=ARRAY();
if ($num_tables>0)
{
for ($i=0;$i<$num_tables;$i++)
{
$erg=mysql_fetch_row($tabellen);
if ($dbpraefix>"")
{
if (substr($erg[0],0,strlen($cron_dbpraefix))==$cron_dbpraefix) $tables[]=$erg[0];
}
else $tables[$i]=$erg[0];
}
}
else die("<br>Fehler:<br>Ich konnte keine Tabellen in der Datenbank '<b>".$dbname."</b>' finden.");
$num_tables=count($tables);
$newfile="";
$zeilen_offset==0;
while ($table_offset < $num_tables)
{
if ($table_offset < $num_tables)
{
$table = $tables[$table_offset];
$aktuelle_tabelle=$table_offset;
if ($zeilen_offset==0) $newfile = @get_def($cron_dbname,$table);
$newfile.= @cron_get_content($cron_dbname,$table);
}
if ($compression==1)
{
$fp = gzopen ($backup_path.$backupdatei,"ab");
gzwrite ($fp,$newfile);
gzclose ($fp);
}
else
{
$fp = fopen ($backup_path.$backupdatei,"ab");
fwrite ($fp,$newfile);
fclose ($fp);
}
}
WriteLog("Cron-Dump '$backupdatei' finished.");
if ($send_mail==1)
{
$msg_body = "\n\r\n\rIn der Anlage findest Du die Sicherung Deiner MySQL-Datenbank.\n\r"
." Sicherung der Datenbank '".$cron_dbname."' vom ".date("d\.m\.Y",time())
.".\n\r\n\rViele Grüsse\n\r\n\rMySQLDump\n\rhttp://www.daniel-schlichtholz.de/board";
$file = "$backup_path/$backupdatei";
$folder = $backup_path;
$file_type = filetype("$file");
$file_size = filesize("$file");
$subject = "Backup '".$cron_dbname."' - ".date("d\.m\.Y",time());
$fp = fopen($file, "r");
$contents = fread($fp, $file_size);
$encoded_file = chunk_split(base64_encode($contents));
fclose($fp);
$header.= "FROM:$email[1] <$email[0]>\n";
$header.= "MIME-version: 1.0\n";
$header.= "Content-type: multipart/mixed; ";
$header.= "boundary=\"Message-Boundary\"\n";
$header.= "Content-transfer-encoding: 7BIT\n";
$header.= "X-attachments: $backupdatei";
$body_top = "--Message-Boundary\n";
$body_top.= "Content-type: text/plain; charset=US-ASCII\n";
$body_top.= "Content-transfer-encoding: 7BIT\n";
$body_top.= "Content-description: Mail message body\n\n";
$msg_body = $body_top . $msg_body;
$msg_body.= "\n\n--Message-Boundary\n";
$msg_body.= "Content-type: $file_type; name=\"backupdatei\"\n";
$msg_body.= "Content-Transfer-Encoding: BASE64\n";
$msg_body.= "Content-disposition: attachment; filename=\"$backupdatei\"\n\n";
$msg_body.= "$encoded_file\n";
$msg_body.= "--Message-Boundary--\n";
if (mail($email[0], stripslashes($subject), $msg_body, $header)) WriteLog("Cron-Dump - Email was sent");
else WriteLog("Cron-Dump - Email failed with '$backupdatei'.");
if($ftp_transfer==1) {
SendViaFTP($backupdatei);
WriteLog("Cron-Dump - file sent via FTP: '$backupdatei'.");
}
}
echo "Alles fertig!";
// Liest die Daten aus der DB aus und baut die INSERT-Anweisung zusammen
function cron_get_content($dbname, $table)
{
global $conn,$anzahl_zeilen,$table_offset,$zeilen_offset,$nl,$next_sqlcommand,$num_tables;
$content="";
$query="SELECT * FROM $table";
$result = mysql_db_query($dbname,$query,$conn);
$ergebnisse=mysql_num_rows($result);
// zum debuggen : echo "get table $table ($table_offset of $num_tables - $zeilen_offset / $ergebnisse)<br>";
for ($x=0;$x<$ergebnisse;$x++)
{
$row=mysql_fetch_row($result);
{
$insert = "INSERT INTO $table VALUES (";
for($j=0; $j<mysql_num_fields($result);$j++)
{
if(!isset($row[$j])) $insert .= "NULL,";
else if($row[$j] != "") $insert .= "'".addslashes($row[$j])."',";
else $insert .= "'',";
}
$insert = ereg_replace(",$","",$insert);
$insert .= ");";
$content .= $insert.$next_sqlcommand.$nl;
}
}
$table_offset++;
return $content;
}
?>

10
doc/install_deutsch.txt Normale Datei
Datei anzeigen

@ -0,0 +1,10 @@
Installation:
- öffne die Datei "inc/config.php"
- füge die Daten (Host, Name, Passwort) der zu verwaltenden Datenbanke hinzu
(alle anderen Einstellungen kannst Du später online verändern)
- lade alle Dateien auf Deinen Webspace hoch
- Fertig! Starte das Script im Browser http://www.deineDomain.de/mysqldump/

10
doc/install_english.txt Normale Datei
Datei anzeigen

@ -0,0 +1,10 @@
Installation:
- open file "inc/config.php"
- insert data (Host, name, password) for the database you wish to backup
(all other values can be configured online - there is no need to change other values)
- upload all files to your webspace
- Ready!

105
doc/license_deutsch.txt Normale Datei
Datei anzeigen

@ -0,0 +1,105 @@
GNU General Public License
Deutsche Übersetzung der Version 2, Juni 1991
Copyright © 1989, 1991 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
Diese Übersetzung ist kein rechtskräftiger Ersatz für die englischsprachige Originalversion!
Vorwort
Die meisten Softwarelizenzen sind daraufhin entworfen worden, Ihnen die Freiheit zu nehmen, die Software weiterzugeben und zu verändern. Im Gegensatz dazu soll Ihnen die GNU General Public License , die Allgemeine Öffentliche GNU-Lizenz, ebendiese Freiheit garantieren. Sie soll sicherstellen, daß die Software für alle Benutzer frei ist. Diese Lizenz gilt für den Großteil der von der Free Software Foundation herausgegebenen Software und für alle anderen Programme, deren Autoren ihr Datenwerk dieser Lizenz unterstellt haben. Auch Sie können diese Möglichkeit der Lizenzierung für Ihre Programme anwenden. (Ein anderer Teil der Software der Free Software Foundation unterliegt stattdessen der GNU Library General Public License , der Allgemeinen Öffentlichen GNU-Lizenz für Bibliotheken.) [Mittlerweile wurde die GNU Library Public License von der GNU Lesser Public License abgelöst - Anmerkung des Übersetzers.]
Die Bezeichnung ,,freie`` Software bezieht sich auf Freiheit, nicht auf den Preis. Unsere Lizenzen sollen Ihnen die Freiheit garantieren, Kopien freier Software zu verbreiten (und etwas für diesen Service zu berechnen, wenn Sie möchten), die Möglichkeit, die Software im Quelltext zu erhalten oder den Quelltext auf Wunsch zu bekommen. Die Lizenzen sollen garantieren, daß Sie die Software ändern oder Teile davon in neuen freien Programmen verwenden dürfen - und daß Sie wissen, daß Sie dies alles tun dürfen.
Um Ihre Rechte zu schützen, müssen wir Einschränkungen machen, die es jedem verbieten, Ihnen diese Rechte zu verweigern oder Sie aufzufordern, auf diese Rechte zu verzichten. Aus diesen Einschränkungen folgen bestimmte Verantwortlichkeiten für Sie, wenn Sie Kopien der Software verbreiten oder sie verändern.
Beispielsweise müssen Sie den Empfängern alle Rechte gewähren, die Sie selbst haben, wenn Sie - kostenlos oder gegen Bezahlung - Kopien eines solchen Programms verbreiten. Sie müssen sicherstellen, daß auch die Empfänger den Quelltext erhalten bzw. erhalten können. Und Sie müssen ihnen diese Bedingungen zeigen, damit sie ihre Rechte kennen.
Wir schützen Ihre Rechte in zwei Schritten: (1) Wir stellen die Software unter ein Urheberrecht (Copyright), und (2) wir bieten Ihnen diese Lizenz an, die Ihnen das Recht gibt, die Software zu vervielfältigen, zu verbreiten und/oder zu verändern.
Um die Autoren und uns zu schützen, wollen wir darüberhinaus sicherstellen, daß jeder erfährt, daß für diese freie Software keinerlei Garantie besteht. Wenn die Software von jemand anderem modifiziert und weitergegeben wird, möchten wir, daß die Empfänger wissen, daß sie nicht das Original erhalten haben, damit irgendwelche von anderen verursachte Probleme nicht den Ruf des ursprünglichen Autors schädigen.
Schließlich und endlich ist jedes freie Programm permanent durch Software-Patente bedroht. Wir möchten die Gefahr ausschließen, daß Distributoren eines freien Programms individuell Patente lizensieren - mit dem Ergebnis, daß das Programm proprietär würde. Um dies zu verhindern, haben wir klargestellt, daß jedes Patent entweder für freie Benutzung durch jedermann lizenziert werden muß oder überhaupt nicht lizenziert werden darf.
Es folgen die genauen Bedingungen für die Vervielfältigung, Verbreitung und Bearbeitung:
Allgemeine Öffentliche GNU-Lizenz
Bedingungen für die Vervielfältigung,
Verbreitung und Bearbeitung
§0. Diese Lizenz gilt für jedes Programm und jedes andere Datenwerk, in dem ein entsprechender Vermerk des Copyright-Inhabers darauf hinweist, daß das Datenwerk unter den Bestimmungen dieser General Public License verbreitet werden darf. Im folgenden wird jedes derartige Programm oder Datenwerk als ,,das Programm`` bezeichnet; die Formulierung ,,auf dem Programm basierendes Datenwerk`` bezeichnet das Programm sowie jegliche Bearbeitung des Programms im urheberrechtlichen Sinne, also ein Datenwerk, welches das Programm, auch auszugsweise, sei es unverändert oder verändert und/oder in eine andere Sprache übersetzt, enthält. (Im folgenden wird die Übersetzung ohne Einschränkung als ,,Bearbeitung`` eingestuft.) Jeder Lizenznehmer wird im folgenden als ,,Sie`` angesprochen.
Andere Handlungen als Vervielfältigung, Verbreitung und Bearbeitung werden von dieser Lizenz nicht berührt; sie fallen nicht in ihren Anwendungsbereich. Der Vorgang der Ausführung des Programms wird nicht eingeschränkt, und die Ausgaben des Programms unterliegen dieser Lizenz nur, wenn der Inhalt ein auf dem Programm basierendes Datenwerk darstellt (unabhängig davon, daß die Ausgabe durch die Ausführung des Programmes erfolgte). Ob dies zutrifft, hängt von den Funktionen des Programms ab.
§1. Sie dürfen auf beliebigen Medien unveränderte Kopien des Quelltextes des Programms, wie sie ihn erhalten haben, anfertigen und verbreiten. Voraussetzung hierfür ist, daß Sie mit jeder Kopie einen entsprechenden Copyright-Vermerk sowie einen Haftungsausschluß veröffentlichen, alle Vermerke, die sich auf diese Lizenz und das Fehlen einer Garantie beziehen, unverändert lassen und desweiteren allen anderen Empfängern des Programms zusammen mit dem Programm eine Kopie dieser Lizenz zukommen lassen.
Sie dürfen für den eigentlichen Kopiervorgang eine Gebühr verlangen. Wenn Sie es wünschen, dürfen Sie auch gegen Entgeld eine Garantie für das Programm anbieten.
§2. Sie dürfen Ihre Kopie(n) des Programms oder eines Teils davon verändern, wodurch ein auf dem Programm basierendes Datenwerk entsteht; Sie dürfen derartige Bearbeitungen unter den Bestimmungen von Paragraph 1 vervielfältigen und verbreiten, vorausgesetzt, daß zusätzlich alle im folgenden genannten Bedingungen erfüllt werden:
1.
Sie müssen die veränderten Dateien mit einem auffälligen Vermerk versehen, der auf die von Ihnen vorgenommene Modifizierung und das Datum jeder Änderung hinweist.
2.
Sie müssen dafür sorgen, daß jede von Ihnen verbreitete oder veröffentlichte Arbeit, die ganz oder teilweise von dem Programm oder Teilen davon abgeleitet ist, Dritten gegenüber als Ganzes unter den Bedingungen dieser Lizenz ohne Lizenzgebühren zur Verfügung gestellt wird.
3.
Wenn das veränderte Programm normalerweise bei der Ausführung interaktiv Kommandos einliest, müssen Sie dafür sorgen, daß es, wenn es auf dem üblichsten Wege für solche interaktive Nutzung gestartet wird, eine Meldung ausgibt oder ausdruckt, die einen geeigneten Copyright-Vermerk enthält sowie einen Hinweis, daß es keine Gewährleistung gibt (oder anderenfalls, daß Sie Garantie leisten), und daß die Benutzer das Programm unter diesen Bedingungen weiter verbreiten dürfen. Auch muß der Benutzer darauf hingewiesen werden, wie er eine Kopie dieser Lizenz ansehen kann. (Ausnahme: Wenn das Programm selbst interaktiv arbeitet, aber normalerweise keine derartige Meldung ausgibt, muß Ihr auf dem Programm basierendes Datenwerk auch keine solche Meldung ausgeben).
Diese Anforderungen gelten für das bearbeitete Datenwerk als Ganzes. Wenn identifizierbare Teile des Datenwerkes nicht von dem Programm abgeleitet sind und vernünftigerweise als unabhängige und eigenständige Datenwerke für sich selbst zu betrachten sind, dann gelten diese Lizenz und ihre Bedingungen nicht für die betroffenen Teile, wenn Sie diese als eigenständige Datenwerke weitergeben. Wenn Sie jedoch dieselben Abschnitte als Teil eines Ganzen weitergeben, das ein auf dem Programm basierendes Datenwerk darstellt, dann muß die Weitergabe des Ganzen nach den Bedingungen dieser Lizenz erfolgen, deren Bedingungen für weitere Lizenznehmer somit auf das gesamte Ganze ausgedehnt werden - und somit auf jeden einzelnen Teil, unabhängig vom jeweiligen Autor.
Somit ist es nicht die Absicht dieses Abschnittes, Rechte für Datenwerke in Anspruch zu nehmen oder Ihnen die Rechte für Datenwerke streitig zu machen, die komplett von Ihnen geschrieben wurden; vielmehr ist es die Absicht, die Rechte zur Kontrolle der Verbreitung von Datenwerken, die auf dem Programm basieren oder unter seiner auszugsweisen Verwendung zusammengestellt worden sind, auszuüben.
Ferner bringt auch das einfache Zusammenlegen eines anderen Datenwerkes, das nicht auf dem Programm basiert, mit dem Programm oder einem auf dem Programm basierenden Datenwerk auf ein- und demselben Speicher- oder Vertriebsmedium dieses andere Datenwerk nicht in den Anwendungsbereich dieser Lizenz.
§3. Sie dürfen das Programm (oder ein darauf basierendes Datenwerk gemäß Paragraph 2) als Objectcode oder in ausführbarer Form unter den Bedingungen der Paragraphen 1 und 2 kopieren und weitergeben - vorausgesetzt, daß Sie außerdem eine der folgenden Leistungen erbringen:
1.
Liefern Sie das Programm zusammen mit dem vollständigen zugehörigen maschinenlesbaren Quelltext auf einem für den Datenaustausch üblichen Medium aus, wobei die Verteilung unter den Bedingungen der Paragraphen 1 und 2 erfolgen muß. Oder:
2.
Liefern Sie das Programm zusammen mit einem mindestens drei Jahre lang gültigen schriftlichen Angebot aus, jedem Dritten eine vollständige maschinenlesbare Kopie des Quelltextes zur Verfügung zu stellen - zu nicht höheren Kosten als denen, die durch den physikalischen Kopiervorgang anfallen -, wobei der Quelltext unter den Bedingungen der Paragraphen 1 und 2 auf einem für den Datenaustausch üblichen Medium weitergegeben wird. Oder:
3.
Liefern Sie das Programm zusammen mit dem schriftlichen Angebot der Zurverfügungstellung des Quelltextes aus, das Sie selbst erhalten haben. (Diese Alternative ist nur für nicht-kommerzielle Verbreitung zulässig und nur, wenn Sie das Programm als Objectcode oder in ausführbarer Form mit einem entsprechenden Angebot gemäß Absatz b erhalten haben.)
Unter dem Quelltext eines Datenwerkes wird diejenige Form des Datenwerkes verstanden, die für Bearbeitungen vorzugsweise verwendet wird. Für ein ausführbares Programm bedeutet ,,der komplette Quelltext``: Der Quelltext aller im Programm enthaltenen Module einschließlich aller zugehörigen Modulschnittstellen-Definitionsdateien sowie der zur Compilation und Installation verwendeten Skripte. Als besondere Ausnahme jedoch braucht der verteilte Quelltext nichts von dem zu enthalten, was üblicherweise (entweder als Quelltext oder in binärer Form) zusammen mit den Hauptkomponenten des Betriebssystems (Kernel, Compiler usw.) geliefert wird, unter dem das Programm läuft - es sei denn, diese Komponente selbst gehört zum ausführbaren Programm.
Wenn die Verbreitung eines ausführbaren Programms oder von Objectcode dadurch erfolgt, daß der Kopierzugriff auf eine dafür vorgesehene Stelle gewährt wird, so gilt die Gewährung eines gleichwertigen Zugriffs auf den Quelltext als Verbreitung des Quelltextes, auch wenn Dritte nicht dazu gezwungen sind, den Quelltext zusammen mit dem Objectcode zu kopieren.
§4. Sie dürfen das Programm nicht vervielfältigen, verändern, weiter lizenzieren oder verbreiten, sofern es nicht durch diese Lizenz ausdrücklich gestattet ist. Jeder anderweitige Versuch der Vervielfältigung, Modifizierung, Weiterlizenzierung und Verbreitung ist nichtig und beendet automatisch Ihre Rechte unter dieser Lizenz. Jedoch werden die Lizenzen Dritter, die von Ihnen Kopien oder Rechte unter dieser Lizenz erhalten haben, nicht beendet, solange diese die Lizenz voll anerkennen und befolgen.
§5. Sie sind nicht verpflichtet, diese Lizenz anzunehmen, da Sie sie nicht unterzeichnet haben. Jedoch gibt Ihnen nichts anderes die Erlaubnis, das Programm oder von ihm abgeleitete Datenwerke zu verändern oder zu verbreiten. Diese Handlungen sind gesetzlich verboten, wenn Sie diese Lizenz nicht anerkennen. Indem Sie das Programm (oder ein darauf basierendes Datenwerk) verändern oder verbreiten, erklären Sie Ihr Einverständnis mit dieser Lizenz und mit allen ihren Bedingungen bezüglich der Vervielfältigung, Verbreitung und Veränderung des Programms oder eines darauf basierenden Datenwerks.
§6. Jedesmal, wenn Sie das Programm (oder ein auf dem Programm basierendes Datenwerk) weitergeben, erhält der Empfänger automatisch vom ursprünglichen Lizenzgeber die Lizenz, das Programm entsprechend den hier festgelegten Bestimmungen zu vervielfältigen, zu verbreiten und zu verändern. Sie dürfen keine weiteren Einschränkungen der Durchsetzung der hierin zugestandenen Rechte des Empfängers vornehmen. Sie sind nicht dafür verantwortlich, die Einhaltung dieser Lizenz durch Dritte durchzusetzen.
§7. Sollten Ihnen infolge eines Gerichtsurteils, des Vorwurfs einer Patentverletzung oder aus einem anderen Grunde (nicht auf Patentfragen begrenzt) Bedingungen (durch Gerichtsbeschluß, Vergleich oder anderweitig) auferlegt werden, die den Bedingungen dieser Lizenz widersprechen, so befreien Sie diese Umstände nicht von den Bestimmungen dieser Lizenz. Wenn es Ihnen nicht möglich ist, das Programm unter gleichzeitiger Beachtung der Bedingungen in dieser Lizenz und Ihrer anderweitigen Verpflichtungen zu verbreiten, dann dürfen Sie als Folge das Programm überhaupt nicht verbreiten. Wenn zum Beispiel ein Patent nicht die gebührenfreie Weiterverbreitung des Programms durch diejenigen erlaubt, die das Programm direkt oder indirekt von Ihnen erhalten haben, dann besteht der einzige Weg, sowohl das Patentrecht als auch diese Lizenz zu befolgen, darin, ganz auf die Verbreitung des Programms zu verzichten.
Sollte sich ein Teil dieses Paragraphen als ungültig oder unter bestimmten Umständen nicht durchsetzbar erweisen, so soll dieser Paragraph seinem Sinne nach angewandt werden; im übrigen soll dieser Paragraph als Ganzes gelten.
Zweck dieses Paragraphen ist nicht, Sie dazu zu bringen, irgendwelche Patente oder andere Eigentumsansprüche zu verletzen oder die Gültigkeit solcher Ansprüche zu bestreiten; dieser Paragraph hat einzig den Zweck, die Integrität des Verbreitungssystems der freien Software zu schützen, das durch die Praxis öffentlicher Lizenzen verwirklicht wird. Viele Leute haben großzügige Beiträge zu dem großen Angebot der mit diesem System verbreiteten Software im Vertrauen auf die konsistente Anwendung dieses Systems geleistet; es liegt am Autor/Geber, zu entscheiden, ob er die Software mittels irgendeines anderen Systems verbreiten will; ein Lizenznehmer hat auf diese Entscheidung keinen Einfluß.
Dieser Paragraph ist dazu gedacht, deutlich klarzustellen, was als Konsequenz aus dem Rest dieser Lizenz betrachtet wird.
§8. Wenn die Verbreitung und/oder die Benutzung des Programms in bestimmten Staaten entweder durch Patente oder durch urheberrechtlich geschützte Schnittstellen eingeschränkt ist, kann der Urheberrechtsinhaber, der das Programm unter diese Lizenz gestellt hat, eine explizite geographische Begrenzung der Verbreitung angeben, in der diese Staaten ausgeschlossen werden, so daß die Verbreitung nur innerhalb und zwischen den Staaten erlaubt ist, die nicht ausgeschlossen sind. In einem solchen Fall beinhaltet diese Lizenz die Beschränkung, als wäre sie in diesem Text niedergeschrieben.
§9. Die Free Software Foundation kann von Zeit zu Zeit überarbeitete und/oder neue Versionen der General Public License veröffentlichen. Solche neuen Versionen werden vom Grundprinzip her der gegenwärtigen entsprechen, können aber im Detail abweichen, um neuen Problemen und Anforderungen gerecht zu werden.
Jede Version dieser Lizenz hat eine eindeutige Versionsnummer. Wenn in einem Programm angegeben wird, daß es dieser Lizenz in einer bestimmten Versionsnummer oder ,,jeder späteren Version`` (``any later version'') unterliegt, so haben Sie die Wahl, entweder den Bestimmungen der genannten Version zu folgen oder denen jeder beliebigen späteren Version, die von der Free Software Foundation veröffentlicht wurde. Wenn das Programm keine Versionsnummer angibt, können Sie eine beliebige Version wählen, die je von der Free Software Foundation veröffentlicht wurde.
§10. Wenn Sie den Wunsch haben, Teile des Programms in anderen freien Programmen zu verwenden, deren Bedingungen für die Verbreitung anders sind, schreiben Sie an den Autor, um ihn um die Erlaubnis zu bitten. Für Software, die unter dem Copyright der Free Software Foundation steht, schreiben Sie an die Free Software Foundation ; wir machen zu diesem Zweck gelegentlich Ausnahmen. Unsere Entscheidung wird von den beiden Zielen geleitet werden, zum einen den freien Status aller von unserer freien Software abgeleiteten Datenwerke zu erhalten und zum anderen das gemeinschaftliche Nutzen und Wiederverwenden von Software im allgemeinen zu fördern.
Keine Gewährleistung
§11. Da das Programm ohne jegliche Kosten lizenziert wird, besteht keinerlei Gewährleistung für das Programm, soweit dies gesetzlich zulässig ist. Sofern nicht anderweitig schriftlich bestätigt, stellen die Copyright-Inhaber und/oder Dritte das Programm so zur Verfügung, ,,wie es ist``, ohne irgendeine Gewährleistung, weder ausdrücklich noch implizit, einschließlich - aber nicht begrenzt auf - Marktreife oder Verwendbarkeit für einen bestimmten Zweck. Das volle Risiko bezüglich Qualität und Leistungsfähigkeit des Programms liegt bei Ihnen. Sollte sich das Programm als fehlerhaft herausstellen, liegen die Kosten für notwendigen Service, Reparatur oder Korrektur bei Ihnen.
§12. In keinem Fall, außer wenn durch geltendes Recht gefordert oder schriftlich zugesichert, ist irgendein Copyright-Inhaber oder irgendein Dritter, der das Programm wie oben erlaubt modifiziert oder verbreitet hat, Ihnen gegenüber für irgendwelche Schäden haftbar, einschließlich jeglicher allgemeiner oder spezieller Schäden, Schäden durch Seiteneffekte (Nebenwirkungen) oder Folgeschäden, die aus der Benutzung des Programms oder der Unbenutzbarkeit des Programms folgen (einschließlich - aber nicht beschränkt auf - Datenverluste, fehlerhafte Verarbeitung von Daten, Verluste, die von Ihnen oder anderen getragen werden müssen, oder dem Unvermögen des Programms, mit irgendeinem anderen Programm zusammenzuarbeiten), selbst wenn ein Copyright-Inhaber oder Dritter über die Möglichkeit solcher Schäden unterrichtet worden war.
Ende der Bedingungen

88
doc/license_english.txt Normale Datei
Datei anzeigen

@ -0,0 +1,88 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too.
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.
Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and modification follow.
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.
You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License.
c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.
In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.
3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.
If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.
5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.
7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.
This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.
10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS

15
doc/readme.txt Normale Datei
Datei anzeigen

@ -0,0 +1,15 @@
MySqlDump Copyright (C)2004 Daniel Schlichtholz (admin@daniel-schlichtholz.de)
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 675 Mass
Ave, Cambridge, MA 02139, USA.

291
dump.php Normale Datei
Datei anzeigen

@ -0,0 +1,291 @@
<?
echo '<html><head><META HTTP-EQUIV="Pragma" CONTENT="no-cache"><title>MySqlDump</title><link rel="stylesheet" type="text/css" href="styles.css"></head><body bgcolor="#F5F5F5">';
include("inc/functions_dump.php");
@TestWorkDir();
include($config_file);
$zeilen_offset= (isset($_GET['zeilen_offset'])) ? $zeilen_offset=$_GET['zeilen_offset']:0;
if (isset($_GET['backupdatei'])) $backupdatei=$_GET['backupdatei'];
if (isset($_GET['backupdateistructure'])) $backupdateistructure=$_GET['backupdateistructure'];
if (isset($_GET['table_offset'])) $table_offset=$_GET['table_offset'];
else
{
$dateiname=$dbname."_".date("d\.m\.Y\_H",time())."_Uhr_".date("i",time()); // Dateiname aus Datum und Uhrzeit bilden
$structurefilename=$dbname."_structure_file";
$endung= ($compression) ? ".sql.gz" : ".sql";
$backupdatei=$dateiname.$endung;
$backupdateistructure=$structurefilename.$endung;
if (file_exists($backup_path.$backupdatei)) unlink($backup_path.$backupdatei);
if (file_exists($structure_path.$backupdateistructure)) unlink($structure_path.$backupdateistructure);
WriteLog("Start Dump '$dateiname'");
$table_offset=0;
$countdata=0;
// Seitenerstaufruf -> Backupdatei anlegen
$cur_time=date("Y-m-d H:i");
$newfile="# Dump created on $cur_time\r\n";
$newfile.="# Remember that you must use my restorescript in order to get a working DB\r\n";
$newfile.="# because I use a special code to mark the end of a command.\r\n";
$newfile.="# This is NOT compatible with other restorescripts!\r\n";
$newfile.="# Anyway, have fun with this but use it at your own risk. :-) \r\n";
$structurefile=$newfile."# This file is only Structure of the Database without Data \r\n";
if ($compression==1)
{
$fp = gzopen ($backup_path.$backupdatei,"wb");
gzwrite ($fp,$newfile); gzclose ($fp); chmod($backup_path.$backupdatei,0777);
$fp = gzopen ($structure_path.$backupdateistructure,"wb");
gzwrite ($fp,$structurefile); gzclose ($fp); chmod($structure_path.$backupdateistructure,0777);
}
else
{
$fp = fopen ($backup_path.$backupdatei,"wb");
fwrite ($fp,$newfile); fclose ($fp); chmod($backup_path.$backupdatei,0777);
$fp = fopen ($structure_path.$backupdateistructure,"wb");
fwrite ($fp,$structurefile); fclose ($fp); chmod($structure_path.$backupdateistructure,0777);
}
}
$conn = mysql_connect($dbhost,$dbuser,$dbpass) or die(mysql_error());
$tabellen = mysql_list_tables($dbname,$conn);
$num_tables = mysql_num_rows($tabellen);
$tables=ARRAY();
if ($num_tables>0)
{
for ($i=0;$i<$num_tables;$i++)
{
$erg=mysql_fetch_row($tabellen);
if ($dbpraefix>"")
{
if (substr($erg[0],0,strlen($dbpraefix))==$dbpraefix) $tables[]=$erg[0];
}
else $tables[$i]=$erg[0];
}
}
else die ("<br>".$l["error"].":<br>".$l["dump_notables"]);
$num_tables=count($tables);
$newfile="";
$structurefile="";
$restzeilen=$anzahl_zeilen;
WHILE ( ($table_offset < $num_tables) && ($restzeilen>0) )
{
$table = $tables[$table_offset];
$aktuelle_tabelle=$table_offset;
if ($zeilen_offset==0) {
$newfile .= get_def($dbname,$table);
$structurefile.=get_def($dbname,$table);
}
$newfile .= get_content($dbname,$table);
$restzeilen--;
}
/////////////////////////////////
// Anzeige - Fortschritt
/////////////////////////////////
?>
<html>
<title>MySqlDump</title>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
</head>
<body>
<h3><?php echo $l["dump_headline"];?></h3>
<?php
echo $l["dump_filename"].$backupdatei."<br><br>";
echo $l["gzip_compression"]." <b>";
if ($compression==1) echo $l["activated"]; else echo $l["not_activated"];
echo "</b>.<br>";
$sql="SELECT COUNT(*) AS anzahl FROM ".$tables[$table_offset];
$res=mysql_query($sql);
if ($res)
{
$row=mysql_fetch_object($res);
$gesamt=intval($row->anzahl);
if ($gesamt>0)
{
$fortschritt=round(((100*$zeilen_offset)/$gesamt),0);
if ($anzahl_zeilen>=$gesamt) $fortschritt=100;
}
else $fortschritt=100;
echo $l["saving_table"]."<b>".($table_offset+1)."</b> ".
$l["of"]."<b> ".sizeof($tables)."</b><br>";
echo $l["actual_table"].": <b>".($tables[$table_offset])."</b><br><br>";
echo $l["progress_table"].":<br>\n";
echo "<table border=\"0\" width=\"380\">\n<tr>\n";
echo "<td width=\"".($fortschritt*3)."\" bgcolor=\"blue\">&nbsp;</td>\n";
echo "<td width=\"".((100-$fortschritt)*3)."\">&nbsp;</td>\n";
echo "<td width=\"80\" align=\"right\">".($fortschritt)." %</td>\n";
if ($anzahl_zeilen+$zeilen_offset>=$gesamt)
{
$eintrag=$zeilen_offset+1;
$zeilen_gesamt=$gesamt;
if ($zeilen_gesamt==0) $eintrag=0;
}
else
{
$zeilen_gesamt=$zeilen_offset+$anzahl_zeilen;
$eintrag=$zeilen_offset+1;
}
echo "</tr>\n<tr>\n";
echo "<td colspan=\"3\">".$l["entry"]." <b>".number_format($eintrag,0,",",".")."</b> ".$l["upto"]." <b>";
echo number_format(($zeilen_gesamt),0,",",".")."</b> ".$l["of"]." <b>";
echo number_format($gesamt,0,",",".")."</b></td>\n";
echo "</tr>\n\n</table>\n\n";
$tabellen_gesamt=sizeof($tables);
$noch_zu_speichern=$tabellen_gesamt-$table_offset;
$prozent= ($tabellen_gesamt>0) ? round(((100*$noch_zu_speichern)/$tabellen_gesamt),0) : 100;
if ($noch_zu_speichern==0) $prozent=100;
echo "<br>".$l["progress_over_all"].":";
echo "\n\n<table border=\"0\" width=\"550\" cellpadding=\"0\" cellspacing=\"0\">\n<tr>\n";
echo "<td width=\"".(5*(100-$prozent))."\" bgcolor=\"blue\"></td>\n";
echo "<td width=\"".($prozent*5)."\" align=\"center\"></td>\n";
echo "<td width=\"50\">".(100-$prozent)." %</td>\n";
echo "</tr>\n</table>\n";
flush();
}
//////////////////////////////////////
// Ende Anzeige
//////////////////////////////////////
function byte_output($bytes, $precision = 2, $names = '')
{
if (!is_numeric($bytes) || $bytes < 0) {
return false;
}
for ($level = 0; $bytes >= 1024; $level++) {
$bytes /= 1024;
}
switch ($level)
{
case 0:
$suffix = (isset($names[0])) ? $names[0] : 'Bytes';
break;
case 1:
$suffix = (isset($names[1])) ? $names[1] : 'KB';
break;
case 2:
$suffix = (isset($names[2])) ? $names[2] : 'MB';
break;
case 3:
$suffix = (isset($names[3])) ? $names[3] : 'GB';
break;
case 4:
$suffix = (isset($names[4])) ? $names[4] : 'TB';
break;
default:
$suffix = (isset($names[$level])) ? $names[$level] : '';
break;
}
if (empty($suffix)) {
trigger_error('Unable to find suffix for case ' . $level);
return false;
}
return round($bytes, $precision) . ' ' . $suffix;
}
if ($compression==1)
{
$groesse=filesize($backup_path.$backupdatei);
print "<br><h1>Dateigroesse: ".byte_output($groesse")."</h1>";
$fp = gzopen ($backup_path.$backupdatei,"ab");
gzwrite ($fp,$newfile); gzclose ($fp);
$fp = gzopen ($structure_path.$backupdateistructure,"ab");
gzwrite ($fp,$structurefile); gzclose ($fp);
}
else
{
$fp = fopen ($backup_path.$backupdatei,"ab");
fwrite ($fp,$newfile); fclose ($fp);
$fp = fopen ($structure_path.$backupdateistructure,"ab");
fwrite ($fp,$structurefile); fclose ($fp);
}
flush();
if ($table_offset<=$tabellen_gesamt)
{
// Selbstaufruf starten
echo "\n\n<script =\"javascript\">self.location=\"dump.php?"
."table_offset=$table_offset&zeilen_offset=$zeilen_offset&countdata=".$countdata."&backupdatei="
.urlencode($backupdatei)."&backupdateistructure=" .urlencode($backupdateistructure)."\"</script>\n\n";
}
else
{
//Backup fertig
WriteLog("Dump '$backupdatei' finished.");
echo "<br>".$l["done"]."<br><br>".$l["file"]." '<a href=\"".$backup_path.$backupdatei."\"><strong>".$backupdatei."</strong></a>' ".$l["dump_successful"]."<br><br>";
echo $l["dump_endergebnis1"]."<strong>$num_tables</strong>".$l["dump_endergebnis2"]."<strong>".number_format($countdata,0,",",".")."</strong>".$l["dump_endergebnis3"];
echo str_repeat("&nbsp;",60)."<br>";
flush();
if ($send_mail==1)
{
$msg_body = $l["emailbody"];
$file = $backupdatei;
$file_type = filetype("$backup_path$file");
$file_size = filesize("$backup_path$file");
$subject = "Backup '".$dbname."' - ".date("d\.m\.Y",time());
$fp = fopen($backup_path.$file, "r");
$contents = fread($fp, $file_size);
$encoded_file = chunk_split(base64_encode($contents));
fclose($fp);
$header.= "FROM:$email[1] <$email[0]>\n";
$header.= "MIME-version: 1.0\n";
$header.= "Content-type: multipart/mixed; ";
$header.= "boundary=\"Message-Boundary\"\n";
$header.= "Content-transfer-encoding: 7BIT\n";
$header.= "X-attachments: $file_name";
$body_top = "--Message-Boundary\n";
$body_top.= "Content-type: text/plain; charset=US-ASCII\n";
$body_top.= "Content-transfer-encoding: 7BIT\n";
$body_top.= "Content-description: Mail message body\n\n";
$msg_body = $body_top . $msg_body;
$msg_body.= "\n\n--Message-Boundary\n";
$msg_body.= "Content-type: $file_type; name=\"$file\"\n";
$msg_body.= "Content-Transfer-Encoding: BASE64\n";
$msg_body.= "Content-disposition: attachment; filename=\"$file\"\n\n";
$msg_body.= "$encoded_file\n";
$msg_body.= "--Message-Boundary--\n";
if (mail($email[0], stripslashes($subject), $msg_body, $header)) {
echo "<br>".$l["email_was_send"];
WriteLog("Email sent with '$backupdatei'.");
} else {
echo "<br><font color=\"red\">".$l["mailerror"]."</font>";
WriteLog("Email failed with '$backupdatei'.");
}
}
if($ftp_transfer==1) {
SendViaFTP($backupdatei);
WriteLog("file sent via FTP: '$backupdatei'.");
}
echo "<br><br><input class=\"Formbutton\" type=\"button\" value=\"".$l["back_to_control"]."\" onclick=\"self.location.href='filemanagement.php'\"></a>";
}
echo "\n\n</body>\n</html>\n";
?>

269
filemanagement.php Normale Datei
Datei anzeigen

@ -0,0 +1,269 @@
<?php
include("inc/header.php");
if($auto_delete==1)$msg=AutoDelete();
//--------------------------------------------------------
//*** Abfrage ob Dump ***
//--------------------------------------------------------
if (isset($_POST["dump"]))
{
echo '<script language="JavaScript">parent.main.location.href="dump.php";</script>';
}
//--------------------------------------------------------
//*** Abfrage ob Restore ***
//--------------------------------------------------------
if (isset($_POST["restore"]))
{
if (isset($_POST["file"]))
{
echo '<script language="JavaScript">parent.main.location.href="restore.php?filename='.$_POST["file"].'";</script>';
}
else
$msg.= "<p class='fehler'>".$l["fm_nofile"]."</p>\n";
}
//--------------------------------------------------------
//*** Abfrage ob Delete ***
//--------------------------------------------------------
if (isset($_POST["delete"]) )
{
if (isset($_POST["file"]))
{
$file=$_POST["file"];
if (@unlink($backup_path.$file)) {
$msg.= "<p class='meldung'>".$l["fm_delete1"].$file.$l["fm_delete2"]."</p>";
WriteLog("deleted '$file'.");
}else {
$msg.= "<p class='fehler'>".$l["fm_delete1"]. $file .$l["fm_delete3"]."</p>";
}
}
else
$msg.= "<p class='fehler'>".$l["fm_nofile"]."</p>\n";
}
if (isset($_POST["deleteauto"]) )
{
//hier kommt autodelete rein
$msg.=AutoDelete();
}
if (isset($_POST["deleteall"]) )
{
//hier kommt alldelete rein
$del=DeleteFiles($backup_path,"*.sql");
if($del==0){
//$msg.="Fehler beim löschen!";
}else{
for ($i=0; $i<sizeof($del); $i++) {
$msg.="File '".$del[$i]."' gelöscht<br>";
WriteLog("deleted '$del[$i]'.");
}
}
$del=DeleteFiles($backup_path,"*.gz");
if($del==0){
//$msg.="Fehler beim löschen!";
}else{
for ($i=0; $i<sizeof($del); $i++) {
$msg.="File '".$del[$i]."' gelöscht<br>";
WriteLog("deleted '$del[$i]'.");
}
}
}
if (isset($_POST["deleteallfilter"]) )
{
//hier kommt alldelete rein
$del=DeleteFiles($backup_path,"$dbname*");
if($del==0){
//$msg.="Fehler beim löschen!";
}else{
for ($i=0; $i<sizeof($del); $i++) {
$msg.="File '".$del[$i]."' gelöscht<br>";
WriteLog("deleted '$del[$i]'.");
}
}
}
//////////////////////////////////
// Upload
///////////////////////////////////
if (isset($_POST["upload"]))
{
$error=false;
if (!isset($_FILES["upfile"]["name"])) echo "<font color=\"red\">".$l["fm_uploadfilerequest"]."</font><br><br>";
else
{
if (!file_exists($backup_path.$_FILES["upfile"]["name"]))
{
// Extension ermitteln -strrpos fängt hinten an und ermittelt somit den letzten Punkt
$pos=strrpos($_FILES["upfile"]["name"],".");
$endung=strtolower(substr($_FILES["upfile"]["name"],$pos,(strlen($_FILES["upfile"]["name"])-$pos)));
$erlaubt=ARRAY(".gz",".sql");
if (!in_array($endung,$erlaubt))
{
$msg.= "<font color=\"red\">".$l["fm_uploadnotallowed1"];
$msg.= $l["fm_uploadnotallowed2"]."</font>";
}
else
{
if (!$error)
{
if (move_uploaded_file($_FILES["upfile"]["tmp_name"],$backup_path.$_FILES["upfile"]["name"])) chmod($backup_path.$upfile_name,0755);
else $error.="<font color=\"red\">".$l["fm_uploadmoveerror"]."<br>";
}
if ($error) $msg.= $error."<font color=\"red\">".$l["fm_uploadfailed"]."</font><br>";
}
}
else $msg.= "<font color=\"red\">".$l["fm_uploadfileexists"]."</font><br>";
}
}
// -> und ab hier die normale Seite
//
//
?>
<script language="JavaScript">
function GetSelectedFilename()
{
var a="";
if(!document.fm.file.length) {
if(document.fm.file.checked){a=document.fm.file.value;}
} else {
for (i=0; i<document.fm.file.length; i++)
{
if(document.fm.file[i].checked){a=document.fm.file[i].value;}
}
}
return a;
}
function Check(i)
{
if(!document.fm.file.length) document.all.gd.innerHTML=document.fm.file.value;
else document.all.gd.innerHTML=document.fm.file[i].value;
}
</script>
<?
//Seitenteile vordefinieren
$a1= '<form name="fm" id="fm" method="post" action="'.$PHP_SELF.'?action='.$_GET["action"].'">';
$a1.= '<div align="center"><table border="1"><tr>';
$td='<td class="tableheads_off" onmouseover="this.className=\'tableheads_on\'" onmouseout="this.className=\'tableheads_off\'" align="center">';
$ul= "<h4>".$l["fm_upload"]."</h4>";
$ul.= "<table>";
$ul.= "<form action=\"".$PHP_SELF."\" method=\"POST\" enctype=\"multipart/form-data\">\n";
$ul.= "<td align=\"center\" colspan=\"2\"><input type=\"file\" name=\"upfile\"></td>\n";
$ul.= "<td align=\"center\"><input type=\"submit\" name=\"upload\" value=\"".$l["fm_fileupload"]."\">\n";
$ul.= "</td></tr></table>\n";
$ul.= "</form>\n";
$ul.= "</table></div>\n";
//Fallunterscheidung
$action=$_GET["action"];
if($action=="")$action="files";
switch ($action) {
case "dump":
echo "<h3>".$l["dump"]."</h3>".$msg."<br>";
echo $a1.$td.'<input class="Menubutton" name="dump" type="submit" value="'.$l["fm_startdump"].'"> </td>';
echo '</tr></table>';
echo '<hr width="75%">'.$l["fm_dumpsettings"].'<hr width="75%"></div></form>';
echo '<br><h3>Cronjob</h3>'.$l["cron_adress"].'<br>';
echo '<p class="desc">'.$l["cron_desc"].'<hr>';
echo '<form action="http://'.$_SERVER["SERVER_NAME"].$rootdir.'/'.$config_path.'crondump.pl" method="get">';
echo '<div align="center"><table border="1"><tr>'.$td.'<input class="Menubutton" style="width:200px;" type="submit" name="DoCronscript" value="'.$l["DoCronButton"].'"></td></tr></table></div></form>'.$l["cronperldesc"].' <em>\'http://'.$_SERVER["SERVER_NAME"].$rootdir.'/'.$config_path.'crondump.pl\'</em></p>';
break;
case "restore":
echo "<h3>".$l["restore"]."</h3>".$msg."<br>";
echo $a1.$td.'<input class="Menubutton" name="restore" type="submit" value="'.$l["fm_restore"].'" onclick="if (!confirm(\''.$l["fm_alertrestore1"].' `'.$dbname.'` '.$l["fm_alertrestore2"].' `\' + GetSelectedFilename() + \'` '.$l["fm_alertrestore3"].'\')) return false;"></td>';
echo '</tr></table></div>';
echo FileList().'</form>';
break;
case "files":
echo "<h3>".$l["file_manage"]."</h3><br>".$msg."<br>";
echo '<span class="small">'.$l["autodelete"].": ";
echo ($auto_delete==0) ? $l["not_activated"] : $l["activated"]." (".$l["age_of_files"]."=$del_files_after_days ".$l["number_of_files_form"]."=$max_backup_files)</span><br>";
echo $a1;
echo $td.'<input class="Menubutton2" name="delete" type="submit" value="'.$l["fm_delete"].'" onclick="if (!confirm(\''.$l["fm_askdelete1"].'\' + GetSelectedFilename() + \''.$l["fm_askdelete2"].'\')) return false;"></td>';
echo $td.'<input class="Menubutton2" name="deleteauto" type="submit" value="'.$l["fm_deleteauto"].'" onclick="if (!confirm(\''.$l["fm_askdelete3"].'\')) return false;"></td>';
echo $td.'<input class="Menubutton2" name="deleteall" type="submit" value="'.$l["fm_deleteall"].'" onclick="if (!confirm(\''.$l["fm_askdelete4"].'\')) return false;"></td>';
echo $td.'<input class="Menubutton2" name="deleteallfilter" type="submit" value="'.$l["fm_deleteallfilter"].'" onclick="if (!confirm(\''.$l["fm_askdelete5"].'\')) return false;"></td>';
echo '</tr></table></div>';
echo FileList().'</form>'.$ul;
break;
}
echo "<br><br>\n";
include("inc/footer.php");
function FileList()
{
global $backup_path,$l;
//--------------------------------------------------------
//*** Ausgabe der Dateien ***
//--------------------------------------------------------
$dh = opendir($backup_path);
$fl="";
while (false !== ($filename = readdir($dh)))
{
if ($filename != "." && $filename != "..") $files[] = $filename;
}
$fl.='<div align="center"><h4>'.$l["fm_files"].'</h4>'.$l["choose_file"].'
<span id="gd" style="color:#330099; font-weight:bold;"></span><br><br>
<table border="1" rules="rows" align="center" width="80%" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" class="hd">'.$l["fm_filename"].'</td>
<td align="right" colspan="2" class="hd">'.$l["fm_filesize"].'</td>
</tr>';
@rsort($files);
for ($i=0; $i<sizeof($files); $i++)
{
// Dateigröße
$size = filesize("$backup_path/$files[$i]");
// Gesamtgröße aller Backupfiles
$gesamt = $gesamt + $size;
// Hier werden die Dateinamen ausgegeben
$fl.='<tr>
<td align="left" colspan="2">
<input name="file" type="radio" value="'.$files[$i].'" onClick="Check('.$i.');">
&nbsp;<a href="'.$backup_path.$files[$i].'">'.$files[$i].'</a></td>
<td align="right" colspan="2">'.round($size/1024).' kByte</td>
</tr>';
}
if (!is_array($files)) $fl.='<tr><td colspan="4" bgcolor="#CCCCCC">'.$l["fm_nofilesfound"].'</td></tr>'."\n";
//--------------------------------------------------------
//*** Ausgabe der Gesamtgröße aller Backupfiles ***
//--------------------------------------------------------
$space = diskfreespace("../");
$fl.= "<tr>\n";
$fl.= "<td align='left' colspan='2'><b>".$l["fm_sizesum"].": </b></td>\n";
$fl.= "<td align=\"right\" colspan=\"2\"><b>".round($gesamt/1024)." kByte</b></td>\n";
$fl.= "</tr>\n";
//--------------------------------------------------------
//*** Ausgabe des freien Speicher auf dem Rechner ***
//--------------------------------------------------------
$fl.= '<tr class="hellblau">';
$fl.= '<td colspan="3">'.$l["fm_freespace"].': </td>';
$fl.= "<td align=\"right\"><b>".round(($space/(1024*1024*1024)),2)."</b> GByte</td>\n";
$fl.= "</tr>\n";
$fl.= "</table>\n";
return $fl;
}
?>

BIN
images/help16.gif Normale Datei

Binäre Datei nicht angezeigt.

Nachher

Breite:  |  Höhe:  |  Größe: 147 B

BIN
images/help32.gif Normale Datei

Binäre Datei nicht angezeigt.

Nachher

Breite:  |  Höhe:  |  Größe: 252 B

BIN
images/mysqldump_logo.png Normale Datei

Binäre Datei nicht angezeigt.

Nachher

Breite:  |  Höhe:  |  Größe: 17 KiB

48
inc/config.php Normale Datei
Datei anzeigen

@ -0,0 +1,48 @@
<?php
//////////////////////////////////////////////////////////
// erforderliche Variablen - bitte anpassen
// please enter your database-login
//////////////////////////////////////////////////////////
$dbhost = 'localhost'; // HOST
$dbuser = 'root'; // USER
$dbpass = ''; // PASSWORD
/////////////////////////////////////////////////////////////////////////////////
// das wars schon - der Rest kann auch innerhalb des Programms ge<67>ndert werden!
// that's it - you can change the other values from within the program!
/////////////////////////////////////////////////////////////////////////////////
$lang="de"; // de,en
$path="backup/";
$compression=1;
$send_mail=0;
$email[0]="admin@daniel-schlichtholz.de";
$email[1]="mein_board@weltweit.de";
$ftp_transfer=0;
$ftp_server=""; // Adresse des FTP-Servers. z.B. ftp.server.de
$ftp_port="21"; // Port des FTP-Servers. z.B. 21
$ftp_user=""; // Username
$ftp_pass=""; // Passwort
$ftp_dir=""; // der Pfad, wohin gesendet werden soll (der user muss in diesem Verzeichnis Upload-Rechte haben)
$auto_delete=0;
$del_files_after_days=0;
$max_backup_files=3;
$tabellen_praefix=""; // zum Beispiel /for example "phpBB_"
$anzahl_zeilen=2000;
$anzahl_zeilen_restore=1000;
$cron_timelimit=360;
$cron_samedb=0;
$cron_dbindex=0;
// Der "Ende des SQL-Befehls"-Code kann ge<67>ndert werden falls in der Datenbank
// zuf<75>llig der angegebene Code vorhanden sein sollte und Du Fehlermeldungen
// beim Restore bekommst.
// Es muss aber ein eindeutiger String sein, der NICHT in den Daten der DB vorkommt.
////////////////////////////////////////////////////////////////////////////////
// I use this code to mark the end of a sql-line.
// If you have problems because you find this string in your database as data you may change it.
// But only think of this if you know what you are doing. :-)
$next_sqlcommand="[n.!!e_w._!]";
?>

8
inc/footer.php Normale Datei
Datei anzeigen

@ -0,0 +1,8 @@
<br><p align="center" class="small">
Idee:
<a class="small" href="http://www.daniel-schlichtholz.de" target="_new">
Daniel Schlichtholz</a> - Infoboard:
<a class="small" href="http://www.daniel-schlichtholz.de/board" target="_new">
www.daniel-schlichtholz.de/board</a></p>
</BODY>
</HTML>

399
inc/functions.php Normale Datei
Datei anzeigen

@ -0,0 +1,399 @@
<?php
$version="0.9.3c";
$nl="\n";
define ("_DEVELOP_",true);
//Die Arbeitsverzeichnisse
$rootdir=substr($PHP_SELF,0,strrpos($PHP_SELF,"/"));
$work="work/";
$backup_path=$work."backup/";
$structure_path=$work."structure/";
$log_path=$work."log/";
$log_file=$log_path."mysqldump.log";
$config_path=$work."config/";
$config_file=$config_path."parameter.php";
function TestWorkDir()
{
global $rootdir,$work,$backup_path,$structure_path,$log_path,$log_file,$config_path,$config_file;
if (!is_dir($work)) {
// Arbeitsverzeichnis existiert noch nicht? Na gut, dann machen wir eben eins. :-)
mkdir($work, 0777);
mkdir($backup_path, 0777);
mkdir($structure_path, 0777);
mkdir($log_path, 0777);
mkdir($config_path, 0777);
} else {
if (!is_dir($backup_path)) mkdir($backup_path, 0777); else {if(decoct(fileperms($backup_path))<>0777)chmod($backup_path, 0777);}
if (!is_dir($structure_path)) mkdir($structure_path, 0777); else {if(decoct(fileperms($structure_path)<>0777))chmod($structure_path, 0777);}
if (!is_dir($log_path)) mkdir($log_path, 0777); else {if(decoct(fileperms($log_path)<>0777))chmod($log_path, 0777);}
if (!is_dir($config_path)) mkdir($config_path, 0777); else {if(decoct(fileperms($config_path)<>0777))chmod($config_path, 0777);}
}
if(!file_exists($config_file))SetDefault();
if(!file_exists($log_file)){DeleteLog();}
}
function Help($ToolTip,$Anker)
{
global $lang;
return '<a href="language/help_'.$lang.'.html#'.$Anker.'"><img src="images/help16.gif" width="16" height="16" alt="'.$ToolTip.'" hspace="4" vspace="0"></a>';
}
function DeleteFiles($dir, $pattern = "*.*")
{
$deleted = false;
$pattern = str_replace(array("\*","\?"), array(".*","."), preg_quote($pattern));
if (substr($dir,-1) != "/") $dir.= "/";
if (is_dir($dir))
{ $d = opendir($dir);
while ($file = readdir($d))
{ if (is_file($dir.$file) && ereg("^".$pattern."$", $file))
{ if (unlink($dir.$file)) $deleted[] = $file;
}
}
closedir($d);
return $deleted;
}
else return 0;
}
function SelectDB($index)
{
global $dbname,$dbpraefix, $dbname_a, $dbpraefix_a,$db_selected_index;
$dbname = $dbname_a[$index];
$dbpraefix = $dbpraefix_a[$index];
$db_selected_index=$index;
}
function SetDefault($dbonly=false)
{
global $dbhost,$dbname,$dbuser,$dbpass, $dbpraefix, $compression,$send_mail,$email,$nl,
$anzahl_zeilen,$anzahl_zeilen_restore,$tabellen_praefix,$next_sqlcommand,
$dbhost_a, $dbname_a, $dbuser_a, $dbpass_a, $dbpraefix_a, $db_selected_index, $lang,
$auto_delete, $del_files_after_days, $max_backup_files,
$cron_timelimit,$cron_samedb,$cron_dbindex, $l,
$rootdir,$work,$backup_path,$structure_path,$log_path,$config_path,$config_file;
if($dbonly==false){
@unlink($config_file);
include("inc/config.php");
}
//Arrays löschen
$i=0;
$dbname_a=Array();
//DB-Liste holen
$conn = mysql_connect($dbhost,$dbuser,$dbpass) or die(mysql_error().$l["wrong_userpass"]);
$db_list = mysql_list_dbs($conn);
while ($row = mysql_fetch_object($db_list))
{
$found_db=$row->Database;
$cnt=mysql_list_tables($found_db,$conn);
if($cnt!=NULL){
$dbname_a[$i++]=$found_db;
$out.=$l["saving_db_form"]." ".$found_db." ($cnt) ".$l["added"]."$nl";
}
}
$dbname=$dbname_a[0];
//SelectDB(0);
WriteParams();
if($dbonly==false) WriteLog("default settings loaded.");
return $out;
}
function WriteParams()
{
global $dbhost,$dbname,$dbuser,$dbpass, $dbpraefix, $dbcronpraefix, $compression,$send_mail,$email,$nl,
$anzahl_zeilen,$anzahl_zeilen_restore,$next_sqlcommand,
$dbhost_a, $dbname_a, $dbuser_a, $dbpass_a, $dbpraefix_a, $db_selected_index, $lang,
$auto_delete, $del_files_after_days, $max_backup_files,
$cron_timelimit,$cron_samedb,$cron_dbindex,
$ftp_transfer, $ftp_server, $ftp_port, $ftp_user, $ftp_pass, $ftp_dir,
$rootdir,$work,$backup_path,$structure_path,$log_path,$config_path,$config_file;
//Parameter überprüfen und gegebenfalls auf Standardwerte setzen
if(!isset($anzahl_zeilen))$anzahl_zeilen=2000;
if(!isset($anzahl_zeilen_restore))$anzahl_zeilen_restore=1000;
if(!isset($del_files_after_days))$del_files_after_days=0;
if(!isset($max_backup_files))$max_backup_files=0;
if(!isset($cron_timelimit))$cron_timelimit=360;
if(!isset($ftp_port))$ftp_port=21;
//Parameter zusammensetzen
$param='<?php '.$nl;
if (!isset($db_selected_index)) $db_selected_index=0;
$param.='$db_selected_index='.$db_selected_index.';'.$nl;
$param.='$dbhost="'.$dbhost.'";'.$nl;
$param.='$dbname="'.$dbname.'";'.$nl;
$param.='$dbuser="'.$dbuser.'";'.$nl;
$param.='$dbpass="'.$dbpass.'";'.$nl;
for($i=0;$i<count($dbname_a);$i++)
{
$param.='$dbname_a['.$i.']="'.$dbname_a[$i].'";'.$nl;
$param.='$dbpraefix_a['.$i.']="'.$dbpraefix_a[$i].'";'.$nl;
}
//$param.='$path="'.$path.'";'.$nl;
$param.='$compression='.$compression.';'.$nl;
if (!isset($send_mail)) $send_mail=0;
$param.='$send_mail='.$send_mail.';'.$nl;
$param.='$email[0]="'.$email[0].'";'.$nl;
$param.='$email[1]="'.$email[1].'";'.$nl;
$param.='$auto_delete='.$auto_delete.';'.$nl;
$param.='$del_files_after_days='.$del_files_after_days.';'.$nl;
$param.='$max_backup_files='.$max_backup_files.';'.$nl;
$param.=(strlen($next_sqlcommand)==1) ? '$next_sqlcommand=CHR('.ord($next_sqlcommand).');'.$nl :'$next_sqlcommand="'.$next_sqlcommand.'";'.$nl;
$param.='$anzahl_zeilen='.$anzahl_zeilen.';'.$nl;
$param.='$anzahl_zeilen_restore='.$anzahl_zeilen_restore.';'.$nl;
$param.='$lang="'.$lang.'";'.$nl;
$param.='$dbpraefix="'.$dbpraefix.'";'.$nl;
$param.='$dbcronpraefix="'.$dbcronpraefix.'";'.$nl;
$param.='$cron_timelimit='.$cron_timelimit.';'.$nl;
$param.='$cron_samedb='.$cron_samedb.';'.$nl;
$param.='$cron_dbindex='.$cron_dbindex.';'.$nl;
$param.='$ftp_transfer="'.$ftp_transfer.'";'.$nl;
$param.='$ftp_server="'.$ftp_server.'";'.$nl;
$param.='$ftp_port="'.$ftp_port.'";'.$nl;
$param.='$ftp_user="'.$ftp_user.'";'.$nl;
$param.='$ftp_pass="'.$ftp_pass.'";'.$nl;
$param.='$ftp_dir="'.$ftp_dir.'";'.$nl;
$param.='// Sprachfile laden'.$nl.'include("language/lang_'.$lang.'.php")'.$nl;;
$param.='?>';
//Datei öffnen und schreiben
$ret=true;
if ($fp=fopen($config_file, "wb"))
{
if (!fwrite($fp,$param)) $ret=false;
if (!fclose($fp)) $ret=false;
}
else $ret=false;
$ret=WriteCronScript();
return $ret;
}
function AutoDelete()
{
global $del_files, $max_backup_files, $del_files_after_days, $l,
$rootdir,$work,$backup_path,$structure_path,$log_path,$config_path,$config_file;
$dh = opendir($backup_path);
while (false !== ($filename = readdir($dh)))
{
if ($filename != "." && $filename != "..") {
$z=substr($filename,strpos($filename,".")-2);
$z=substr($z,6,4).substr($z,3,2).substr($z,0,2).substr($z,11,2).substr($z,18,2);
$files[] = $z."|".$filename;
}
}
@rsort($files);
// Mehr Dateien vorhanden, als es laut config.php sein dürften? Dann weg damit :-)
if($max_backup_files > 0)
{
if (sizeof($files) > $max_backup_files)
{
$out.="<font color=\"red\">".$l["fm_autodel1"]."<br>";
for($n=sizeof($files)-1; $n>=$max_backup_files; $n--)
{
$delfile=substr($files[$n],13);
$out.= $backup_path.$delfile."<br>";
WriteLog("autodeleted (max)'$delfile'.");
unlink($backup_path.$delfile);
}
$out.= "</font>";
}
}
if($del_files_after_days>0) {
//neu einlesen
$dh = opendir($backup_path);
$nowtime=strtotime("-".($del_files_after_days+1)." day");
$zout="<font color=\"red\">".$l["fm_autodel2"]."<br>";
$dfad=false;
while (false !== ($filename = readdir($dh)))
{
if ($filename != "." && $filename != "..") {
$z=substr($filename,strpos($filename,".")-2);
$z=substr($z,6,4)."-".substr($z,3,2)."-".substr($z,0,2);
if(strtotime($z)<$nowtime){
$out.= $backup_path.$filename."<br>";
WriteLog("autodeleted (days)'$delfile'.");
unlink($backup_path.$filename);
$dfad=true;
}
}
}
$zout.= "</font>";
if($dfad) $out.=$outz;
}
return $out;
}
function WriteLog($aktion)
{
global $log_file;
//Zeile zusammensetzen
$log=date("d.m.Y h:i:s").': '.$aktion."\n";
//Datei öffnen und schreiben
$fp = fopen($log_file, "a+");
fwrite ($fp,($log));
fclose ($fp);
}
function DeleteLog()
{
global $log_file;
//Datei öffnen und schreiben
$log=date("d.m.Y h:i:s").": Log created.\n";
$fp = fopen($log_file, "wb");
fwrite ($fp,$log);
fclose ($fp);
}
function WriteCronScript()
{
global $nl, $config_path,$dbname,$dbname_a,$dbcronpraefix,$cron_samedb,
$dbuser,$dbpass,$compression,$backup_path,$log_file,$rootdir,$cron_dbindex;
if($cron_samedb==0) {
$cron_dbname=$dbname;
$cron_dbpraefix = $dbpraefix;
}else {
$cron_dbname=$dbname_a[$cron_dbindex];
$cron_dbpraefix = $dbcronpraefix;
}
$p1=$_SERVER["DOCUMENT_ROOT"].'/'.substr($rootdir,1).'/'.$backup_path;
$p2=$_SERVER["DOCUMENT_ROOT"].'/'.substr($rootdir,1).'/'.$log_file;
if(substr($p1,1,1)==":"){
$p1=str_replace("/","\\\\",$p1);
$p2=str_replace("/","\\\\",$p2);
}
$cronscript='#!/usr/bin/perl -w';
$cronscript.='##################################################'.$nl;
$cronscript.='# MySQLDump CronDump'.$nl;
$cronscript.='# 2004, Steffen Kamper'.$nl;
$cronscript.='##################################################'.$nl;
$cronscript.='use DBI;'.$nl;
$cronscript.='use Compress::Zlib ;'.$nl;
$cronscript.='# Parameter'.$nl.$nl;
$cronscript.='my $dbname="'.$cron_dbname.'";'.$nl;
$cronscript.='my $dbpraefix="'.$dbcronpraefix.'";'.$nl;
$cronscript.='my $dbuser="'.$dbuser.'";'.$nl;
$cronscript.='my $dbpass="'.$dbpass.'";'.$nl;
$cronscript.='my $compression='.$compression.';'.$nl;
$cronscript.='my $backup_path="'.$p1.'";'.$nl;
$cronscript.='my $logdatei="'.$p2.'";'.$nl.$nl;
$cronscript.='($Sekunden, $Minuten, $Stunden, $Monatstag, $Monat, $Jahr, $Wochentag, $Jahrestag, $Sommerzeit) = localtime(time);'.$nl;
$cronscript.='$Jahr+=1900;'.$nl;
$cronscript.='my $CTIME_String = localtime(time);'.$nl;
$cronscript.='$time_stamp=sprintf("%02d",$Monatstag).".".sprintf("%02d",$Monat).".".$Jahr."_".sprintf("%02d",$Stunden)."_Uhr_".sprintf("%02d",$Minuten);'.$nl;
$cronscript.='$sql_file=$backup_path.$dbname."_".$time_stamp."_crondump_perl.sql";'.$nl;
$cronscript.='$sql_file_z=$backup_path.$dbname."_".$time_stamp."_crondump_perl.sql.gz";'.$nl;
$cronscript.='$dt=sprintf("%02d",$Monatstag).".".sprintf("%02d",$Monat).".".$Jahr." ". sprintf("%02d",$Stunden).":".sprintf("%02d",$Minuten).":".sprintf("%02d",$Sekunden).": ";'.$nl;
$cronscript.='if($compression==0){$dt.="Start Perl Cron-Dump \'$sql_file\'\n";}else{$dt.="Start Perl Cron-Dump \'$sql_file_z\' \n";}'.$nl;
$cronscript.='open(DATEI,">>$logdatei");'.$nl;
$cronscript.='print DATEI $dt;'.$nl;
$cronscript.='close(DATEI);'.$nl;
$cronscript.='open(DATEI,">$sql_file");'.$nl;
$cronscript.='print DATEI "";'.$nl;
$cronscript.='close(DATEI);'.$nl;
$cronscript.='# Verbindung mit mSQL herstellen, $dbh ist das Database Handle'.$nl;
$cronscript.='my $dbh = DBI->connect("DBI:mysql:".$dbname,$dbuser,$dbpass)|| die "Database connection not made: $DBI::errstr";'.$nl;
$cronscript.='my $nl="\n";'.$nl;
$cronscript.='my $next_sqlcommand="[n.!!e_w._!]";'.$nl;
$cronscript.='my $sql_text="# Dump created on $CTIME_String by PERL Cron-Script\n";'.$nl;
$cronscript.='$sql_text.="# Remember that you must use my restorescript in order to get a working DB\n";'.$nl;
$cronscript.='$sql_text.="# because I use a special code to mark the end of a command.\n";'.$nl;
$cronscript.='$sql_text.="# This is NOT compatible with other restorescripts!\n";'.$nl;
$cronscript.='$sql_text.="# Anyway, have fun with this but use it at your own risk. :-)\n";'.$nl;
$cronscript.='@tables=$dbh->tables;'.$nl;
$cronscript.='foreach $tabelle (@tables) {'.$nl;
$cronscript.='# definition auslesen'.$nl;
$cronscript.='if($dbpraefix eq "" or ($dbpraefix ne "" && substr($tabelle,0,length($dbpraefix)) eq $dbpraefix)) {'.$nl;
$cronscript.='$a="DROP TABLE IF EXISTS `".$tabelle."`;".$next_sqlcommand."\n";'.$nl;
$cronscript.='$sql_text.=$a;'.$nl;
$cronscript.='$sql_create="Show create table `".$tabelle."`";'.$nl;
$cronscript.='$sth = $dbh->prepare($sql_create);'.$nl;
$cronscript.='$sth->execute;'.$nl;
$cronscript.='@ergebnis=$sth->fetchrow;'.$nl;
$cronscript.='$sth->finish;'.$nl;
$cronscript.='$a=$ergebnis[1].";".$next_sqlcommand."\n";'.$nl;
$cronscript.='$sql_text.=$a;'.$nl;
$cronscript.='# daten auslesen'.$nl;
$cronscript.='$insert = "INSERT INTO `$tabelle` VALUES (";'.$nl;
$cronscript.='$sql_daten="SELECT * FROM `".$tabelle."`";'.$nl;
$cronscript.='$sth = $dbh->prepare($sql_daten);'.$nl;
$cronscript.='$sth->execute;'.$nl;
$cronscript.='while ( @ar=$sth->fetchrow)'.$nl;
$cronscript.='{'.$nl;
$cronscript.='$a=$insert;'.$nl;
$cronscript.='foreach $inhalt(@ar)'.$nl;
$cronscript.='{$a.= $dbh->quote($inhalt).", ";}'.$nl;
$cronscript.='$a=substr($a,0, length($a)-2).");";'.$nl;
$cronscript.='$sql_text.= $a.$next_sqlcommand."\n";'.$nl;
$cronscript.='}#jetzt wegschreiben'.$nl;
$cronscript.='if($compression==0){'.$nl;
$cronscript.=' open(DATEI,">>$sql_file");'.$nl;
$cronscript.=' print DATEI $sql_text;'.$nl;
$cronscript.=' close(DATEI);'.$nl;
$cronscript.='} else {'.$nl;
$cronscript.='$gz = gzopen($sql_file_z, "wb") or die "Cannot open : $gzerrno\n" ;'.$nl;
$cronscript.='$gz->gzwrite($sql_text) or die "error writing: $gzerrno\n" ;'.$nl;
$cronscript.='$gz->gzclose ;'.$nl;
$cronscript.=' } $sql_text="";'.$nl;
$cronscript.='}}# Ende'.$nl;
$cronscript.='($Sekunden, $Minuten, $Stunden, $Monatstag, $Monat, $Jahr, $Wochentag, $Jahrestag, $Sommerzeit) = localtime(time);'.$nl;
$cronscript.='$Jahr+=1900;'.$nl;
$cronscript.='$dt=sprintf("%02d",$Monatstag).".".sprintf("%02d",$Monat).".".sprintf("%02d",$Jahr)." ".sprintf("%02d",$Stunden).":".sprintf("%02d",$Minuten).":".sprintf("%02d",$Sekunden).": Perl Cron-Dump \'$sql_file\' finished.\n";'.$nl;
$cronscript.='open(DATEI,">>$logdatei");'.$nl;
$cronscript.='print DATEI $dt;'.$nl;
$cronscript.='close(DATEI);'.$nl;
$cronscript.='$dbh->disconnect();'.$nl;
//Datei öffnen und schreiben
$ret=true;
if ($fp=fopen($config_path."crondump.pl", "wb"))
{
if (!fwrite($fp,$cronscript)) $ret=false;
if (!fclose($fp)) $ret=false;
}
else $ret=false;
chmod($config_path."crondump.pl",0777);
return $ret;
}
?>

165
inc/functions_dump.php Normale Datei
Datei anzeigen

@ -0,0 +1,165 @@
<?php
$nl="\n"; // Newline-Code
//Die Arbeitsverzeichnisse
$rootdir=substr($PHP_SELF,0,strrpos($PHP_SELF,"/"));
$work="work/";
$backup_path=$work."backup/";
$structure_path=$work."structure/";
$log_path=$work."log/";
$log_file=$log_path."mysqldump.log";
$config_path=$work."config/";
$config_file=$config_path."parameter.php";
function TestWorkDir()
{
global $rootdir,$work,$backup_path,$structure_path,$log_path,$log_file,$config_path,$config_file;
if (!is_dir($work)) {
// Arbeitsverzeichnis existiert noch nicht? Na gut, dann machen wir eben eins. :-)
mkdir($work, 0777);
mkdir($backup_path, 0777);
mkdir($structure_path, 0777);
mkdir($log_path, 0777);
mkdir($config_path, 0777);
} else {
if (!is_dir($backup_path)) mkdir($backup_path, 0777); else {if(decoct(fileperms($backup_path))<>0777)chmod($backup_path, 0777);}
if (!is_dir($structure_path)) mkdir($structure_path, 0777); else {if(decoct(fileperms($structure_path)<>0777))chmod($structure_path, 0777);}
if (!is_dir($log_path)) mkdir($log_path, 0777); else {if(decoct(fileperms($log_path)<>0777))chmod($log_path, 0777);}
if (!is_dir($config_path)) mkdir($config_path, 0777); else {if(decoct(fileperms($config_path)<>0777))chmod($config_path, 0777);}
}
if(!file_exists($config_file))SetDefault();
if(!file_exists($log_file)){DeleteLog();}
}
// Liest die Eigenschaften der Tabelle aus der DB und baut die CREATE-Anweisung zusammen
function get_def($dbname, $table)
{
global $conn,$nl,$next_sqlcommand;
$def = "DROP TABLE IF EXISTS `$table`;".$next_sqlcommand.$nl;
$result = mysql_db_query($dbname, "SHOW CREATE TABLE `$table`",$conn);
$row=mysql_fetch_row($result);
$def .=$row[1].";".$next_sqlcommand.$nl;
return $def;
}
// Liest die Daten aus der DB aus und baut die INSERT-Anweisung zusammen
function get_content($dbname, $table)
{
global $restzeilen,$conn,$anzahl_zeilen,$table_offset,$zeilen_offset,$nl,$next_sqlcommand, $countdata;
$content="";
$query="SELECT * FROM $table LIMIT $zeilen_offset,".($restzeilen+1);
$result = mysql_db_query($dbname,$query,$conn);
$ergebnisse=mysql_num_rows($result);
$countdata+=$ergebnisse;
if ($ergebnisse>$restzeilen)
{
$zeilen_offset=$zeilen_offset+$restzeilen;
$ergebnisse--;
$countdata--;
$restzeilen=0;
}
else
{
$table_offset++;
$zeilen_offset=0;
$restzeilen=$restzeilen-$ergebnisse;
}
for ($x=0;$x<$ergebnisse;$x++)
{
$row=mysql_fetch_row($result);
{
$insert = "INSERT INTO $table VALUES (";
for($j=0; $j<mysql_num_fields($result);$j++)
{
if(!isset($row[$j])) $insert .= "NULL,";
else if($row[$j] != "") $insert .= "'".addslashes($row[$j])."',";
else $insert .= "'',";
}
$insert = ereg_replace(",$","",$insert);
$insert .= ");";
$content .= $insert.$next_sqlcommand.$nl;
}
}
return $content;
}
function SendViaFTP($source_file)
{
global $ftp_server, $ftp_port, $ftp_user,$ftp_pass,$ftp_dir,$backup_path;
flush();
echo "<br><br>versende File via FTP...bitte hab etwas Geduld. ($ftp_server - $ftp_user)<br>";
// Herstellen der Basis-Verbindung
$conn_id = ftp_connect($ftp_server, $ftp_port) or die ("<font color=\"#FF0000\">Ftp-Verbindung zum Server $ftp_server nicht möglich!<br></font>");
// Einloggen mit Benutzername und Kennwort
$login_result = ftp_login($conn_id, $ftp_user, $ftp_pass);
// Verbindung überprüfen
if ((!$conn_id) || (!$login_result)) {
echo "<font color=\"#FF0000\">Ftp-Verbindung nicht hergestellt!";
echo "Verbindung mit $ftp_server als Benutzer $ftp_user nicht möglich</font><br>";
die;
} else {
echo "Verbunden mit $ftp_server als Benutzer $ftp_user<br>";
}
// Upload der Datei
$dest=$ftp_dir.$source_file;
$source=$backup_path.$source_file;
$upload = ftp_put($conn_id, $dest,$source , FTP_BINARY);
// Upload-Status überprüfen
if (!$upload) {
echo "<font color=\"#FF0000\">Ftp upload war fehlerhaft! <br>($source -> $dest)</font><br>";
} else {
echo "Datei $source_file auf $ftp_server als $ftp_dir.$source_file geschrieben<br>";
WriteLog("'$backupdatei' sent via FTP.");
}
// Schließen des FTP-Streams
ftp_quit($conn_id);
}
/////////////////////////////
// Kommt aus functions.php
/////////////////////////////
function SelectDB($index)
{
global $dbhost,$dbname,$dbuser,$dbpass, $dbpraefix,
$dbhost_a, $dbname_a, $dbuser_a, $dbpass_a, $dbpraefix_a;
$dbhost = $dbhost_a[$index];
$dbname = $dbname_a[$index];
$dbuser = $dbuser_a[$index];
$dbpass = $dbpass_a[$index];
$dbpraefix = $dbpraefix_a[$index];
}
function WriteLog($aktion)
{
global $log_file;
//Zeile zusammensetzen
$log=date("d.m.Y h:i:s").': '.$aktion."\n";
//Datei öffnen und schreiben
$fp = fopen($log_file, "a+");
fwrite ($fp,($log));
fclose ($fp);
}
function DeleteLog()
{
global $log_file;
//Datei öffnen und schreiben
$log=date("d.m.Y h:i:s").": Log created.\n";
$fp = fopen($log_file, "wb");
fwrite ($fp,$log);
fclose ($fp);
}
?>

93
inc/functions_restore.php Normale Datei
Datei anzeigen

@ -0,0 +1,93 @@
<?php
$nl="\n"; // Newline-Code
//Die Arbeitsverzeichnisse
$rootdir=substr($PHP_SELF,0,strrpos($PHP_SELF,"/"));
$work="work/";
$backup_path=$work."backup/";
$structure_path=$work."structure/";
$log_path=$work."log/";
$log_file=$log_path."mysqldump.log";
$config_path=$work."config/";
$config_file=$config_path."parameter.php";
////////////////////////////////////
// funktion kommt aus functions.php
// muss hier aber vorhanden sein
////////////////////////////////////
function WriteLog($aktion)
{
global $log_file;
//Zeile zusammensetzen
$log=date("d.m.Y h:i:s").': '.$aktion."\n";
//Datei öffnen und schreiben
$fp = fopen($log_file, "a+");
fwrite ($fp,($log));
fclose ($fp);
}
// Prüft ob es sich um eine Kommentarzeile handelt
function is_sqlvalue($t)
{
// Uebergeht Kommentarzeilen im Dump
if ( (strlen($t)>0) && (substr($t,0,1)!="#") ) return $t;
else return "";
}
// extrahiert auf einfache Art den Tabellennamen aus dem "Create"-Befehl
function get_tablename($t)
{
global $table_ready;
$t=trim(str_replace("CREATE TABLE","",$t));
$w=explode(" ",$t);
$table_ready++;
return $w[0];
}
// Liest zeilenweise aus dem Dump und setzt den MySQl-Befehl
// bis zum Vorkommen des Codes [chr(1)] zusammen
function get_sqlbefehl()
{
global $f,$gz,$end,$actual_table,$next_sqlcommand;
$ret=false;
$befehl="";
$befehl_gefunden=false;
WHILE ( ($befehl_gefunden==false) && (!($end)) )
{
$zeile= ($gz) ? gzgets($f,40960) : fgets($f,40960);
if ($zeile)
{
// Prima, wir haben Text in unserer Zeile.
// Dann wollen wir den Befehl mal zusammensetzen. :-)
// Zuerst mal schauen, ob es sich nicht um eine Kommentarzeile handelt
// Aber nur am Anfang eines Befehls - sonst besteht die Gefahr, dass
// Zeilen in Datensaetzen geloescht werden.
if ($befehl=="") $zeile=is_sqlvalue($zeile);
// Dann schauen wir mal nach dem Ende-Code...
$pos=strpos($zeile,$next_sqlcommand);
if (!$pos===false)
{
// Ende des Befehls gefunden - Rueckgabe ohne Semikolon und Ende-Code
$befehl.=substr($zeile,0,($pos-1));
$befehl_gefunden=true;
$ret=$befehl;
}
// Befehl ist noch nicht fertig: Zeile zum Befehl hinzufuegen
else $befehl.=$zeile;
// Pruefen, ob die naechste Tabelle angelegt wird (nur fuer Infoanzeige)
if (strtolower(substr($zeile,0,13))=="create table ") $actual_table=get_tablename($zeile);
}
else
{
// Ups, kein Rueckgabewert in der Zeile?
// Ja sind wir denn schon fertig? - Das ueberpruefen wir mal mit eof()...
if ( ($gz) && (gzeof($f)) ) $end=true;
if ( (!$gz) && (feof($f)) ) $end=true;
$ret="end of file";
}
}
return $ret;
}
?>

13
inc/header.php Normale Datei
Datei anzeigen

@ -0,0 +1,13 @@
<html>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<title>MySqlDump</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body bgcolor="#F5F5F5">
<?php
include_once("inc/functions.php");
TestWorkDir();
include($config_file);
SelectDB($db_selected_index);
?>

110
inc/info.php Normale Datei
Datei anzeigen

@ -0,0 +1,110 @@
<?
if($_GET["action"]=="phpinfo") {
phpinfo();
echo '<p align="center"><a href="../index.php">Home</a></p>';
die;
}
$conn = mysql_connect($dbhost,$dbuser,$dbpass) or die(mysql_error()."");
if($_GET["action"]=="db") {
for($i=0;$i<count($dbname_a);$i++) {
if(isset($_POST["empty".$i])) {
$res=mysql_query("DROP DATABASE `$dbname_a[$i]`") or die(mysql_error()."");
$res=mysql_query("CREATE DATABASE `$dbname_a[$i]`") or die(mysql_error()."");
$dba= $l["db"]." $dbname_a[$i] ".$l["info_cleared"]."<br>";
break;
}
if(isset($_POST["kill".$i])) {
$res=mysql_query("DROP DATABASE `$dbname_a[$i]`") or die(mysql_error()."");
$dba= $l["db"]." $dbname_a[$i] ".$l["info_deleted"]."<br>";
SetDefault(true);
echo '<script language="JavaScript">parent.menu.location.href="menu.php";</script>';
break;
}
}
}
if($_GET["action"]=="newdb") {
if($_POST["dbneu"]!="" && isset($_POST["submit"])) {
$res=mysql_query("CREATE DATABASE `".$_POST["dbneu"]."`") or die(mysql_error()."");
$dba=$l["db"]." '".$_POST["dbneu"]."' ".$l["info_created"]."<br>";
SetDefault(true);
echo '<script language="JavaScript">parent.menu.location.href="menu.php";</script>';
}
}
$res=mysql_query("select version()");
$row = mysql_fetch_array($res);
echo 'PHP-Version: <strong>'.phpversion().'</strong> <a style="text-decoration:underline;" href="inc/info.php?action=phpinfo">[Info]</a><br>';
echo 'MySQL-Version: <strong>'.$row[0].'</strong><br>';
echo $l["info_location"].' "<b>'.$_SERVER["SERVER_NAME"].'</b>" ('.$_SERVER["DOCUMENT_ROOT"].').<br>';
echo $l["info_workdir"].": <b>$work</b><br>";
echo $l["info_backupdir"].": <b>$backup_path</b><br>";
echo $l["info_actdb"].":<strong> $dbname</strong><br>";
echo '<hr><h4>'.$l["info_databases"].'</h4><div style="padding-left:10px; font-weight:bold;">';
echo $dba.'<table border="2" cellpadding="2" cellspacing="2" width="70%">';
for($i=0;$i<count($dbname_a);$i++) {
//gibts die Datenbank überhaupt?
if (!mysql_select_db($dbname_a[$i],$conn)) {
echo '<tr><td>'.$dbname_a[$i].'</td><td colspan="3">'.$l["info_nodb"].'</td>';
} else {
mysql_select_db($dbname_a[$i],$conn);
$tabellen = mysql_list_tables($dbname_a[$i],$conn);
$num_tables = mysql_num_rows($tabellen);
echo '<tr><td><a style="text-decoration:underline;" href="'.$PHP_SELF.'?dbid='.$i.'">'.$dbname_a[$i].'</a></td>';
echo '<td>'.$num_tables.' '.$l["info_table1"];
echo ($num_tables>1) ? $l["info_table2"] : '';
echo '</td>';
echo '</tr>';
}
}
echo '</table>';
echo '<form action="'.$PHP_SELF.'?action=newdb" method="post"><table border="1"><tr>';
echo '<td>'.$l["create_database"].'</td><td><input type="text" name="dbneu" size="23" maxlength="50"></td><td><input class="Formbutton2" type="submit" name="submit" value="'.$l["button_create_database"].'"></td></tr></table></form>';
echo '</div>';
if (isset($_GET["dbid"]))
{
$dbid=$_GET["dbid"];
echo '<hr><h4>'.$l["info_dbdetail"].'"'.$dbname_a[$dbid].'"</h4>';
$res=mysql_query("SHOW TABLE STATUS FROM ".$dbname_a[$dbid]);
$numrows=mysql_num_rows($res);
if($numrows==0) {
echo $l["info_dbempty"];
} else {
echo $numrows.' '.$l["info_table1"];
echo ($numrows>1) ? $l["info_table2"] : '';
echo '<br><table border="1"><tr><td class="hd">Nr.</td><td class="hd">'.$l["info_table1"].'</td><td class="hd">'.$l["info_records"].'</td><td class="hd">'.$l["info_size"].'</td><td class="hd">'.$l["info_lastupdate"].'</td></tr>';
$last_update="2000-01-01 00:00:00";
for ($i = 0; $i < $numrows; $i++)
{
$row = mysql_fetch_array($res);
echo '<tr><td align="right">'.($i+1).'</td><td>'.$row[Name].'</td><td align="right">'.number_format($row[Rows],0,",",".").'</td><td align="right">'.number_format($row[Data_length]+$row[Index_length],0,",",".").' Bytes</td><td style="color:#006600;">'.$row[Update_time].'</td></tr>';
if(strtotime($row[Update_time])>strtotime($last_update)) $last_update=$row[Update_time];
$s1=$s1+$row[Rows];
$s2=$s2+$row[Data_length]+$row[Index_length];
}
echo '<tr class="hellblau"><td colspan="2"><strong>'.$l["info_sum"].'</strong></td><td align="right"><strong>'.number_format($s1,0,",",".").'</strong></td><td align="right"><strong>'.number_format($s2,0,",",".").' Bytes</strong></td><td style="color:#006600;"><strong>'.$last_update.'</strong></td></tr>';
echo '</table>';
}
$edb=$l["info_emptydb1"].' `'.$dbname_a[$dbid].'` '.$l["info_emptydb2"];
$kdb=$l["info_emptydb1"].' `'.$dbname_a[$dbid].'` '.$l["info_killdb"];
echo '<form action="'.$PHP_SELF.'?action=db" method="post"><table><tr>';
if($numrows>0) echo '<td><input class="Formbutton2" type="submit" name="empty'.$dbid.'" value="'.$l["clear_database"].'" onclick="if (!confirm(\''.$edb.'\')) return false;"></td>';
echo '<td><input class="Formbutton2" type="submit" name="kill'.$dbid.'" value="'.$l["delete_database"].'" onclick="if (!confirm(\''.$kdb.'\')) return false;"></td>';
echo '</tr></table>';
}
include("footer.php");
?>

18
index.html Normale Datei
Datei anzeigen

@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Daniel Schlichtholz in 2004">
<title>MySqlDump</title>
</head>
<frameset cols="190,*" frameborder="0" framespacing="0" border="0">
<frame name="menu" src="menu.php" scrolling="auto" noresize frameborder="1">
<frame name="main" src="index.php" scrolling="auto" frameborder="0">
<noframes>
<body>
You need to get a newer browser!
</body>
</noframes>
</frameset>
</html>

9
index.php Normale Datei
Datei anzeigen

@ -0,0 +1,9 @@
<?php
include("inc/header.php");
echo "<h3>Home</h3>";
include("inc/info.php");
?>

115
language/help_de.html Normale Datei
Datei anzeigen

@ -0,0 +1,115 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Daniel Schlichtholz in 2002">
<link rel="stylesheet" type="text/css" href="../styles.css">
<title>MySqlDump Hilfe</title>
</head>
<body>
<h3>&Uuml;ber dieses Projekt</h3>
Die Idee f&uuml;r dieses Projekt kam von Daniel Schlichholz.<p>Er er&ouml;ffnete 2004 das Forum <a href="http://www.daniel-schlichtholz.de/board" target="_blank">MySQLDump</a> und schon bald fanden sich Hobby-Programmierer, die neue Skripte schrieben und die von Daniel erweiterten.<br>Innerhalb k&uuml;rzester Zeit enstand aus dem kleine Backupskript ein stattliches Projekt.<p>Wenn du Vorschl&auml;ge zur Verbesserung hast, dann wende ich an das MySQLDump-Forum <a href="http://www.daniel-schlichtholz.de/board" target="_blank">http://www.daniel-schlichtholz.de/board</a>.<p>Wir w&uuml;nschen dir viel Vergn&uuml;gen mit diesem Projekt.<br><p><h4>Das MySQLDump-Team</h4>
Daniel Schlichtholz - Steffen Kamper - Alexander F&ouml;disch <br>
Logo von Lukas - <a href="http://www.protecus.de" target="_blank">Protecus.de</a><br>
Mai 2004<br>
<hr>
<h3>MySqlDump Hilfe</h3>
<h4>Download</h4>
Dieses Script erhaltet ihr nur von der Homepage von MySQLDump.<br>
Es empfielt sich, die Homepage &ouml;fters zu besuchen, um Updates und
Hilfestellungen zu erlangen.<br>
Die Adresse lautet: <a href="http://www.daniel-schlichtholz.de/board" target="_blank">
http://www.daniel-schlichtholz.de/board
</a>
<h4>Systemvoraussetzung</h4>
Das Script arbeitet auf jedem Server (Windows, Linux, ...) <br>
mit PHP >= Version 4.3.4 mit GZip-Unterstützung, MySQL (ab Version 3.23), JavaScript (muss aktiviert sein).
<h4>Installation</h4>
Die Installation geht einfach von statten.
Entpackt das Archiv in einen beliebigen Ordner,
der vom Webserver aus erreichbar ist<br>
(z.B. in die unterste Ebene in [Server Webverzeichnis/]MySQLDump)<br>
Dann &ouml;ffnet ihr mit einem Texteditor die Datei config.php und
gebt Eure Datenbanknamen und Zugangsdaten an. Anschliessend speichert ihr
die Datei.<br>
... fertig!<br>
ihr k&ouml;nnt MySQLDump nun im Webbrowser aufrufen durch "http://mein-webserver/MySQLDump"
<h4>Bedienung</h4><ul>
<h6>Men&uuml;</h6>
In der obigen Auswahlliste stellt ihr die Datenbank ein.<br>
Alle Aktionen beziehen sich auf die hier eingestellte Datenbank.
<h6>Startseite</h6>
Hier erfahrt ihr einiges &uuml;ber euer System, die verschiedenen installierten
Versionen und Details &uuml;ber die konfigurierten Datenbanken.<br>
Wenn ihr auf den Datenbanknamen klickt, so seht ihr eine Auflistung der Tabellen
mit Anzahl der Eintr&auml;gen, Gr&ouml;sse und letztes Aktualisierungsdatum.
<h6>Konfiguration</h6>
Hier k&ouml;nnt ihr eure Konfiguration bearbeiten, abspeichern oder die Ausgabgskonfiguration
wieder herstellen.
<ul><br>
<li><a name="conf1"></a><strong>Konfigurierte Datenbanken:</strong> die Auflistung der konfigurierten Datenbanken. Die aktive Datenbank ist fett. </li>
<li><a name="conf2"></a><strong>Tabellen-Pr&auml;fix:</strong> hier k&ouml;nnt ihr (f&uuml;r jede Datenbank) einen Pr&auml;fix angeben. Dies ist ein Filter, der bei Dumps nur die Tabellen ber&uuml;cksichtigt, die mit diesem Pr&auml;fix beginnen (z.B. alle Tabellen mit "phpBB_"). Ist das nicht gew&uuml;nscht, so bleibt das Feld leer.</li>
<li><a name="conf3"></a><strong>GZip-Kompression:</strong> Hier kann die Kompression aktiviert werden. Empfehlenswert ist mit Kompression, da die Dateien doch wesentlich kleiner sind, und Festplattenplatz immer rar ist.</li>
<li><a name="conf19"></a><strong>Anzahl der Zeilen beim Backup:</strong> Hier wird festgelegt, wieviele Zeilen (Datensätze) bei einem Backup in einem Rutsch eingelesen werden, bevor das Script den Selbstaufruf startet. Bei langsamen Servern kann diese Zahl heruntergesetzt werden, um Timeouts zu verhindern.</li>
<li><a name="conf20"></a><strong>Anzahl der Zeilen bei Wiederherstellung:</strong> Hier wird festgelegt, wieviele Zeilen (Datensätze) bei einer Wiederherstellung in einem Rutsch eingelesen werden, bevor das Script den Selbstaufruf startet. Bei langsamen Servern kann diese Zahl heruntergesetzt werden, um Timeouts zu verhindern.</li>
<li><a name="conf4"></a><strong>Backup-Verzeichnis:</strong> hier wird festgelegt, in welchem Verzeichnis die Backupdateien gespeichert werden. Bei Eingabe eines neuen Verzeichnisses legt das Script dieses an. Erlaubt sind sowohl relative als auch absolute Pfadangaben.</li>
<li><a name="conf5"></a><strong>Email mit Dumpfile:</strong> Ist diese Option aktiviert, so wird nach abgeschlossenem Backup eine Email mit dem Dump als Anhang verschickt (Vorsicht, Kompression sollte unbedingt an sein, sonst wird der Anhang zu gross und kann ev. nicht versandt werden!)</li>
<li><a name="conf6"></a><strong>Email-Adresse:</strong> Empf&auml;ngeradresse f&uuml;r die Email</li>
<li><a name="conf7"></a><strong>Absender der Email:</strong> diese Adresse taucht als Absender in der Email auf</li>
<li><a name="conf13"><strong>FTP-Transfer: </strong>Ist diese Option aktiviert, so wird nach abgeschlossenem Backup die Backupdatei per FTP versandt.</li>
<li><a name="conf14"><strong>FTP Server: </strong>die Adresse des FTP-Servers (z.B. ftp.mybackups.de)</li>
<li><a name="conf15"><strong>FTP Server Port: </strong>der Port des FTP-Servers (in der Regel 21)</li>
<li><a name="conf16"><strong>FTP User: </strong>der Benutzername des FTP-Accounts </li>
<li><a name="conf17"><strong>FTP Passwort: </strong>das Passwort des FTP-Accounts </li>
<li><a name="conf18"><strong>FTP Upload-Ordner: </strong>das Verzeichnis, in das die Backupdatei soll (es müssen Upload-Berechtigungen bestehen!)</li>
<li><a name="conf8"></a><strong>automatisches L&ouml;schen der Backups:</strong> Wenn diese Option aktiviert ist, werden &auml;ltere Backups nach den folgenden Regeln automatisch gel&ouml;scht. Kombinationen sind m&ouml;glich.</li>
<li><a name="conf9"></a><strong>Alter der Dateien (in Tagen):</strong> Ein Wert > 0 l&ouml;scht alle Backupdateien, die &auml;lter als diese Angabe sind.</li>
<li><a name="conf10"></a><strong>Anzahl von Backupdateien:</strong> Ein Wert > 0 l&ouml;scht alle Backupdateien, bis auf die hier angegeben Zahl</li>
<li><a name="conf11"></a><strong>Sprache:</strong> hier legst du die Sprache f&uuml;r das Interface fest.</li>
<li><a name="conf12"></a><strong>Zeitlimit f&uuml;r Cronjob:</strong> diese Angabe in Sekunden erh&ouml;ht das erlaubte Zeitlimit des Prozesses um die angegebenen Sekunden, wenn der Provider dies erlaubt.</li>
</ul>
<h6>Verwaltung</h6>
Hier werden die eigenlichen Aktionen durchgef&uuml;hrt.<br>
Es werden dir alle Dateien im Backup-Verzeichnis angezeigt.
F&uuml;r die Aktionen "Restore" und "Delete" muss eine Datei selektiert sein.
<UL>
<li><strong>Restore:</strong> hiermit wird die Datenbank mit der ausgew&auml;hlten Backupdatei aktualisiert.</li>
<li><strong>Delete:</strong> hiermit kannst du die selektierte Backupdatei l&ouml;schen.</li>
<li><strong>Neues Backup starten:</strong> hier startest du ein neues Backup (Dump) nach den in der Konfiguration eingestellten Parametern.</li>
</UL>
<h6>Log</h6>
Hier kannst du die Logeintr&auml;ge sehen und l&ouml;schen.
<h6>Credits / Hilfe</h6>
diese Seite.
</ul>
<br>letzter Stand: 30.05.2004
<br><p align="center" class="small">
Idee:
<a class="small" href="http://www.daniel-schlichtholz.de" target="_new">
Daniel Schlichtholz</a> - Infoboard:
<a class="small" href="http://www.daniel-schlichtholz.de/board" target="_new">
www.daniel-schlichtholz.de/board</a></p>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>
</html>

113
language/help_en.html Normale Datei
Datei anzeigen

@ -0,0 +1,113 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Daniel Schlichtholz in 2002">
<link rel="stylesheet" type="text/css" href="../styles.css">
<title>MySqlDump Help</title>
</head>
<body>
<h3>About this project</h3>
The idea for this project comes from Daniel Schlichtholz.<p>In 2004 he created a forum called <a href="http://www.daniel-schlichtholz.de/board" target="_blank">MySQLDump</a> and soon, programmers who wrote new scripts, supplemented Daniel's scripts.<br>After a short time the small backup-script developed into a stately project.<p>If you have any improvement suggestions you can visit the MySQLDump-Forum: <a href="http://www.daniel-schlichtholz.de/board" target="_blank">http://www.daniel-schlichtholz.de/board</a>.<p>We wish you a lot of fun with this project.<br><br><h4>The MySQLDump-Team</h4>
Daniel Schlichtholz - Steffen Kamper - Alexander F&ouml;disch <br>
Logo by Lukas - <a href="http://www.protecus.de" target="_blank">Protecus.de</a><br>
May 2004
<hr>
<h3>MySqlDump Help</h3>
<h4>Download</h4>
This Script is available on the Homepage of MySQLDump.<br>
It is recommanded to visit the Homepage frequently to get the latest information, updates and help.<br>
The address is <a href="http://www.daniel-schlichtholz.de/board" target="_blank">
http://www.daniel-schlichtholz.de/board
</a>
<h4>System Mandatories</h4>
The Script works with nearly any server (Windows, Linux, ...) <br>
and PHP >= Version 4.3.4 with GZip-Library, MySQL (>= 3.23), JavaScript (must be enabled).
<h4>Installation</h4>
The installation is very easy.
Unpack the archive in any folder,
which is accessible from the Webserver<br>
(e.g. in the root directory [Server rootdir/]MySQLDump)<br>
Then edit the file config.php with any editor and enter your
database names and user/passwords, and save the file.<br>
... all done!<br>
you can start MySQLDump in your Browser by typing "http://webserver/MySQLDump"
<h4>Operating</h4><ul>
<h6>Menu</h6>
In the select box above you choose your database.<br>
All actions refer to this database.
<h6>Home</h6>
Here you get information about your system, the version numbers and details about the configured databases.<br>
If you click on a database in the table, you get a list of tables with record counts, size and last update stamp.
<h6>Configuration</h6>
Here you can edit your configuration, save it or load the default settings.
<ul>
<li><a name="conf1"><strong>Configured Databases:</strong> list of configured databases. The active database is in bold.</li>
<li><a name="conf2"><strong>Table-Prefix:</strong> you can choose a prefix for each database seperated. The prefix is a filter, which only handle the tables in a dump, that start with this prefix (e.g. all tables starting with "phpBB_"). If you don't want to use it, leave this field empty.</li>
<li><a name="conf3"><strong>GZip-Compression:</strong> Here you can activate the compression. It is recommended to work with compression because of the smaller size of files, netherless disk space is ever rarely.</li>
<li><a name="conf19"></a><strong>Records count for backup:</strong> These are the number of records which are being read simultaneously while the backup, before the script makes the callback. For slow server you can reduce this parameter to prevent timeouts.</li>
<li><a name="conf20"></a><strong>Records count for restore:</strong> These are the number of records which are being read simultaneously while the backup, before the script makes the callback. For slow server you can reduce this parameter to prevent timeouts.</li>
<li><a name="conf4"><strong>Directory for Backup files:</strong> choose your directory for the backup files. If you choose a new one, the script will create it for you. You can use relative or absolute paths.</li>
<li><a name="conf5"><strong>Send dumpfile as email:</strong> When this option is enabled, the script will automatically send the finished backup file as an email with an attachment (be careful!, you should use compression with this option because the dumpfile may be too large for email!)</li>
<li><a name="conf6"><strong>Email address:</strong> Recipient's email address</li>
<li><a name="conf7"><strong>Email subject:</strong> The subject of the email</li>
<li><a name="conf13"><strong>FTP-Transfer: </strong>When this option is enabled, the script will automatically send the finished backup file via FTP.</li>
<li><a name="conf14"><strong>FTP Server: </strong>the Address of the FTP-Servers (e.g. ftp.mybackups.de)</li>
<li><a name="conf15"><strong>FTP Server Port: </strong>the Port for the FTP-Server (normally 21)</li>
<li><a name="conf16"><strong>FTP User: </strong>the username for the FTP-Account</li>
<li><a name="conf17"><strong>FTP Passwort: </strong>the password for the FTP-Account</li>
<li><a name="conf18"><strong>FTP Upload-Ordner: </strong>the folder for saving the backup file (there must be Upload-Rights!)</li>
<li><a name="conf8"><strong>automatic deletion of backups:</strong> When you activate this options, backup files will be deleted automatically by the following rules. Combinations are possible.</li>
<li><a name="conf9"><strong>Delete by age of files (in days):</strong> A Value > 0 deletes all files older than the value in days</li>
<li><a name="conf10"><strong>Delete by number of files:</strong> A Value > 0 deletes all files except the given value</li>
<li><a name="conf11"><strong>Langauge:</strong> choose your language for the interface.</li>
<li><a name="conf12"><strong>Time limit for Cronjob:</strong> this value in seconds increases the allowed time limit of the process in seconds when your ISP allows that.</li>
</ul>
<h6>Management</h6>
All the actions are listed here.<br>
You see all files in the backup directory.
For the actions "Restore" and "Delete" you have to select a file first.
<UL>
<li><strong>Restore:</strong> you restore the database with the records of the selected backupfile.</li>
<li><strong>Delete:</strong> you can delete the selected backup file.</li>
<li><strong>Start new Dump:</strong> here you start a new backup (dump) with your configured parameters.</li>
</UL>
<h6>Log</h6>
You can read the Log entries and delete them.
<h6>Credits / Help</h6>
This page.
</ul><br>last Update: 2004-05-30
<br><p align="center" class="small">
Idea:
<a class="small" href="http://www.daniel-schlichtholz.de" target="_new">
Daniel Schlichtholz</a> - Info Board:
<a class="small" href="http://www.daniel-schlichtholz.de/board" target="_new">
www.daniel-schlichtholz.de/board</a></p>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>
</html>

256
language/lang_de.php Normale Datei
Datei anzeigen

@ -0,0 +1,256 @@
<?php
// Die Sprachdateien werden in der config.php geladen. Deswegen muss diese vorher stets eingebunden werden, damit
// die unten aufgef&uuml;hrten Variablen zur Verf&uuml;gung stehen.
$cron_script=$rootdir.'/cron_dump.php';
$cron_abs=$_SERVER["DOCUMENT_ROOT"].'/cron_dump.php';
// Allgemeine Texte
$l["no"]="nein";
$l["yes"]="ja";
$l["activated"]="aktiviert";
$l["not_activated"]="nicht aktiviert";
$l["error"]="Fehler";
$l["added"]="hinzugefügt";
$l["added"]="hinzugefügt";
$l["first_run"]="Datenbanken gefunden:";
$l["dbrefresh"]="Datenbanken neu laden";
$l["db"]="Datenbank";
//Hilfe-Texte
$l["help_db"]="Dies ist die Liste der vorhandenen Datenbanken";
$l["help_praefix"]="Der Praefix ist eine Zeichenfolge für den Anfang von Tabellen, der als Filter fungiert.";
$l["help_zip"]="Kompression mit GZip - emfohlen ist 'aktiviert'";
$l["help_budir"]="Hier werden die Datenbank-Backups gespeichert.";
$l["help_mail1"]="Wenn aktiviert, dann wird nach Wiederherstellung eine Email mit dem Backup verschickt.";
$l["help_mail2"]="Dies ist die Empfänger-Adresse der Email.";
$l["help_mail3"]="Dies ist die Absende-Adresse der Email.";
$l["help_ad1"]="Wenn aktiviert, dann werden automatisch Backupfiles gelöscht.";
$l["help_ad2"]="die maximale Anzahl von Tagen, die ein Backupfile haben darf (für Autodelete)";
$l["help_ad3"]="die maximale Anzahl von Dateien, die im Backupverzeichnis sein dürfen (für Autodelete)";
$l["help_lang"]="stell auf die gewünschte Sprache";
$l["help_crontime"]="die Zeit, die das Cronscript zusätzlich bekommt (in Sekunden)";
$l["help_cronsamedb"]="Soll die gleiche Datenbank für Cronjob wie in Einstellungen benutzt werden?";
$l["help_crondbindex"]="wähle die Datenbank für den Cronjob";
$l["help_dumpz"]="Das ist die Anzahl der Zeilen, die beim Backup in einem Rutsch ausgelesen werden";
$l["help_restorez"]="Das ist die Anzahl der Zeilen, die bei der Wiederherstellung in einem Rutsch geschrieben werden";
// Text in filemanagement.php
$l["fm_title"]="Verwaltung";
$l["fm_uploadfilerequest"]="Bitte gib eine Datei an.";
$l["fm_uploadnotallowed1"]="Dieser Dateityp ist nicht erlaubt.";
$l["fm_uploadnotallowed2"]="G&uuml;ltige Typen sind: *.gz und *.sql-Dateien";
$l["fm_uploadmoveerror"]="Konnte die hochgeladene Datei nicht in den richtigen Ordner verschieben.";
$l["fm_uploadfailed"]="Der Upload ist leider fehlgeschlagen!";
$l["fm_uploadfileexists"]="Es existiert bereits eine Datei mit diesem Namen !";
$l["fm_nofile"]="Du hast gar keine Datei ausgew&auml;hlt!";
$l["fm_delete1"]="Die Datei ";
$l["fm_delete2"]=" wurde erfolgreich gel&ouml;scht.";
$l["fm_delete3"]=" konnte nicht gel&ouml;scht werden!";
$l["choose_file"]="gew&auml;hlte Datei:";
$l["fm_filename"]="Dateiname";
$l["fm_filesize"]="Dateigr&ouml;&szlig;e";
$l["fm_nofilesfound"]="Keine Datei gefunden.";
$l["fm_sizesum"]="Gesamtgr&ouml;&szlig;e";
$l["fm_freespace"]="Freier Speicher auf Server";
$l["fm_choosefile"]="W&auml;hle eine Datei zur Wiederherstellung oder zum L&ouml;schen aus:";
$l["fm_restore"]="Wiederherstellen";
$l["fm_alertrestore1"]="Soll die Datenbank ";
$l["fm_alertrestore2"]="mit den Inhalten der Datei";
$l["fm_alertrestore3"]="wiederhergestellt werden?";
$l["fm_delete"]="L&ouml;schen";
$l["fm_askdelete1"]="M&ouml;chtest Du die Datei ";
$l["fm_askdelete2"]=" wirklich l&ouml;schen?";
$l["fm_askdelete3"]="Möchten sie Autodelete nach den eingestellten Regeln jetzt ausführen?";
$l["fm_askdelete4"]="Möchten sie alle Backupdateien jetzt löschen?";
$l["fm_askdelete5"]="Möchten sie alle Backupdateien mit ".$dbname."_* jetzt löschen?";
$l["fm_deleteauto"]="Autodelete manuell ausführen";
$l["fm_deleteall"]="alle Backupdateien löschen";
$l["fm_deleteallfilter"]="alle löschen mit ".$dbname."_*";
$l["fm_newdump"]="Oder beginne ein neues Backup:";
$l["fm_startdump"]="Neues Backup starten";
$l["fm_upload"]="Oder lade eine Datei hoch:";
$l["fm_fileupload"]="Datei hochladen";
$l["fm_files"]="Files im Backupverzeichnis";
$l["fm_autodel1"]="Autodelete: Folgende Dateien wurden aufgrund der maximalen Files gel&ouml;scht:";
$l["fm_autodel2"]="Autodelete: Folgende Dateien wurden aufgrund ihres Erstellungsdatums gel&ouml;scht:";
$l["fm_dumpsettings"]="Folgende Datenbank wird mit folgendem [Präfix] gesichert: <strong>$dbname [$dbpraefix]</strong>";
$l["cron_adress"]="Adresse des Cronscripts: <a href=\"".$cron_script."\" style=\"text-decoration:underline\">".$cron_script."</a>";
$l["cron_desc"]="Das Cronscript läuft ohne eine Text-Ausgabe und benutzt die eingestellten Parameter incl. Mail- und FTP-Versand.<br>Bitte überzeugt euch vorher, das das Backup mit den eingestellten Parametern funktioniert, bevor ihr das Cronscript einsetzt.<br>ev. muss das Timelimit angepasst werden. Ihr könnt aus dem Log entnehmen, wie lange der Prozess gedauert hat.<br>das Cronscript liegt auf dem server unter '".$cron_abs."' <br>WICHTIG: Das Script funktioniert nur bis zu einer bestimmten Datenbankgrösse!";
$l["DoCronButton"]="Perl-Cronscript ausführen";
$l["cronperldesc"]="Dies geht nur, wenn Perl ausgeführt werden kann. <br>Das Script liegt unter ";
// Text in dump.php
$l["dump"]="Backup";
$l["dump_headline"]="erzeuge Backup...";
$l["gzip_compression"]="GZip-Kompression ist";
$l["on"]="an";
$l["off"]="aus";
$l["saving_table"]="Speichere Tabelle ";
$l["of"]="von";
$l["actual_table"]="Aktuelle Tabelle";
$l["progress_table"]="Fortschritt Tabelle";
$l["progress_over_all"]="Fortschritt gesamt";
$l["entry"]="Eintrag";
$l["done"]="Fertig!";
$l["file"]="Datei";
$l["dump_successful"]=" wurde erfolgreich erstellt.";
$l["upto"]="bis";
$l["email_was_send"]="Das Dumpfile wurde erfolgreich per Email verschickt.";
$l["back_to_control"]="weiter";
$l["dump_filename"]="Backup-Datei: ";
$l["dump_notables"]="Ich konnte keine Tabellen in der Datenbank '<b>".$dbname."</b>' finden.";
$l["dump_endergebnis1"]="Es wurden ";
$l["dump_endergebnis2"]=" Tabellen mit insgesamt ";
$l["dump_endergebnis3"]=" Datensätzen gesichert.<br>";
$l["mailerror"]="Leider ist beim Verschicken der Email ein Fehler aufgetreten!";
$l["emailbody"]="In der Anlage findest Du die Sicherung Deiner MySQL-Datenbank.\n\rSicherung der Datenbank '".$dbname."' vom ".date("d\.m\.Y",time())."\n\r\n\rViele Grüsse\n\r\n\rMySQLDump\n\rhttp://www.daniel-schlichtholz.de/board";
// Text in restore.php
$l["restore"]="Wiederherstellung";
$l["restore_db"]="der Datenbank '<b>".$dbname."</b>' auf '<b>".$dbhost."</b>'.<br>";
$l["restore_complete"]="</b> Tabellen wurden komplett wiederhergestellt.";
$l["restore_run1"]="<br>Bisher wurden <b>";
$l["restore_run2"]="</b> Datens&auml;tze erfolgreich eingetragen.";
$l["restore_run3"]="<br>Momentan wird die Tabelle '<b>";
$l["restore_run4"]="</b>' mit Daten gef&uuml;llt.<br>";
$l["restore_run5"]="der Datei eingetragen.";
$l["restore_total_complete"]="<br><b>Herzlichen Gl&uuml;ckwunsch.</b><br><br>Die Datenbank wurde komplett wiederhergestellt.<br>Alle Daten aus der Backupdatei wurden erfolgreich in die Datenbank eingetragen.<br><br>Alles fertig. :-)";
$l["db_no_connection"]="Keine Verbindung zur Datenbank m&ouml;glich!";
$l["db_select_error"]="<br>Fehler:<br>Auswahl der Datenbank '<b>".$dbname."</b>' fehlgeschlagen!";
$l["file_open_error"]="Fehler: Ich konnte die Datei nicht &ouml;ffnen.";
$l["restore_entryerror"]="Fehler beim Eintrag des Befehls:";
// Text in config_overview.php
$l["config_headline"]="Konfiguration";
$l["dump_dir"]="Die Backupdatei wird im Ordner '<b>".realpath($path)."</b>' gespeichert.";
$l["saving_db"]="Gesichert wird die Datenbank '<b>".$dbhost."/".$dbname."</b>'.";
$l["send_mail"]="Die fertige Backupdatei wird per Email an '<b>".$email[0]."</b>' geschickt.";
$l["no_send_mail"]="Die fertige Backupdatei wird <b>nicht</b> per Email verschickt.";
$l["del_files"]="Dateien werden automatisch gel&ouml;scht, wenn sie &auml;lter als '<b>".$del_files."</b>' Tage sind.";
$l["no_del_files"]="Es gibt keine Altersbegrenzung der Backupdateien.";
$l["number_of_files"]="Dateien werden automatisch gel&ouml;scht, wenn mehr als '<b>".$number_of_files."</b>' in ".realpath($path)." gespeichert sind.";
$l["no_number_of_files"]="Es gibt keine Begrenzung der Anzahl von Backupdateien.";
$l["save_success"]="Die Einstellungen wurden erfolgreich gespeichert.";
$l["save_error"]="Die Einstellungen konnten nicht gespeichert werden !";
$l["config_databases"]="Datenbanken";
$l["config_dumprestore"]="Backup / Wiederherstellung";
$l["config_email"]="Email-Benachrichtigung";
$l["config_autodelete"]="automatisches L&ouml;schen";
$l["config_interface"]="Interface";
$l["config_cron"]="Crondump-Einstellungen";
$l["cron_timelimit"]="Zeitlimit f&uuml;r Cronjob";
$l["praefix"]="Tabellen-Pr&auml;fix";
$l["config_askload"]="Sollen die Einstellungen wirklich mit den Anfangseinstellungen überschrieben werden?";
$l["load"]="Anfangseinstellungen laden";
$l["load_success"]="Die Anfangseinstellungen wurden geladen.";
$l["cron_samedb"]="Datenbank aus Einstellungen nehmen";
$l["cron_crondbindex"]="Datenbank und Tabellen-Präfix<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;für den Cronjob";
$l["dump_zeilen"]="Anzahl der Zeilen beim Backup";
$l["restore_zeilen"]="Anzahl der Zeilen bei Wiederherstellung";
// Text in config_overview.php - Formular
$l["gzip"]="GZip-Kompression";
$l["backup_dir"]="Backup-Verzeichnis";
$l["db_host"]="Hostname";
$l["saving_db_form"]="Datenbank";
$l["db_user"]="Benutzer";
$l["db_pass"]="Passwort";
$l["send_mail_form"]="Email mit Dumpfile";
$l["email_adress"]="Email-Adresse";
$l["email_subject"]="Absender der Email";
$l["age_of_files"]="Alter der Dateien (in Tagen)";
$l["number_of_files_form"]="Anzahl von Backupdateien";
$l["language"]="Sprache";
$l["list_db"]="Konfigurierte Datenbanken:";
$l["save"]="Speichern";
$l["reset"]="zur&uuml;cksetzen";
$l["autodelete"]="automatisches L&ouml;schen der Backups";
$l["help_ftptransfer"]="wenn aktiviert, wird nach Backup die Datei per FTP gesendet.";
$l["help_ftpserver"]="Adresse des FTP-Servers";
$l["help_ftpport"]="Port des FTP-Servers, Standard: 21";
$l["help_ftpuser"]="gib den Benutzername der FTP-Verbindung an";
$l["help_ftppass"]="gib das Passwort der FTP-Verbindung an";
$l["help_ftpdir"]="wohin soll das File gesendet werden?";
$l["config_ftp"]="FTP-Transfer der Backupdatei";
$l["ftp_transfer"]="FTP-Transfer";
$l["ftp_server"]="FTP Server";
$l["ftp_port"]="FTP Port";
$l["ftp_user"]="FTP User";
$l["ftp_pass"]="FTP Passwort";
$l["ftp_dir"]="FTP Upload-Ordner";
// Sprachen
$l["lang_de"]="Deutsch";
$l["lang_en"]="Englisch";
// Text aus menu.php
$l["load_database"]="Datenbanken neu laden";
$l["home"]="Home";
$l["config"]="Konfiguration";
$l["file_manage"]="Verwaltung";
$l["log"]="Log";
$l["project"]="&Uuml;ber das Projekt";
$l["choose_db"]="Datenbank w&auml;hlen";
$l["credits"]="Credits / Hilfe";
//Log
$l["log_delete"]="Log l&ouml;schen";
// Texte aus info.php
$l["info_location"]="Du befindest Dich auf ";
$l["info_browser"]="Dein Browser ist";
$l["info_admin"]="Der Serveradministrator ist ";
$l["info_databases"]="Folgende Datenbank(en) befinden sich auf dem MySql-Server:";
$l["info_nodb"]="Datenbank existiert nicht";
$l["info_table1"]="Tabelle";
$l["info_table2"]="n";
$l["info_dbdetail"]="Detail-Info von Datenbank ";
$l["info_dbempty"]="Die Datenbank ist leer !";
$l["info_records"]="Datens&auml;tze";
$l["info_size"]="Gr&ouml;sse";
$l["info_lastupdate"]="letztes Update";
$l["info_sum"]="insgesamt";
$l["info_rechte"]="Deine Rechte";
$l["info_cronyes"]="Du kannst MySQLDump als Cronjob durchf&uuml;hren.";
$l["info_cronno"]="Aufgrund deiner PHP-Einstellungen (safe_mode=on) kannst du MySQLDump nicht als Cronjob durchf&uuml;hren!'";
$l["clear_database"]="Datenbank leeren";
$l["delete_database"]="Datenbank l&ouml;schen";
$l["create_database"]="neue Datenbank anlegen:";
$l["button_create_database"]="anlegen";
$l["info_created"]="angelegt";
$l["info_cleared"]="wurde geleert";
$l["info_deleted"]="wurde gelöscht";
$l["info_workdir"]="Arbeitsverzeichnis";
$l["info_backupdir"]="Backupverzeichnis";
$l["info_cgidir"]="CGI-Bin-Verzeichnis";
$l["info_cginr"]="nicht vorhanden oder kein Zugriffsrecht";
$l["info_actdb"]="Aktuelle Datenbank";
$l["info_emptydb1"]="Soll die Datenbank";
$l["info_emptydb2"]=" wirklich geleert werden? (ACHTUNG: Alle Daten gehen unwideruflich verloren)";
$l["info_killdb"]=" wirklich gelöscht werden? (ACHTUNG: Alle Daten gehen unwideruflich verloren)";
?>

248
language/lang_en.php Normale Datei
Datei anzeigen

@ -0,0 +1,248 @@
<?php
// Die Sprachdateien werden in der config.php geladen. Deswegen muss diese vorher stets eingebunden werden, damit
// die unten aufgeführten Variablen zur Verfügung stehen.
$cron_script=$rootdir.'/cron_dump.php';
$cron_abs=$_SERVER["DOCUMENT_ROOT"].'/cron_dump.php';
// Allgemeine Texte
$l["no"]="no";
$l["yes"]="yes";
$l["activated"]="activated";
$l["not_activated"]="not activated";
$l["error"]="Error";
$l["added"]="added";
$l["first_run"]="Database found:";
$l["dbrefresh"]="refresh Database list";
$l["db"]="Database";
//Hilfe-Texte
$l["help_db"]="This is the list of all Databases";
$l["help_praefix"]="the prefix is a string at the beginning of a table name, which works as a filter.";
$l["help_zip"]="Compression with GZip - recommended state is 'activated'";
$l["help_budir"]="Here is the folder where backups are placed..";
$l["help_mail1"]="If activated, then after a backup, an email is sent with the backup as an attachment.";
$l["help_mail2"]="This is the receiver of the email.";
$l["help_mail3"]="This is the sender of the email.";
$l["help_ad1"]="If activated, then backup files will be deleted automatically.";
$l["help_ad2"]="the maximum number of days to keep backup file (for autodelete)";
$l["help_ad3"]="the maximum number of backup files (for autodelete)";
$l["help_lang"]="select your language";
$l["help_crontime"]="the time in seconds the cronscript will get on top";
$l["help_dumpz"]="this are the number of records which are being read simultaneously while backup";
$l["help_restorez"]="this are the number of records which are being read simultaneously while restore";
// Text in filemanagement.php
$l["fm_title"]="File management";
$l["fm_uploadfilerequest"]="please choose a file.";
$l["fm_uploadnotallowed1"]="This file type is not supported.";
$l["fm_uploadnotallowed2"]="Valid types are: *.gz and *.sql-files";
$l["fm_uploadmoveerror"]="Couldn't move selected file to the upload-directory.";
$l["fm_uploadfailed"]="The upload has failed!";
$l["fm_uploadfileexists"]="A file with the same name already exists !";
$l["fm_nofile"]="You didn't choose a file!";
$l["fm_delete1"]="The file ";
$l["fm_delete2"]=" was deleted successfully.";
$l["fm_delete3"]=" couldn't be deleted!";
$l["fm_filename"]="Filename";
$l["fm_filesize"]="Filesize";
$l["fm_nofilesfound"]="No file found.";
$l["fm_sizesum"]="Total size";
$l["fm_freespace"]="Free space on server";
$l["fm_choosefile"]="Choose a file to restore or delete:";
$l["fm_restore"]="Restore";
$l["fm_alertrestore1"]="Should the database";
$l["fm_alertrestore2"]="be restored with the records from the file";
$l["fm_alertrestore3"]=" ?";
$l["fm_delete"]="Delete";
$l["fm_askdelete1"]="Should the file ";
$l["fm_askdelete2"]=" really be deleted?";
$l["fm_askdelete3"]="Do you want autodelete to be executed with configured rules now?";
$l["fm_askdelete4"]="Do you want to delete all backup files?";
$l["fm_askdelete5"]="Do you want to delete all backup files with ".$dbname."_* ?";
$l["fm_deleteauto"]="execute autodelete manually";
$l["fm_deleteall"]="delete all backup files";
$l["fm_deleteallfilter"]="delete all with ".$dbname."_*";
$l["choose_file"]="chosen file:";
$l["fm_newdump"]="Or start a new backup:";
$l["fm_startdump"]="Start new backup";
$l["fm_upload"]="Or upload file:";
$l["fm_fileupload"]="upload file";
$l["fm_files"]="Files in the backup-directory";
$l["fm_autodel1"]="Autodelete: the following files were deleted because of maximum files setting:";
$l["fm_autodel2"]="Autodelete: the following files were deleted because of their date:";
$l["fm_dumpsettings"]="The following Database will be saved with the following [prefix]:<strong> $dbname [$dbpraefix]</strong>";
$l["cron_adress"]="Address of the cronscripts: <a href=\"".$cron_script."\" style=\"text-decoration:underline\">".$cron_script."</a>";
$l["cron_desc"]="The Cronscript doesn't use any screen output and use the configured parameters incl. mail and FTP-sending.<br>Please make sure that the Backup works correctly with your parameters before using the cronscript.<br>problems may occur with too few timelimit. See in the log how long the process has taken.<br>The Cronscript can be found on the server here: '".$cron_abs."' <br>IMPORTANT: The script works only with smaller databases!";
$l["DoCronButton"]="Do the Perl-Cronscript";
$l["cronperldesc"]="This only works if you have Perl and the rights to use it <br>The address of the script is ";
// Text in dump.php
$l["dump"]="Backup";
$l["dump_headline"]="Create backup...";
$l["gzip_compression"]="GZip-Compression is";
$l["on"]="on";
$l["off"]="off";
$l["saving_table"]="Saving table ";
$l["of"]="of";
$l["actual_table"]="Actual table";
$l["progress_table"]="Progress of table";
$l["progress_over_all"]="Overall Progress";
$l["entry"]="Entry";
$l["done"]="Done!";
$l["file"]="File";
$l["dump_successful"]=" was successfully created.";
$l["upto"]="up to";
$l["email_was_send"]="The dumpfile was successfully sent by email.";
$l["back_to_control"]="Continue";
$l["dump_filename"]="Backup-File: ";
$l["dump_notables"]="There are no tables found in the database '<b>".$dbname."</b>'.";
$l["dump_endergebnis1"]="The Backup saved ";
$l["dump_endergebnis2"]=" Tables with ";
$l["dump_endergebnis3"]=" records.<br>";
$l["mailerror"]="The sending of the Email has failed!";
$l["emailbody"]="In the Attachment you find the Backup of your MySQL-Database.\n\rBackup of Database '".$dbname."' from ".date("Y-m-d",time())."\n\r\n\rKind regards\n\r\n\rMySQLDump\n\rhttp://www.daniel-schlichtholz.de/board";
// Text in restore.php
$l["restore"]="Restore";
$l["restore_db"]="of database '<b>".$dbname."</b>' on '<b>".$dbhost."</b>'.<br>";
$l["restore_complete"]="</b> tables restore completed.";
$l["restore_run1"]="<br>up to now <b>";
$l["restore_run2"]="</b> records were successfully added.";
$l["restore_run3"]="<br>momentary the table '<b>";
$l["restore_run4"]="</b>' is receiving data.<br>";
$l["restore_run5"]="of the file finished.";
$l["restore_total_complete"]="<br><b>Congratulations.</b><br><br>The restoration of the database is done.<br>All data from the backup-file was re-restored..<br><br>Everything is done. :-)";
$l["db_no_connection"]="Connection to database failed!";
$l["db_select_error"]="<br>Error:<br>Selection of database '<b>".$dbname."</b>' failed!";
$l["file_open_error"]="Error: could not open file.";
$l["restore_entryerror"]="Error: command can't be done:";
// Text in config_overview.php - Status
$l["config_headline"]="Configuration";
$l["dump_dir"]="Dumpfile will be saved in directory '<b>".realpath($path)."</b>'.";
$l["saving_db"]="Database '<b>".$dbhost."/".$dbname."</b>' will be backed up.";
$l["send_mail"]="The dumpfile will be emailed to '<b>".$email[0]."</b>'.";
$l["no_send_mail"]="The dumpfile won't be mailed to anyone.";
$l["del_files"]="Files will be deleted automatically, when they are older than '<b>".$del_files."</b>' days.";
$l["no_del_files"]="There is no age limit for the backupfiles.";
$l["number_of_files"]="Files will be deleted automatically, when more than '<b>".$number_of_files."</b>' are stored in ".realpath($path).".";
$l["no_number_of_files"]="There is no limit to the number of backupfiles.";
$l["save_success"]="Configuration was saved.";
$l["save_error"]="Error - unable to save configuration!";
$l["config_databases"]="Databases";
$l["config_dumprestore"]="Backup / Restore";
$l["config_email"]="Email-Notification";
$l["config_autodelete"]="delete automatically";
$l["config_interface"]="Interface";
$l["config_cron"]="Crondump-Settings";
$l["cron_timelimit"]="Timelimit for Cronjob";
$l["praefix"]="Table-Prefix";
$l["config_askload"]="Do you want to override the actual settings with the default settings?";
$l["load"]="load default settings";
$l["load_success"]="The default settings were loaded.";
$l["cron_samedb"]="take database from configuration";
$l["cron_crondbindex"]="Database and Table-Prefix<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for the Cronjob";
$l["dump_zeilen"]="Number of records for backup";
$l["restore_zeilen"]="Number of records for restore";
// Text in config_overview.php - Formular
$l["gzip"]="GZip-compression";
$l["backup_dir"]="Directory for Backup files";
$l["db_host"]="Host name";
$l["saving_db_form"]="Database";
$l["db_user"]="User";
$l["db_pass"]="Password";
$l["send_mail_form"]="Send dumpfile as email";
$l["email_adress"]="Email address";
$l["email_subject"]="Sender address of the email";
$l["age_of_files"]="Delete by age of files (in days)";
$l["number_of_files_form"]="Delete by number of files";
$l["language"]="Language";
$l["list_db"]="Configured Databases:";
$l["save"]="Save";
$l["reset"]="Reset";
$l["autodelete"]="delete backups automatically";
$l["config_cron"]="Crondump-Settings";
$l["cron_timelimit"]="Timelimit for Cronjob";
$l["cron_samedb"]="take Database from Configuration";
$l["cron_crondbindex"]="Database for the Cronjob";
$l["help_ftptransfer"]="if activated, the Backupfile will be sent via FTP.";
$l["help_ftpserver"]="Address of the FTP-Server";
$l["help_ftpport"]="Port of the FTP-Server, standard: 21";
$l["help_ftpuser"]="enter username for FTP";
$l["help_ftppass"]="enter password for FTP";
$l["help_ftpdir"]="where is the upload-dir? enter path!";
$l["config_ftp"]="FTP-Transfer of Backupfile";
$l["ftp_transfer"]="FTP-Transfer";
$l["ftp_server"]="FTP Server";
$l["ftp_port"]="FTP Port";
$l["ftp_user"]="FTP User";
$l["ftp_pass"]="FTP Password";
$l["ftp_dir"]="FTP Upload-Dir";
// Sprachen
$l["lang_de"]="German";
$l["lang_en"]="English";
// Text aus menu.php
$l["load_database"]="Reload databases";
$l["home"]="Home";
$l["config"]="Config";
$l["file_manage"]="Management";
$l["log"]="Log";
$l["project"]="About this project";
$l["choose_db"]="choose Database";
$l["credits"]="Credits / Help";
//Log
$l["log_delete"]="delete Log";
// Texte aus info.php
$l["info_location"]="Your location is ";
$l["info_browser"]="Your Browser is";
$l["info_admin"]="The Server's administrator is ";
$l["info_databases"]="The following database(s) are on your server:";
$l["info_nodb"]="database doesn't exist.";
$l["info_table1"]="Table";
$l["info_table2"]="s";
$l["info_dbdetail"]="Detail-Info of database ";
$l["info_dbempty"]="The database is empty !";
$l["info_records"]="Records";
$l["info_size"]="Size";
$l["info_lastupdate"]="last Update";
$l["info_sum"]="total";
$l["info_rechte"]="Your Priviliges";
$l["clear_database"]="Clear database";
$l["delete_database"]="Delete database";
$l["create_database"]="Create new database:";
$l["button_create_database"]="Create";
$l["info_created"]="created";
$l["info_cleared"]="was cleared";
$l["info_deleted"]="was deleted";
$l["info_workdir"]="Working directory";
$l["info_backupdir"]="Backup directory";
$l["info_cgidir"]="CGI-Bin-Directory";
$l["info_cginr"]="does not exist or is forbidden";
$l["info_actdb"]="Actual Database";
$l["info_emptydb1"]="Should the Database";
$l["info_emptydb2"]=" be truncated? (Attention: All Data will be lost forever!)";
$l["info_killdb"]=" be deleted? (Attention: All Data will be lost forever!)";
?>

20
log.php Normale Datei
Datei anzeigen

@ -0,0 +1,20 @@
<?php
include("inc/header.php");
if(!file_exists($log_file)){DeleteLog();}
echo "<h3>Log</h3>";
//löschen
if(isset($_POST["kill"])) {DeleteLog();}
//anzeigen
echo '<div align="center"><form action="log.php" method="post"><table border="1"><tr>';
echo '<td class="tableheads_off" onmouseover="this.className=\'tableheads_on\'" onmouseout="this.className=\'tableheads_off\'" align="center">';
echo '<input class="Menubutton" type="submit" name="kill" value="'.$l["log_delete"].'">';
echo '</td></tr></table></form></div><br><pre>';
include($log_file);
echo '</pre>';
include("inc/footer.php");
?>

106
menu.php Normale Datei
Datei anzeigen

@ -0,0 +1,106 @@
<HTML>
<HEAD>
<TITLE>MySqlDump - Menu</TITLE>
<link rel="stylesheet" type="text/css" href="styles.css">
</HEAD>
<body bgcolor="#D0DCE0">
<?php
include("inc/functions.php");
if(!file_exists($config_file)) {
$msg.=$l["first_run"];
TestWorkDir();
$msg.=SetDefault();
}
include($config_file);
// Sprachfile laden
include("language/lang_".$lang.".php");
if($_GET["action"]=="dbrefresh") {
$msg.=SetDefault(true);
echo '<script language="JavaScript">parent.main.location.href=parent.main.location.href;</script>';
}
// Leerzeile
$row='<tr height="10"><td></td><tr>';
if(!isset($_POST[dbindex]))
{ $dbindex=0; }
else
{
$dbindex=$_POST[dbindex];
$db_selected_index=$dbindex;
SelectDB($dbindex);
@WriteParams();
echo '<script language="JavaScript">parent.main.location.href=parent.main.location.href;</script>';
}
if($msg!="") { ?>
<!-- <script language="JavaScript">
alert("<?php echo $msg;?>");
</script> -->
<?php
}
?>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><a href="http://www.daniel-schlichtholz.de/board" target="_blank">
<img src="images/mysqldump_logo.png" width="160" height="63" alt=""></a><br>Version <?php echo $version; ?><br>
<br><span class="small"><?php echo $l["choose_db"];?>:</span>
<form action="menu.php" method="post" style="margin:0px;padding:0px;">
<select name="dbindex" onchange="this.form.submit()">
<?php
$datenbanken=count($dbname_a);
for($i=0;$i<$datenbanken;$i++)
{
echo '<option value="'.$i.'" ';
if($i==$db_selected_index) echo 'SELECTED';
echo '>'.$dbname_a[$i].'</option>\n';
}
?>
</select><noscript><input type="submit" name="submit" value="OK" /></noscript></form>
<a class="small" href="menu.php?action=dbrefresh"><?php echo $l["load_database"] ?></a>
</td>
</tr>
<?php echo $row; ?>
<tr height="30">
<td class="tableheads_off" onmouseover="this.className='tableheads_on'" onmouseout="this.className='tableheads_off'" align="center">
<a href="index.php" target="main"><?php echo $l["home"]; ?></a></td>
</tr>
<?php echo $row; ?>
<tr height="30">
<td class="tableheads_off" onmouseover="this.className='tableheads_on'" onmouseout="this.className='tableheads_off'" align="center">
<a href="config_overview.php" target="main"><?php echo $l["config"]; ?></a></td>
</tr>
<?php echo $row; ?>
<tr height="30">
<td class="tableheads_off" onmouseover="this.className='tableheads_on'" onmouseout="this.className='tableheads_off'" align="center">
<a href="filemanagement.php?action=dump" target="main"><?php echo $l["dump"]; ?></a></td>
</tr>
<?php echo $row; ?>
<tr height="30">
<td class="tableheads_off" onmouseover="this.className='tableheads_on'" onmouseout="this.className='tableheads_off'" align="center">
<a href="filemanagement.php?action=restore" target="main"><?php echo $l["restore"]; ?></a></td>
</tr>
<?php echo $row; ?>
<tr height="30">
<td class="tableheads_off" onmouseover="this.className='tableheads_on'" onmouseout="this.className='tableheads_off'" align="center">
<a href="filemanagement.php?action=files" target="main"><?php echo $l["file_manage"]; ?></a></td>
</tr>
<?php echo $row; ?>
<tr height="30">
<td class="tableheads_off" onmouseover="this.className='tableheads_on'" onmouseout="this.className='tableheads_off'" align="center">
<a href="log.php" target="main"><?php echo $l["log"]; ?></a></td>
</tr>
<?php echo $row; ?>
<tr height="30">
<td class="tableheads_off" onmouseover="this.className='tableheads_on'" onmouseout="this.className='tableheads_off'" align="center">
<a href="<?php echo "language/help_".$lang; ?>.html" target="main"><?php echo $l["credits"]; ?></a>
</tr>
</BODY>
</HTML>

124
restore.php Normale Datei
Datei anzeigen

@ -0,0 +1,124 @@
<?php
echo '<html><head><META HTTP-EQUIV="Pragma" CONTENT="no-cache"><title>MySqlDump</title><link rel="stylesheet" type="text/css" href="styles.css"></head><body bgcolor="#F5F5F5">';
include("inc/functions_restore.php");
include($config_file);
$end=false; // Ende des Files erreicht?
$actual_table= (!empty($_GET['actual_table'])) ? $_GET['actual_table'] : "unbekannt";
$offset= (!empty($_GET['offset'])) ? $_GET['offset'] : 0;
$aufruf= (!empty($_GET['aufruf'])) ? $_GET['aufruf'] : 0;
$table_ready= (!empty($_GET['table_ready'])) ? $_GET['table_ready'] : 0;
if (isset($_POST["filename"])) $filename=$_POST["filename"];
if (isset($_GET["filename"])) $filename=$_GET["filename"];
//$gz=$compression;
// Tipp von pus234
$ext = strrchr($filename,'.');
if ($ext==".gz") $gz=1; ELSE $gz=0;
echo "<html>\n<title>MySql - DB-Restore</title>\n";
echo "<head>\n<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n";
echo "</head>\n";
echo "<body>\n\n";
// Datei oeffnen
$f = ($gz) ? gzopen($backup_path.$filename,"r") : fopen($backup_path.$filename,"r");
if ($f)
{
//nur am Anfang Logeintrag
if($offset==0) WriteLog("Start Restore '$filename'");
// Wenn GZ-Komprimierung aus ist, koennen wir mit Hilfe der Filegroesse
// ausrechnen, wieviel Prozent der Datei fertig sind.
// Bei GZ=1 geht es nicht, weil sich der Offset auf die ungepackte Groesse
// bezieht und somit nicht ins Verhältnis zur Dateigroesse gestellt werden kann.
if ($gz==0) $filegroesse=filesize($backup_path.$filename);
$sql_command=array();
// Dateizeiger an die richtige Stelle setzen
($gz) ? gzseek($f,$offset) : fseek($f,$offset);
// Jetzt basteln wir uns mal unsere Befehle zusammen...
$a=0;
WHILE ( ($a<$anzahl_zeilen_restore) && (!$end) )
{
$befehl="";
// Einen MySQL-Befehl holen. Solange, bis wir wirklich etwas sinnvolles haben...
WHILE ( ($befehl=="") && (!$end) ) { $befehl=get_sqlbefehl();}
if ($befehl=="end of file")
{
// Am Ende der Datei angekommen - Schleife verlassen
$end=true;
break;
}
else
{
$sql_command[$a]=$befehl;
$a++;
}
}
// Offset merken, um beim naechsten Seitenaufruf an die richtige Stelle zu springen
$offset= ($gz) ? gztell($f) : ftell($f);
if ($gz) gzclose($f); else fclose($f);
// Und jetzt koennen wir unsere MySQL-Befehle an die Datenbank schicken
$link = mysql_connect($dbhost, $dbuser, $dbpass) or die($l["db_no_connection"]);
mysql_select_db($dbname) or die($l["db_select_error"]);
for ($i=0;$i<sizeof($sql_command);$i++)
{
if ($sql_command[$i]!="end of file")
{
$res=mysql_query($sql_command[$i],$link);
// Bei MySQL-Fehlern sofort abbrechen und Info ausgeben
$meldung=mysql_error($link);
if ($meldung!="")
{
echo $l["error"].": ".$meldung."<br>";
echo $l["restore_entryerror"]."<br>".$sql_command[$i];
die();
}
}
}
if (!$end)
{
// Noch nicht fertig? - Dann Anzeige der Infos und Selbstaufruf durch Javascript
$aufruf=$aufruf+1;
if (!$gz) $prozent=($offset*100)/$filegroesse;
echo '<h3>'.$l["restore"].'</h3>';
echo $l["restore_db"];
echo "<br><b>";
if ($table_ready>0) echo $table_ready-1; else echo "0";
echo $l["restore_complete"];
echo $l["restore_run1"];
echo number_format(($aufruf*$anzahl_zeilen_restore)-$table_ready,0,",",".").$l["restore_run2"];
echo $l["restore_run3"].$actual_table.$l["restore_run4"];
if (!$gz) echo "<br><b>".number_format(sprintf("%.4f",$prozent),4,",",".")." %</b> ".$l["restore_run5"];
echo "<script =\"javascript\">self.location=\"$PHP_SELF?offset=";
echo $offset."&aufruf=".$aufruf."&actual_table=".$actual_table;
echo "&table_ready=".$table_ready."&filename=".urlencode($filename);
echo "\"</script>";
}
else
{
// Uff, geschafft! Jetzt darf die Leitung wieder abkuehlen. :-)
WriteLog("Restore '$filename' finished.");
echo '<h3>'.$l["restore"].'</h3>';
echo $l["restore_db"];
echo $l["restore_total_complete"];
}
}
else echo $backup_path.$filename." : ".$l["file_open_error"];
echo "\n</body>\n</html>\n";
?>

131
styles.css Normale Datei
Datei anzeigen

@ -0,0 +1,131 @@
body,td,tr
{
font-family:Verdana,Helvetica,sans-serif;
color:#111111;
margin:4px;
padding:4px;
font-size:12px;
}
h6 {
font-size:11px;
}
.small
{
font-size:10px;
}
p.meldung
{
font-size: 10pt;
color:#000000;
font-weight:normal;
}
p.fehler
{
font-size: 10pt;
color:green;
font-weight:bold;
}
p.warnung
{
font-size: 11pt;
color:red;
font-weight:normal;
}
p.desc
{
font-size: 9pt;
padding-left:20px;
}
a
{
font-family:Verdana,Helvetica,sans-serif;
color:#333333;
font-weight:normal;
font-style:normal;
font-size:12px;
text-decoration:none;
}
a:hover {
text-decoration: none;
color: #D00030;
}
form { padding:0px;
margin:0px;
}
td.tableheads_on {
border:1px solid black;
color:#ffffff;
background:#9f9f9f;
padding: 2px;
padding-left: 5px;
text-align:center;
border-spacing:0px;
}
td.tableheads_off {
border:1px solid black;
background:#cfcfcf;
padding: 2px;
padding-left: 5px;
text-align:center;
border-spacing:0px;
color:#ffffff;
}
img { border:0px; }
.hd {
FONT-SIZE: 11px;
color: #191970;
background:#ffffcc;
vertical-align: top;
text-align: center;
}
.hellblau {
background:#B4ECEF;
}
.Menubutton{
border: 0px;
color: blue;
/*background-color: white;
text-decoration: underline;*/
cursor: pointer;
}
.Menubutton2{
border: 0px;
color: blue;
FONT-SIZE: 10px;
/*background-color: white;
text-decoration: underline;*/
cursor: pointer;
}
.Formbutton{
border: thin solid Navy;
color: blue;
background-color: Silver;
cursor: pointer;
width:140px;
}
.Formbutton2{
border: thin solid Navy;
color: blue;
FONT-SIZE: 11px;
background-color: Silver;
cursor: pointer;
width:110px;
}
.scrollbox{
overflow: auto;
border: 1px solid silver;
width:250px;
height: 100px;
}

37
work/config.php Normale Datei
Datei anzeigen

@ -0,0 +1,37 @@
<?php
//////////////////////////////////////////////////////////
// erforderliche Variablen - bitte anpassen
// please enter your database-login
//////////////////////////////////////////////////////////
$dbhost = '62.75.192.145';
$dbuser = 'tonischeel';
$dbpass = 'tester';
/////////////////////////////////////////////////////////////////////////////////
// das wars schon - der Rest kann auch innerhalb des Programms geändert werden!
// that's it - you can change the other values from within the program!
/////////////////////////////////////////////////////////////////////////////////
$lang="de"; // de,en
$path="backup/";
$compression=1;
$send_mail=0;
$email[0]="admin@daniel-schlichtholz.de";
$email[1]="mein_board@weltweit.de";
$ftp_transfer=0;
$ftp_server=""; // Adresse des FTP-Servers. z.B. ftp.server.de
$ftp_port="21"; // Port des FTP-Servers. z.B. 21
$ftp_user=""; // Username
$ftp_pass=""; // Passwort
$ftp_dir=""; // der Pfad, wohin gesendet werden soll (der user muss in diesem Verzeichnis Upload-Rechte haben)
$auto_delete=0;
$del_files_after_days=0;
$max_backup_files=3;
$tabellen_praefix=""; // zum Beispiel /for example "phpBB_"
$anzahl_zeilen=2000;
$anzahl_zeilen_restore=1000;
$cron_timelimit=360;
$cron_samedb=0;
$cron_dbindex=0;
$work_chmod=0777;
?>

82
work/config/crondump.pl Normale Datei
Datei anzeigen

@ -0,0 +1,82 @@
#!/usr/bin/perl -w##################################################
# MySQLDump CronDump
# 2004, Steffen Kamper
##################################################
use DBI;
use Compress::Zlib ;
# Parameter
my $dbname="pharma_peter";
my $dbpraefix="";
my $dbuser="root";
my $dbpass="";
my $compression=1;
my $backup_path="C:\\PHP\\\\\\work\\backup\\";
my $logdatei="C:\\PHP\\\\\\work\\log\\mysqldump.log";
($Sekunden, $Minuten, $Stunden, $Monatstag, $Monat, $Jahr, $Wochentag, $Jahrestag, $Sommerzeit) = localtime(time);
$Jahr+=1900;
my $CTIME_String = localtime(time);
$time_stamp=sprintf("%02d",$Monatstag).".".sprintf("%02d",$Monat).".".$Jahr."_".sprintf("%02d",$Stunden)."_Uhr_".sprintf("%02d",$Minuten);
$sql_file=$backup_path.$dbname."_".$time_stamp."_crondump_perl.sql";
$sql_file_z=$backup_path.$dbname."_".$time_stamp."_crondump_perl.sql.gz";
$dt=sprintf("%02d",$Monatstag).".".sprintf("%02d",$Monat).".".$Jahr." ". sprintf("%02d",$Stunden).":".sprintf("%02d",$Minuten).":".sprintf("%02d",$Sekunden).": ";
if($compression==0){$dt.="Start Perl Cron-Dump '$sql_file'\n";}else{$dt.="Start Perl Cron-Dump '$sql_file_z' \n";}
open(DATEI,">>$logdatei");
print DATEI $dt;
close(DATEI);
open(DATEI,">$sql_file");
print DATEI "";
close(DATEI);
# Verbindung mit mSQL herstellen, $dbh ist das Database Handle
my $dbh = DBI->connect("DBI:mysql:".$dbname,$dbuser,$dbpass)|| die "Database connection not made: $DBI::errstr";
my $nl="\n";
my $next_sqlcommand="[n.!!e_w._!]";
my $sql_text="# Dump created on $CTIME_String by PERL Cron-Script\n";
$sql_text.="# Remember that you must use my restorescript in order to get a working DB\n";
$sql_text.="# because I use a special code to mark the end of a command.\n";
$sql_text.="# This is NOT compatible with other restorescripts!\n";
$sql_text.="# Anyway, have fun with this but use it at your own risk. :-)\n";
@tables=$dbh->tables;
foreach $tabelle (@tables) {
# definition auslesen
if($dbpraefix eq "" or ($dbpraefix ne "" && substr($tabelle,0,length($dbpraefix)) eq $dbpraefix)) {
$a="DROP TABLE IF EXISTS `".$tabelle."`;".$next_sqlcommand."\n";
$sql_text.=$a;
$sql_create="Show create table `".$tabelle."`";
$sth = $dbh->prepare($sql_create);
$sth->execute;
@ergebnis=$sth->fetchrow;
$sth->finish;
$a=$ergebnis[1].";".$next_sqlcommand."\n";
$sql_text.=$a;
# daten auslesen
$insert = "INSERT INTO `$tabelle` VALUES (";
$sql_daten="SELECT * FROM `".$tabelle."`";
$sth = $dbh->prepare($sql_daten);
$sth->execute;
while ( @ar=$sth->fetchrow)
{
$a=$insert;
foreach $inhalt(@ar)
{$a.= $dbh->quote($inhalt).", ";}
$a=substr($a,0, length($a)-2).");";
$sql_text.= $a.$next_sqlcommand."\n";
}#jetzt wegschreiben
if($compression==0){
open(DATEI,">>$sql_file");
print DATEI $sql_text;
close(DATEI);
} else {
$gz = gzopen($sql_file_z, "wb") or die "Cannot open : $gzerrno\n" ;
$gz->gzwrite($sql_text) or die "error writing: $gzerrno\n" ;
$gz->gzclose ;
} $sql_text="";
}}# Ende
($Sekunden, $Minuten, $Stunden, $Monatstag, $Monat, $Jahr, $Wochentag, $Jahrestag, $Sommerzeit) = localtime(time);
$Jahr+=1900;
$dt=sprintf("%02d",$Monatstag).".".sprintf("%02d",$Monat).".".sprintf("%02d",$Jahr)." ".sprintf("%02d",$Stunden).":".sprintf("%02d",$Minuten).":".sprintf("%02d",$Sekunden).": Perl Cron-Dump '$sql_file' finished.\n";
open(DATEI,">>$logdatei");
print DATEI $dt;
close(DATEI);
$dbh->disconnect();

45
work/config/parameter.php Normale Datei
Datei anzeigen

@ -0,0 +1,45 @@
<?php
$db_selected_index=4;
$dbhost="localhost";
$dbname="test";
$dbuser="root";
$dbpass="";
$dbname_a[0]="cdcol";
$dbpraefix_a[0]="";
$dbname_a[1]="icmag";
$dbpraefix_a[1]="";
$dbname_a[2]="mysql";
$dbpraefix_a[2]="";
$dbname_a[3]="mysqldump";
$dbpraefix_a[3]="";
$dbname_a[4]="pharma_peter";
$dbpraefix_a[4]="";
$dbname_a[5]="test";
$dbpraefix_a[5]="";
$dbname_a[6]="webauth";
$dbpraefix_a[6]="";
$compression=1;
$send_mail=0;
$email[0]="admin@daniel-schlichtholz.de";
$email[1]="mein_board@weltweit.de";
$auto_delete=0;
$del_files_after_days=0;
$max_backup_files=3;
$next_sqlcommand="[n.!!e_w._!]";
$anzahl_zeilen=2000;
$anzahl_zeilen_restore=1000;
$lang="de";
$dbpraefix="";
$dbcronpraefix="";
$cron_timelimit=360;
$cron_samedb=0;
$cron_dbindex=0;
$ftp_transfer="";
$ftp_server="";
$ftp_port="21";
$ftp_user="";
$ftp_pass="";
$ftp_dir="";
// Sprachfile laden
include("language/lang_de.php")
?>

18
work/configtoni.php Normale Datei
Datei anzeigen

@ -0,0 +1,18 @@
<?php
// phpBB 2.x auto-generated config file
// Do not change anything in this file!
$dbms = 'mysql4';
$dbhost = '62.75.192.145';
$dbname = 'daten1';
$dbuser = 'tonischeel';
$dbpasswd = 'tester';
$table_prefix = 'phpbb_';
define('PHPBB_INSTALLED', true);
?>

5
work/log/mysqldump.log Normale Datei
Datei anzeigen

@ -0,0 +1,5 @@
15.06.2004 04:41:29: default settings loaded.
15.06.2004 04:41:29: default settings loaded.
15.06.2004 04:41:29: default settings loaded.
15.06.2004 04:41:49: Start Dump 'pharma_peter_15.06.2004_16_Uhr_41'
15.06.2004 04:41:56: Dump 'pharma_peter_15.06.2004_16_Uhr_41.sql.gz' finished.

Binäre Datei nicht angezeigt.