Current File : //root/panel/modules/backupwizard/code/launchbackup.php |
<?php
include('../../../cnf/db.php');
include('../../../dryden/db/driver.class.php');
include('../../../dryden/debug/logger.class.php');
include('../../../dryden/runtime/dataobject.class.php');
include('../../../dryden/sys/versions.class.php');
include('../../../dryden/ctrl/options.class.php');
include('../../../dryden/ctrl/auth.class.php');
include('../../../dryden/ctrl/users.class.php');
include('../../../dryden/fs/director.class.php');
include('../../../inc/dbc.inc.php');
try {
$zdbh = new db_driver("mysql:host=" . $host . ";dbname=" . $dbname . "", $user, $pass);
} catch (PDOException $e) {
exit();
}
if (isset($_GET['id'])) {
$userid = $_GET['id'];
} else {
$userid = NULL;
}
session_start();
if ($_SESSION['zpuid'] == $userid) {
$currentuser = ctrl_users::GetUserDetail($userid);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Sentora > Back-Ups</title>
<link href="../../../etc/styles/<?php echo $currentuser['usertheme']; ?>/css/<?php echo $currentuser['usercss']; ?>.css" rel="stylesheet" type="text/css">
<script src="../assets/ajaxsbmt.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<body style="background: #F3F3F3;">
<div style="margin-left:20px;margin-right:20px;">
<div class="zform_wrapper">
<h2>Backup your hosting account files</h2>
<p>Your data is ready to be backed up. This proccess can take a lot of time, depending on your directory size. When finished you will be prompted to download your archive.</p>
<p>Current public directory size: <b><?php echo fs_director::ShowHumanFileSize(dirSize(ctrl_options::GetSystemOption('hosted_dir') . $currentuser['username'] . "/public_html")); ?></b></p>
<div id="BackupSubmit" style="height:100%;margin:auto;">
<form name="doBackup" action="response_normal.php" method="post" onsubmit="xmlhttpPost('dobackup.php?id=<?php echo $userid; ?>', 'doBackup', 'BackupResult', 'Compressing your data, please wait...<br><img src=\'../assets/bar.gif\'>'); return false;">
<table class="zform">
<tr valign="top">
<th nowrap="nowrap"><button class="fg-button ui-state-default ui-corner-all" id="SubmitBackup" type="submit" name="inBackUp" value="">Backup Now</button></th>
<td><input type="hidden" name="inDownLoad" id="inDownLoad" value="1" /></td>
</tr>
</table>
</form>
</div>
<div id="BackupResult" style="display:block;height:100%;margin:auto;">
Compressing your data, please wait...<br><img src='../assets/bar.gif'>
</div>
</div>
</div>
</body>
</html>
<?php } else {
?>
<body style="background: #F3F3F3;">
<h2>Unauthorized Access!</h2>
You have no permission to view this module.
</body>
<?php } ?>
<script type="text/javascript">
$(document).ready(function() {
$("#BackupResult").hide();
$("#SubmitBackup").click(function(){
$("#BackupSubmit").hide();
$("#BackupResult").show();
});
})
</script>
<?php
function dirSize($directory) {
$size = 0;
foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory)) as $file) {
$size+=$file->getSize();
}
return $size;
}
?>