PHPackages                             qu-modules/qu-plupload - 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. qu-modules/qu-plupload

ActiveModule

qu-modules/qu-plupload
======================

ZF2 Module for Plupload, PhpThumb and included Database

520.3k↓40.6%3[1 PRs](https://github.com/Celtico/QuPlupload/pulls)PHP

Since Apr 27Pushed 13y ago1 watchersCompare

[ Source](https://github.com/Celtico/QuPlupload)[ Packagist](https://packagist.org/packages/qu-modules/qu-plupload)[ RSS](/packages/qu-modules-qu-plupload/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

QuPlupload
==========

[](#quplupload)

ZF2 Module for Plupload, PhpThumb and included Database 0.0.1-dev

Screen Shots
============

[](#screen-shots)

[![QuDemo example screenshot](https://camo.githubusercontent.com/0ed02faf45a01116855cffe01dd89965ad1cf1e9dcb6729093294b7de0640f94/687474703a2f2f646962756978612e636f6d2f73637265656e2e706e67)](https://camo.githubusercontent.com/0ed02faf45a01116855cffe01dd89965ad1cf1e9dcb6729093294b7de0640f94/687474703a2f2f646962756978612e636f6d2f73637265656e2e706e67)

Requirements
============

[](#requirements)

- ZendSkeletonApplication
- ZfcBase
- WebinoImageThumb

Installation by Composer
========================

[](#installation-by-composer)

```
cd YourFolderProject/
php composer.phar require "qu-modules/qu-plupload":"dev-master"

```

Installation Drag and Drop
==========================

[](#installation-drag-and-drop)

- Drag a folder into modules folder or vendor folder

Next
====

[](#next)

- QuAdminCompleteApp provider assets
- Enable modules (QuPlupload/WebinoImageThumb) application.config.php and configure the routes module.config.php
- Folder permissions to upload

Integration
===========

[](#integration)

- Instance

```

    echo $this->PluploadHelpLoad($id);

```

```

 echo $this->PluploadHelp('uploader');
```

- Add table in your database

```
CREATE TABLE IF NOT EXISTS `qu-plupload` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `id_parent` int(11) NOT NULL,
  `model` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `tmp_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `error` int(255) NOT NULL,
  `size` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
```

Installation all application
============================

[](#installation-all-application)

```
cd my/project/dir
git clone git://github.com/zendframework/ZendSkeletonApplication.git
cd ZendSkeletonApplication
php composer.phar self-update
php composer.phar install
php composer.phar require "zf-commons/zfc-base":"dev-master"
php composer.phar require "webino/webino-image-thumb":"dev-master"
php composer.phar require "qu-modules/qu-plupload":"dev-master"

```

Config
======

[](#config)

- In global.php

```
return array(
    'db' => array(
        'driver' => 'Pdo',
        'dsn'            => 'mysql:dbname=qu-modules;hostname=localhost',
        'username'       => 'root',
        'password'       => '',
        'driver_options' => array(
            PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\''
        ),
    ),
    'service_manager' => array(
        'factories' => array(
            'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
        ),

    ),

);
```

- Enable modules (QuPlupload/WebinoImageThumb) application.config.php and configure the routes module.config.php
- Add database

```
CREATE DATABASE IF NOT EXISTS `qu-modules`;
use `qu-modules`;
CREATE TABLE IF NOT EXISTS `qu-plupload` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `id_parent` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `tmp_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `error` int(255) NOT NULL,
  `size` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1;
```

Virtual Host
============

[](#virtual-host)

Afterwards, set up a virtual host to point to the public/ directory of the project and you should be ready to go!

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

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/d551869ad761bf9fe741132be5f4e31de8f90984a0938656369eabbda012f47e?d=identicon)[qu](/maintainers/qu)

### Embed Badge

![Health badge](/badges/qu-modules-qu-plupload/health.svg)

```
[![Health](https://phpackages.com/badges/qu-modules-qu-plupload/health.svg)](https://phpackages.com/packages/qu-modules-qu-plupload)
```

PHPackages © 2026

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