sahilchadha/cakephp-fyluploader

There is no license information available for the latest version (1.0) of this package.

Fyluploader plugin for CakePHP

1.0 2015-11-13 12:04 UTC

This package is not auto-updated.

Last update: 2024-05-03 17:29:23 UTC


README

It's a simple and effective file uploading plugin for CakePHP 3.x

Installation


Download the zip file,extract it and put the package in plugins directory.

Important:

Rename the downloaded folder to Fyluploader

Import the SQL file into MySQL available in this plugin

In config/bootstrap.php
Loads a single plugin
Plugin::load('Fyluploader');


you may need to modify your application’s composer.json file to contain the following information:
"autoload": {
"psr-4": {
(...)
"Fyluploader\": "./plugins/Fyluploader/src",
}
}
"autoload-dev": {
"psr-4": {
(...)
"Fyluploader\Test\": "./plugins/Fyluploader/tests"
}
}

In plugins\Fyluploader\config\rotes.php :

fallbacks('DashedRoute'); }); ```