Skip to main content

All Questions

Tagged with
0 votes
1 answer
238 views

R - Cannot Download gz file from FTP Server

I have been trying for three days now to download a file from an FTP server with R without a result. I have really tried everything and read all questions but still cannot manage. The url is: u <- &...
user9396820's user avatar
3 votes
1 answer
840 views

Having trouble downloading a file through FTP. (wget, curl, aria2c)

I am having trouble downloading a file through FTP (ftp://ftp.pride.ebi.ac.uk/pride/data/archive/2017/11/PXD007635), this FTP site doesn't require any credential and I can download it directly by ...
frankligy123's user avatar
3 votes
1 answer
519 views

Download only the header of binary files from an FTP

I have access to a public ftp server that contains several thousands of large binary file. I'm able to download all the files of a given folder with wget but this is time consuming and takes a lot of ...
JRR's user avatar
  • 3,183
1 vote
1 answer
774 views

download of zipped file from CDC ftp site with R gets corrupted no matter what download method used

trying to download this zipped file from the cdc with R. it works fine from firefox.. so i tried setInternet2(TRUE) right away, but that still didn't work.. in every case below, i get: z<-...
Anthony Damico's user avatar
0 votes
1 answer
265 views

Bus error on curl_multi_close() call

PHP-script is for downloading files from FTP-servers. But when I close multi-handler, php cli terminal show me "Bus error" and terminate process. Which lines can cause this error? How to fix it? ...
mikatakana's user avatar
0 votes
1 answer
2k views

Download large file to server using php with any method

First try: I have used this code: (thanks to user580950 for this answer) // define some variables $local_file = 'archive.tar'; $server_file = '/path/to/archive.tar'; $ftp_server = "1.2.3.4"; $...
Mohammad Naji's user avatar
2 votes
2 answers
1k views

Error downloading file via cURL

I want to download a file from an ftp server via cURL. Here is my function: function getFile($remotefolder, $remotefile, $localfile) { $url = "ftp://xxxxx.de/" . $remotefolder . "/" . $...
DM1986's user avatar
  • 33
2 votes
3 answers
628 views

Download a remote file (2GB) using PHP

I have a large file (2GB) and I want to download it to server A from server B with PHP. I tried both FTP and CURL with PHP but without success. it returns a TIMEOUT REQUEST error even if I ...
aniss.bouraba's user avatar
3 votes
2 answers
2k views

Download a file that is forced as attachment with PHP

I am trying to download a file with PHP from an FTP server which i can access from http too. For example: FTP://username:[email protected]/file_name_here.gz. The file is forced as an attachment ...
basdog22's user avatar
  • 149