Fyluploader plugin for CakePHP
It's a simple and effective file uploading plugin for CakePHP 3.x, (*1)
Installation
Download the zip file,extract it and put the package in plugins directory.
, (*2)
Important:
Rename the downloaded folder to Fyluploader, (*3)
Import the SQL file into MySQL available in this plugin , (*4)
In config/bootstrap.php
Loads a single plugin
Plugin::load('Fyluploader');, (*5)
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"
}
}
, (*6)
In plugins\Fyluploader\config\rotes.php :
<?php
use Cake\Routing\Router;, (*7)
Router::plugin('Fyluploader', function ($routes) {
$routes->fallbacks('DashedRoute');
});
```, (*8)