我正在为我的项目使用tinyMCE,我想将filemanager插件集成到它也提到我正在使用localhost(xampp)。插件和上传目录的文件夹结构:
xampp/htdocs/tutorials/js/tinymce/plugins/filemanager
和
xampp/htdocs/tutorials/js/tinymce/images
$base_url="http://localhost/tutorials"; //url base of site if you want only relative url leave empty
$upload_dir = './js/tinymce/images/'; // path from base_url to upload base dir
$current_path = '../../../../images/'; // relative path from filemanager folder to upload files folder
但是当我点击tinymce编辑器中的filemanager按钮时,文件管理器 弹出显示错误
有错误!根文件夹不存在。
答案 0 :(得分:0)
查看此评论和您提供的路径,您应该只备份两个级别,而不是四个级别?另外,您确定应该使用/
结束吗?
$current_path = '../../images/'; // relative path from filemanager folder to upload files folder