megaads/laravel-filemanager 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

megaads/laravel-filemanager

最新稳定版本:1.0.4

Composer 安装命令:

composer require megaads/laravel-filemanager

包简介

A file upload/editor intended for use with Laravel 5 and CKEditor / TinyMCE

README 文档

README

Latest Stable Version Total Downloads License

v1.8 released

  • Please follow the intructions in upgrade document.
  • Important changes :
    • Fix Windows compatibility (utf-8 file names and folder names).
    • New feature : Copy & Crop. Thanks gwleuverink.
    • Config document is refactored.

Security

It is important to note that if you use your own routes you must protect your routes to Laravel-Filemanager in order to prevent unauthorized uploads to your server. Fortunately, Laravel makes this very easy.

If, for example, you want to ensure that only logged in users have the ability to access the Laravel-Filemanager, simply wrap the routes in a group, perhaps like this:

Route::group(['middleware' => 'auth'], function () {
    Route::get('/laravel-filemanager', '\Megaads\LaravelFilemanager\controllers\LfmController@show');
    Route::post('/laravel-filemanager/upload', '\Megaads\LaravelFilemanager\controllers\UploadController@upload');
    // list all lfm routes here...
});

This approach ensures that only authenticated users have access to the Laravel-Filemanager. If you are using Middleware or some other approach to enforce security, modify as needed.

If you use the laravel-filemanager default route, make sure the auth middleware (set in config/lfm.php) is enabled and functional.

v2.0 progress

  • (done) Unit test
  • (done) Integrate with Laravel Storage
  • (done) Multiple selection
  • Configurable disk of storage
  • (in progress) Responsive design
  • (in progress) Config refactoring
  • (done) JSON APIs
  • Move to folder function
  • Applying MIME icon generator
  • (done) Bootstrap 4 support

Contributors & Credits

Developers / Maintainers

Contributors

  • All contibutors from GitHub. (issues / PR)
  • @taswler the original author of this package.
  • Nathan for providing security suggestions.

Credits

统计信息

  • 总下载量: 17
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 5
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-04-24