我正在编写一个脚本,它将所有 zpanel 备份上传到我的 Amazon S3 帐户。如果我不使用 zpanel 备份并创建和上传我使用 CronJob 创建的备份,它就可以工作。
我无法上传 zpanel 备份的原因是我无法找到使用 php opendir 函数访问“备份”目录的方法。
我知道备份文件夹的绝对路径。看起来,这条绝对路径不适用于opendir()
我用过:opendir('var/zpanel/hostdata/my_username/backups/')
而且它不会起作用。现在,如果我想使用相对路径,我也无法到达那里。
那么,有没有办法可以将 zPanel Backups 目录移动到 public_html 文件夹内的某个位置?或者,可以访问备份文件夹的 Web URL?Ajaxplorer 可以到达那里,为什么我不能?
如果不可能,如果有人能教我一种创建备份的方法,就像 zPanel 一样(所有 DB + public_html 文件夹中的所有内容),我将不胜感激。
代码看起来像这样
require_once('S3.php');
// Enter your amazon s3 creadentials
$s3 = new S3('xxxxx', 'xxxxx');
if ($handle = opendir('var/zpanel/hostdata/my_username/backups/')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
//echo "okay";
echo $file; exit;
if ($s3->putObjectFile("backups/$file", "my_basket", "$file", S3::ACL_PUBLIC_READ)) {
echo "<strong>We successfully uploaded your file.<br /></strong>";
//this will delete the file from your server after upload
//if (file_exists($baseurl . '/' . $file)) { unlink ($baseurl . '/' . $file); }
}else{
echo "<strong>Something went wrong while uploading your file... sorry.</strong>";
}
}else{
echo "No file found here ".$root;
}
}
closedir($handle);
}
提前非常感谢!