responsivefilemanager won't work and give no errrors even though everything is setup correctly

亡梦爱人 提交于 2021-01-29 20:10:45

问题


So the thing here is that the files do get uploaded and the upload process perfectly works & It also displays the number of files available but I still won't display them. Here is a screenshot

Here is my js code:

<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/dashboard.js"></script>

<script src="plugins/tinymce/tinymce.min.js"></script>
            
<script>
        tinymce.init({
            selector: "textarea",
            plugins: [
                "advlist autolink link image lists charmap print preview hr anchor pagebreak",
                "searchreplace wordcount visualblocks visualchars insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons paste textcolor responsivefilemanager code codesample"
            ],
            toolbar1: "undo redo | bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | styleselect",
            toolbar2: "| responsivefilemanager | link unlink anchor | image media | codesample | forecolor backcolor  | print preview code ",
            image_advtab: true,
            branding: false,

            external_filemanager_path: "plugins/tinymce/plugins/filemanager/",
            filemanager_title: "Filemanager for projecthub",
            external_plugins: {
                "filemanager": "plugins/filemanager/plugin.min.js"
            }
        });
    </script>

I have my display_error php.ini set to 1 but It still won't give any error more show any files. Any help would be appreciated, Regards.

Also, my question isn't a duplicate of this one: responsivefilemanager9 internal server error I tried the solution on that question but It doesn't work.

In fact, this question isn't a duplicate at all I checked out all of the similar questions but they don't seem to work out for me.

Any help would be appreciated, Regards.

来源:https://stackoverflow.com/questions/63538160/responsivefilemanager-wont-work-and-give-no-errrors-even-though-everything-is-s

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!