Background upload in PHP
        Posted  
        
            by Robijntje007
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Robijntje007
        
        
        
        Published on 2010-05-25T10:03:34Z
        Indexed on 
            2010/05/31
            7:32 UTC
        
        
        Read the original article
        Hit count: 261
        
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)
Because of performance reasons I chose this process to run in the background so I use nfcftpput (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 code:
$cmd = "ncftpput -b -u name -p password -P 1980 127.0.0.1 /upload/ /home/Downloads/upload.zip";
$return = exec($cmd);
© Stack Overflow or respective owner