php - ftp_get - Warning: ftp_get(): Opening BINARY mode data connection

后端 未结 5 492
自闭症患者
自闭症患者 2021-01-13 07:04

I\'m trying to write a script that will download files from an FTP server. They\'re all fairly large (nearly 2GB each). The script starts running, but then eventually term

5条回答
  •  花落未央
    2021-01-13 07:39

    I was having a similar problem and using the following solved it for me.

    ftp_pasv($conn_id, TRUE);  
    

提交回复
热议问题