sahilchadha / cakephp-fyluploader
Fyluploader plugin for CakePHP
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=5.4.16
- cakephp/cakephp: ~3.0
Requires (Dev)
This package is not auto-updated.
Last update: 2025-04-18 21:50:52 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 FyluploaderImport 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'); }); ```