Total Size Of Requested Files Is Too Large For Ziponthefly Site

Creating a ZIP without compression (store mode) is faster and uses less memory. In PHP, you can change:

$zip->addFile($file, $localName);
// Instead of:
$zip->addFile($file, $localName, ZippingMethod::STORE); // Not standard; use setCompressionName()

However, few plugins expose this option. You may need to modify the plugin’s core code.

If you need to download the files immediately without changing server settings, use these strategies: total size of requested files is too large for ziponthefly

1. Download in Batches (Chunking) Instead of selecting the entire folder (e.g., public_html), select sub-folders or groups of files individually.

2. Exclude Large Media Files Often, the size limit is breached because of a few massive video files or high-resolution images. Creating a ZIP without compression (store mode) is

3. Use an FTP/SFTP Client This is the most robust solution. Web-based file managers have limits; FTP clients (like FileZilla, WinSCP, or Cyberduck) generally do not.


Sync your server files to Amazon S3, Google Cloud Storage, or Backblaze B2. Then generate pre-signed URLs for multiple objects. The user downloads directly from the cloud—your server never handles the ZIP creation. However, few plugins expose this option

Example workflow:

You’re most likely to see this message in:

For power users, provide direct FTP credentials to a folder. They can use a desktop FTP client (FileZilla, Cyberduck) to download whole folders natively—no web ZIP required.