PHPackages                             alaxos/cakephp3-blueimp-upload - 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. alaxos/cakephp3-blueimp-upload

ActiveCakephp-plugin[File &amp; Storage](/categories/file-storage)

alaxos/cakephp3-blueimp-upload
==============================

CakePHP 3 plugin allowing to easily use the blueimp jQuery-File-Upload

3.7.2(7y ago)733.7k5[9 issues](https://github.com/alaxos/cakephp3-blueimp-upload/issues)MITPHP

Since Nov 20Pushed 7y ago5 watchersCompare

[ Source](https://github.com/alaxos/cakephp3-blueimp-upload)[ Packagist](https://packagist.org/packages/alaxos/cakephp3-blueimp-upload)[ Docs](https://github.com/alaxos/cakephp3-blueimp-upload)[ RSS](/packages/alaxos-cakephp3-blueimp-upload/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (3)Versions (14)Used By (0)

cakephp3-blueimp-upload
=======================

[](#cakephp3-blueimp-upload)

CakePHP3 plugin allowing to easily use the blueimp jQuery-File-Upload

General Features
----------------

[](#general-features)

- A helper allows to create an upload button with a progess bar
- A component manage the uploads requests (may be in multiple chunks)
- Each upload is stored into a datatable with the file infos
- Once the upload is over, do what you want in your application with the record and the uploaded file

Installation
------------

[](#installation)

### Adding the plugin

[](#adding-the-plugin)

You can easily install this plugin using composer as follows:

```
composer require alaxos/cakephp3-blueimp-upload
```

### Enabling the plugin

[](#enabling-the-plugin)

After adding the plugin remember to load it in your `config/bootstrap.php` file. The `Alaxos` plugin must be loaded as well.

```
Plugin::load('Alaxos', ['bootstrap' => true]);
Plugin::load('CakephpBlueimpUpload');
```

### Using the plugin

[](#using-the-plugin)

Template
--------

[](#template)

```
echo $this->BlueimpUpload->chunked('picture_upload', [
                                   'upload_url' => Router::url(['controller' => 'Posts', 'action' => 'upload_picture', $post->id])
                                ]);
```

Check for options in the `chunked()` method.

Controller
----------

[](#controller)

```
public $components = ['CakephpBlueimpUpload.Uploader'];
public $helpers    = ['CakephpBlueimpUpload.BlueimpUpload'];

public function upload_picture($id = null)
{
    ...

    $upload = $this->Uploader->upload($upload_folder, ['accepted_mimetypes' => ['image/jpeg', 'image/tiff', 'image/png']]);

    if($upload !== false)
    {
        if($upload->complete)
        {
           /*
            * The upload is over.
            * Do what you want with the $upload entity
            */
        }
    }

    ...
}

```

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity70

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~153 days

Recently: every ~14 days

Total

9

Last Release

2649d ago

Major Versions

1.1.0 → 3.5.02018-05-07

### Community

Maintainers

![](https://www.gravatar.com/avatar/8b63bd2525e8e0f7b7425b1be2b0c8722f4889ccd47bb43663f00b0cae885111?d=identicon)[alaxos](/maintainers/alaxos)

---

Top Contributors

[![alaxos](https://avatars.githubusercontent.com/u/1056290?v=4)](https://github.com/alaxos "alaxos (26 commits)")

---

Tags

cakephpuploadlibrariesblueimpjquery-file-upload

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/alaxos-cakephp3-blueimp-upload/health.svg)

```
[![Health](https://phpackages.com/badges/alaxos-cakephp3-blueimp-upload/health.svg)](https://phpackages.com/packages/alaxos-cakephp3-blueimp-upload)
```

###  Alternatives

[oneup/uploader-bundle

This Symfony bundle provides a server implementation for handling single and multiple file uploads using either FineUploader, jQuery File Uploader, YUI3 Uploader, Uploadify, FancyUpload, MooUpload, Plupload or Dropzone. Features include chunked uploads, orphanages, Gaufrette and Flysystem support.

6196.6M35](/packages/oneup-uploader-bundle)[cakephp/bake

Bake plugin for CakePHP

11212.0M202](/packages/cakephp-bake)[dereuromark/cakephp-queue

The Queue plugin for CakePHP provides deferred task execution.

308954.9k25](/packages/dereuromark-cakephp-queue)[dereuromark/cakephp-ide-helper

CakePHP IdeHelper Plugin to improve auto-completion

1882.3M44](/packages/dereuromark-cakephp-ide-helper)[dereuromark/cakephp-tinyauth

A CakePHP plugin to handle user authentication and authorization the easy way.

131240.2k13](/packages/dereuromark-cakephp-tinyauth)[dereuromark/cakephp-file-storage

This plugin is giving you the possibility to store files in virtually any kind of storage backend. This plugin is wrapping the Gaufrette library (https://github.com/KnpLabs/Gaufrette) library in a CakePHP fashion and provides a simple way to use the storage adapters through the StorageManager class.

106.1k](/packages/dereuromark-cakephp-file-storage)

PHPackages © 2026

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