我需要将一个帐户转移到另一台服务器。最大的问题是:一个有Cpanel(好!),另一个有自定义品牌面板(坏=()。所以,我想:用PHP转移怎么样?(如何?不知道)
我知道服务器支持 exec,并且我有 Jailsshell (SSH),但是 wget 被禁用。不知道其他限制。想法?
我试过这个:
function ftp($host, $username, $password, $local, $remote) {
$execTime = 7000;
ini_set('max_execution_time', $execTime);
set_time_limit($execTime);
$c = ftp_connect($host);
ftp_set_option($c, FTP_TIMEOUT_SEC, $execTime);
ftp_login($c, $username, $password) or die("Can't login");
ftp_get($c, $local, $remote, FTP_ASCII);
ftp_close($c) or die("Can't close");
}
但是获取请求超时..