Download the PHP package micschk/silverstripe-chunkeduploadfield without Composer
On this page you can find all versions of the php package micschk/silverstripe-chunkeduploadfield. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download micschk/silverstripe-chunkeduploadfield
More information about micschk/silverstripe-chunkeduploadfield
Files in micschk/silverstripe-chunkeduploadfield
Package silverstripe-chunkeduploadfield
Short Description A Silverstripe UploadField that supports (very) large uploads without fiddling with php.ini
License MIT
Informations about the package silverstripe-chunkeduploadfield
This module will not be upgraded to Silverstripe 4
The FilePond module is recommended as a replacement.
Thank you for including this module in your projects over the past seven years.
It's always cool to see your work being used in well over 5000 projects :-)
(packagist data)
silverstripe-chunkeduploadfield
A Silverstripe UploadField that supports (very) large uploads without fiddling with php.ini
Silverstripe 3 info
The ChunkedUploadField hooks into the jQuery-File-Upload module used internally by the standard UploadField. It sets some extra config and hooks into the upload action to add support for uploading large files in chunks.
A video file upload example:
By default, the chunk size is set to 90% of php's upload_max_filesize or post_max_size (whichever is smaller). It can be set to a different size:
How do chunked uploads work?
The maxChunkSize is auto-set to ca 90% of the upload size permitted by PHP. The File Upload plugin splits up files with a file size bigger than maxChunkSize into multiple blobs and submits each of these blobs to the upload url in sequential order. After the full file has been received and reassembled, the upload handling is passed off to the regular UploadField.