Installation

The only officialy supported method of installing this plugin is via composer.

Using Composer

View on Packagist, and copy the json snippet for the latest version into your project’s composer.json.

composer require josegonzalez/cakephp-upload

Enable plugin

You need to enable the plugin your config/bootstrap.php file:

<?php
Plugin::load('Josegonzalez/Upload');

If you are already using Plugin::loadAll();, then this is not necessary.