I am working with a form that allows me to upload files via a local folder and FTP. So I want to move files over ftp (which already works)
Çünkü arka planda çalıştırmak için bu süreci seçti performans nedenlerinden yüzden nfcftpput kullanın (linux)
In CLI the following command works perfectly: ncftpput-b-u name -p password -P 1980 127.0.0.1 /upload/ /home/Downloads/upload.zip
(Knowing that the b-parameter triggers background process) But if I run it via PHP it does not work (without the-b parameter it does)
PHP kodu:
$cmd = "ncftpput -b -u name -p password -P 1980 127.0.0.1 /upload/ /home/Downloads/upload.zip";
$return = exec($cmd);