对于我的网站,我需要将一个文件夹从我的 VPS 上的主帐户复制到(自动)新创建的 cPanel 帐户。我尝试使用以下代码(函数)通过 FTP 使用 PHP 执行此操作:
function ftp_sync ($dir) {
global $conn_id;
if ($dir != ".") {
if (ftp_chdir($conn_id, $dir) == false) {
echo ("Change Dir Failed: $dir<BR>\r\n");
return;
}
if (!(is_dir($dir)))
mkdir($dir);
chdir ($dir);
}
$contents = ftp_nlist($conn_id, ".");
foreach ($contents as $file) {
if ($file == '.' || $file == '..')
continue;
if (@ftp_chdir($conn_id, $file)) {
ftp_chdir ($conn_id, "..");
ftp_sync ($file);
}
else
ftp_get($conn_id, $file, $file, FTP_BINARY);
}
}
foreach (glob("*") as $file)
{
if(substr_count($file, ".") > 0)
{
$source_file = $file;
$destination_file = $file;
$upload = ftp_put($conn_id, "public_html/".$destination_file, $source_file, FTP_BINARY);
echo "<br />";
// check upload status
if (!$upload) {
echo "FTP upload has failed!";
} else {
echo "Uploaded $source_file to $ftp_server as $destination_file";
}
}else{
ftp_sync($dir);
}
}
ftp_chdir ($conn_id, "..");
chdir ("..");
}
但是它似乎不起作用(没有创建新目录并将其上传到)...有谁知道为什么这不起作用以及如何使它起作用?
提前致谢!
最好的问候, Skyfe。
编辑:我忘了提到我将脚本作为 cronjob 脚本运行,同时确保它具有从主服务器执行的所有权限。