Removed maximum upload limit imposed by php.ini
With the introduction of chunked uploads, Chevereto is no longer constrained by
For example, it won't matter if your server/network hard-limits uploads to 2MB because Chevereto will use that size to split the file in chunks of that size, carrying the upload process of any given size.
With the introduction of chunked uploads, Chevereto is no longer constrained by
php.ini
settings for file size limits. In other words, there's no longer a hard cap on maximum file upload size. Chevereto will try to use CHEVERETO_CHUNK_UPLOAD_SIZE
as max chunk size, will also match your server setting if needed.For example, it won't matter if your server/network hard-limits uploads to 2MB because Chevereto will use that size to split the file in chunks of that size, carrying the upload process of any given size.