102 lines
3.7 KiB
PHP
102 lines
3.7 KiB
PHP
<?php
|
|
/*
|
|
+--------------------------------------------------------------------------
|
|
| CubeCart 4
|
|
| ========================================
|
|
| CubeCart is a registered trade mark of Devellion Limited
|
|
| Copyright Devellion Limited 2006. All rights reserved.
|
|
| Devellion Limited,
|
|
| 5 Bridge Street,
|
|
| Bishops Stortford,
|
|
| HERTFORDSHIRE.
|
|
| CM23 2JU
|
|
| UNITED KINGDOM
|
|
| http://www.devellion.com
|
|
| UK Private Limited Company No. 5323904
|
|
| ========================================
|
|
| Web: http://www.cubecart.com
|
|
| Email: info (at) cubecart (dot) com
|
|
| License Type: CubeCart is NOT Open Source Software and Limitations Apply
|
|
| Licence Info: http://www.cubecart.com/site/faq/license.php
|
|
+--------------------------------------------------------------------------
|
|
| backup.inc.php
|
|
| ========================================
|
|
| Backup MySQL DB
|
|
+--------------------------------------------------------------------------
|
|
*/
|
|
|
|
if(!defined('CC_INI_SET')){ die("Access Denied"); }
|
|
|
|
permission("maintenance","read",$halt=TRUE);
|
|
|
|
$lang = getLang("admin".CC_DS."admin_misc.inc.php");
|
|
|
|
if(isset($_POST['dbbackup'])){
|
|
|
|
if(!isset($_POST['drop']) && !isset($_POST['structure']) && !isset($_POST['data'])){
|
|
|
|
$msg = "<p class='warnText'>".$lang['admin']['misc_bkup_check_one']."</p>";
|
|
|
|
} elseif($_POST['drop']==1 && !isset($_POST['structure'])){
|
|
|
|
$msg = "<p class='warnText'>".$lang['admin']['misc_bkup_required_dep']."</p>";
|
|
|
|
} else {
|
|
|
|
$tables = $db->getRows("SHOW tables LIKE '".$glob['dbprefix']."%'");
|
|
|
|
$data = "-- --------------------------------------------------------\n-- CubeCart SQL Dump\n-- version ".$ini['ver']."\n-- http://www.cubecart.com\n-- \n-- Host: ".$glob['dbhost']."\n-- Generation Time: ".strftime($config['timeFormat'],time())."\n-- Server version: ".mysql_get_server_info()."\n-- PHP Version: ".phpversion()."\n-- \n-- Database: `".$glob['dbdatabase']."`\n";
|
|
|
|
foreach($tables as $table){
|
|
$data .= $db->sqldumptable($table[0],$_POST['drop'],$_POST['structure'],$_POST['data']);
|
|
}
|
|
|
|
$filename = $glob['dbdatabase']."_".date("dMy").".sql";
|
|
header('Pragma: private');
|
|
header('Cache-control: private, must-revalidate');
|
|
header("Content-Disposition: attachment; filename=".$filename);
|
|
header("Content-type: text/plain");
|
|
header("Content-type: application/octet-stream");
|
|
header("Content-length: ".strlen($data));
|
|
header("Content-Transfer-Encoding: binary");
|
|
echo $data;
|
|
exit;
|
|
}
|
|
|
|
}
|
|
|
|
require($glob['adminFolder'].CC_DS."includes".CC_DS."header.inc.php");
|
|
|
|
?>
|
|
<p class="pageTitle"><?php echo $lang['admin']['misc_bkup_title'];?></p>
|
|
<?php
|
|
if(isset($msg))
|
|
{
|
|
echo msg($msg);
|
|
}
|
|
?>
|
|
<form method="post" action="<?php echo $glob['adminFile']; ?>?_g=maintenance/backup" enctype="multipart/form-data" name="dbbackup">
|
|
<table width="100%" border="0" cellspacing="1" cellpadding="3" class="mainTable">
|
|
<tr>
|
|
<td class="tdTitle" colspan="2"><?php echo $lang['admin']['misc_bkup_title'];?></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="33%" class="tdText"><?php echo $lang['admin']['misc_bkup_inc_drop'];?></td>
|
|
<td class="tdText"><input name="drop" type="checkbox" value="1" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="33%" class="tdText"><?php echo $lang['admin']['misc_bkup_inc_structure'];?> </td>
|
|
<td class="tdText"><input type="checkbox" name="structure" value="1" checked="checked" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="33%" class="tdText"><?php echo $lang['admin']['misc_bkup_inc_data'];?> </td>
|
|
<td class="tdText"><input type="checkbox" name="data" value="1" checked="checked" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="33%" class="tdText"> </td>
|
|
<td class="tdText">
|
|
<input type="hidden" name="dbbackup" value="1" />
|
|
<input name="submit" type="submit" class="submit" value="<?php echo $lang['admin']['misc_download_now'];?>" /></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|