响应式文件管理器 laravel dialog.php 错误
Posted
技术标签:
【中文标题】响应式文件管理器 laravel dialog.php 错误【英文标题】:responsive file manager laravel dialog.php error 【发布时间】:2018-12-27 10:12:51 【问题描述】:我在我的 laravel 项目中安装了响应式文件管理器。 但我得到这个错误
Warning: scandir(../source/,../source/): The system cannot find the file specified. (code: 2) in C:\Users\M0RT3Z4\Desktop\MyBlog\public\panel\ckeditor\filemanager\dialog.php on line 648
我想把我的文件上传到这个目录: 公共/文件管理器/
我在 ckeditor/filemanager/config/config.php 中更改了“upload_dir”:
'upload_dir' => getenv('APP_ROOT_PATH').'/public/filemanager/',
我该怎么办?
【问题讨论】:
您在../source/
某处编辑过吗?或者这是 RFM 的默认值?
@kerbholz 你是不是 currnet_path?我没有编辑 'current_path' => '../source/',
【参考方案1】:
我认为路径不对,需要在filemanager > config > config.php 中更改config.php 文件。
例如,您在公用文件夹中有“文件管理器文件夹”来存储您的图像:
upload_dir => '/filemanager/' (public/filemanager) current_path => '../../../../filemanager /' (public/panel/ckeditor/filemanager/dialog.php)
要缩略图,您可以在文件管理器中创建一个新文件夹
'thumbs_upload_dir'=>'/filemanager/thumbs/' (public/filemanager/thumbs) 'thumbs_base_path' => '../.. /../../filemanager/thumbs' (public/panel/ckeditor/filemanager/dialog.php)
记住你在文件dialog.php
【讨论】:
以上是关于响应式文件管理器 laravel dialog.php 错误的主要内容,如果未能解决你的问题,请参考以下文章