リンクをクリックするだけでDBバックアップ機能を実装しようとしています。私がやっていることは、私の関数をAppController
&関数に書いていることです...
public function backup($tables = '*') {
$this->layout = $this->autoLayout = $this->autoRender = false;
if ($tables == '*') {
$tables = array();
$result = $this->query('SHOW TABLES');
while ($row = mysql_fetch_row($result)) {
$tables[] = $row[0];
}
} else {
$tables = is_array($tables) ? $tables : explode(',', $tables);
}
foreach ($tables as $table) {
$result = $this->query('SELECT * FROM ' . $table);
$num_fields = mysql_num_fields($result);
$return.= 'DROP TABLE ' . $table . ';';
$row2 = mysql_fetch_row($this->query('SHOW CREATE TABLE ' . $table));
$return.= "\n\n" . $row2[1] . ";\n\n";
for ($i = 0; $i < $num_fields; $i++) {
while ($row = mysql_fetch_row($result)) {
$return.= 'INSERT INTO ' . $table . ' VALUES(';
for ($j = 0; $j < $num_fields; $j++) {
$row[$j] = addslashes($row[$j]);
$row[$j] = ereg_replace("\n", "\\n", $row[$j]);
if (isset($row[$j])) {
$return.= '"' . $row[$j] . '"';
} else {
$return.= '""';
}
if ($j < ($num_fields - 1)) {
$return.= ',';
}
}
$return.= ");\n";
}
}
$return.="\n\n\n";
}
$handle = fopen('db-backup-' . time() . '-' . (md5(implode(',', $tables))) . '.sql', 'w+');
fwrite($handle, $return);
fclose($handle);
}
ビューから、リンクをクリックすると目的のフォルダーにファイルが作成されるというリンクとして呼び出しています...
<li><?php echo $this->Html->link("Backup", "/app/backup/", array('class' => 'Backup tooltip')); ?></li>
それは私を致命的に終わらせます。助けてください。
変更あり:
public function admin_backup() {
$this->layout = $this->autoLayout = $this->autoRender = false;
$fileName = 'backUp_' . date("d-M-Y_h:i:s_") . time();
if (exec('mysqldump --user=root --password= --host=localhost demosite > ' . UPLOAD_FULL_BACKUP_PATH . $fileName . '.sql')) {
echo "Success";
} else {
echo "Failed";
}
}
私の新しい機能はUbuntuでは機能しますが、Windowsでは機能しません。助けてください。