Large files are skipped during multi-file downloads from the Web UI.
Original Question or Issue:
Large files are skipped during multi-file downloads from the Web UI.
Environment:
- Product - FileCloud Server
- Version - Any
- Platform - Any
Steps to Reproduce:
Error or Log Message:
Defect or Enhancement Number:
Cause:
A backend restriction prevents the inclusion of large files in ZIP files generated during multi-file downloads from the Web UI.
Resolution or Workaround:
Add the following definition to the `cloudconfig.php` file.
File location:
- Windows: `C:\xampp\htdocs\config\cloudconfig.php`
- Linux: `/var/www/html/config/cloudconfig.php`
Example (for a 10 GB maximum file size):
```
define('TONIDOCLOUD_DOWNLOADZIP_SKIPSIZE', '10737418240'); // 10GB
```
Notes: