I am trying to download a 7GB file using php-curl however it seems that it will only download the first 2GB.
There doesn't seem to be any documentation or talk about this.
Anyone have any ideas?
|
|
Here are two useful links on the topic: Downloading a large file using curl How to partially download a remote file with cURL? Basically you may have two problems here:
There are also file sytem limitations and what not so check your file system type as mentioned by @ajreal (i.e. FAT32 has a limit of 4GB, 99% chance your not using FAT but still it is an example). As the OP found out it was do with the DB:
|
|||||||||||
|
|
Assuming your file system can handle files larger than 2GB you can try using
Also make sure you set an appropriate time limit (with |
|||
|
|