我需要將一個帳戶轉移到不同的服務器。最大的問題是:一個有交友(好!)和其他定製品牌面板(差=()所以,我鑫卡特:??如何用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");
}
,但得到的請求超時..
你認爲要壓縮一切,並用file_get_contents()&file_put_contents()創建一個php文件嗎? – HamZa
@HamZaDzCyberDeV不起作用。看到我更新的問題。 –
嘗試在你的代碼的頂部這個:ini_set('max_execution_time',0); – HamZa