PHPackages                             silverstripers/chunkuploader - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. silverstripers/chunkuploader

ActiveSilverstripe-module[File &amp; Storage](/categories/file-storage)

silverstripers/chunkuploader
============================

Chunkupload, fast, simultaneous uploads

081PHP

Since Oct 9Pushed 8y ago1 watchersCompare

[ Source](https://github.com/HelloBetterLTD/chunkuploader)[ Packagist](https://packagist.org/packages/silverstripers/chunkuploader)[ RSS](/packages/silverstripers-chunkuploader/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

ChunkUploader - multiple, simultaneous uploads.
===============================================

[](#chunkuploader---multiple-simultaneous-uploads)

ChunkUploader field is a SilverStripe form field type, which can be used to upload large files faster. Its built with [Resumable.js](http://www.resumablejs.com/) and supports multi file uploading.

### Requirements

[](#requirements)

1. SilverStripe 3.6.\*
2. [Flow PHP Server](https://github.com/flowjs/flow-php-server)

### Usage

[](#usage)

Install via composer.

```
composer require silverstripers/chunkuploader dev-master

```

### Using in forms

[](#using-in-forms)

In the example below, we are creating a form with the chunk uploader.

```
public function Form()
{
    $form = new Form($this, 'Form', new FieldList(
        ChunkUploadField::create('Files')
            ->setRightTitle('Upload your files here.')
    ), new FieldList(
        FormAction::create('doUpload')
    ), new RequiredFields());
    return $form;
}

public function doUpload($data, $form)
{
    $files = $data['Files']
}

```

`$data['Files]'` returns a CSV list of file IDs.

[![Form](https://camo.githubusercontent.com/1e8f074bc4fd1586eaa12c39a331b2f26c3a41f777498693d3cb62e70f81579f/687474703a2f2f692e6375626575706c6f61642e636f6d2f36626862325a2e706e67)](https://camo.githubusercontent.com/1e8f074bc4fd1586eaa12c39a331b2f26c3a41f777498693d3cb62e70f81579f/687474703a2f2f692e6375626575706c6f61642e636f6d2f36626862325a2e706e67)

The above will make a form list this screenshot.

### Todo:

[](#todo)

1. Use saved uploads with set value
2. Control number of files for uploading

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/6a6fa4ab2a74fee1ac574bf15dd3ce1f38f31fee60c186b4b24ee8d7e3090b52?d=identicon)[silverstripers](/maintainers/silverstripers)

---

Top Contributors

[![fonsekaean](https://avatars.githubusercontent.com/u/143939?v=4)](https://github.com/fonsekaean "fonsekaean (6 commits)")

### Embed Badge

![Health badge](/badges/silverstripers-chunkuploader/health.svg)

```
[![Health](https://phpackages.com/badges/silverstripers-chunkuploader/health.svg)](https://phpackages.com/packages/silverstripers-chunkuploader)
```

###  Alternatives

[knplabs/gaufrette

PHP library that provides a filesystem abstraction layer

2.5k39.8M123](/packages/knplabs-gaufrette)[google/cloud-storage

Cloud Storage Client for PHP

34390.8M123](/packages/google-cloud-storage)[illuminate/filesystem

The Illuminate Filesystem package.

15261.6M2.6k](/packages/illuminate-filesystem)[superbalist/flysystem-google-storage

Flysystem adapter for Google Cloud Storage

26320.6M30](/packages/superbalist-flysystem-google-storage)[creocoder/yii2-flysystem

The flysystem extension for the Yii framework

2931.7M61](/packages/creocoder-yii2-flysystem)[flowjs/flow-php-server

PHP library for handling chunk uploads. Works with flow.js html5 file uploads.

2451.6M15](/packages/flowjs-flow-php-server)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
