@roldanperez92 , that seems to be a huge file. Maybe you will need to try one of the workarounds discussed previously which should help you download large files:
Dear all,
I would like to share with you an Excel Macro to download photos from your project with the ability to select a range of photos to be downloaded.
The macro has been tested on OCHA and HHI servers by using Excel 2019, Windows 10.
Please let me know if the macro works on your projects and any suggestions for improvement.
Download the macro and follow the instructions.
Here is the updated link:
https://mega.nz/file/X6RkBRya#r_uu3lacrPatm0KGL6nRm9l7123QE1vvggvOQcNz318
Best,
Yasser
This one too …
Hi @Suhsant ,
My advise would be as follows:
Ensure that you are able to download the xls dataset from your user account. If you are able to download the same then you should be able to download the Media Attachment (ZIP) via the Free Download Manager.
While downloading the Media Attachment (ZIP) via the Free Download Manager first download the Media Attachment (ZIP) as shown in the image below.
[Image 101]
Then hover the mouse on the downloaded link and right click your mouse. Select Copy …
And this one too …
Hello @ashish7654 , I had same issue of downloading large attachment file. I solved through api request. using curl … This is the script that gets the attachment
$ch = curl_init();
//your username and password for authentication
$username = ‘’;
$password = '’;
$authorization = “Authorization: Token your-token-api-here”;
curl_setopt($ch, CURLOPT_HTTPHEADER, array(‘Content-Type: application/json’, $authorization));
curl_setopt($ch, CURLOPT_USERPWD, “$username:$password”);
// set url
curl_…