teldrive
teldrive copied to clipboard
Issues with >100MB on Cloudflare
When uploading files larger than 100MB to TelDrive, a 413 error is thrown, which means the entity is too large. No such problems on NextCloud.
Nextcloud also divides the files into much smaller "parts", teldrive divides the files into at least 500MB packages each, which is then canceled by the limitation on the side of Cloudflare.
This problem is due to cloudflare settings
@Mak5er, I know, it's a paid feature
@Mak5er, I know, it's a paid feature
By the way, do you know of any analogues where this is free?
or maybe a work around for this is to limit client to server chunk upload to 100MB. but it's not possible since the minimum chunk size is 500.
Edit: I found out that the frontend actually handles the splitting, so you can just go to the site's localstorage (in dev tools) and set the splitFIleSize to 104857600
. It'll split files to 100 MB each allowing it to pass through cloudflare.