KCFinder 'You do not have permission to list the files.'

那年仲夏 提交于 2019-12-01 16:52:23
user2376074

I think the problem is that you also need to configure the setting in KCFinder. You need to locate config.php in KCFinder folder, for this:

'disabled' => true

change it to false then you should be able to upload file to your server.

Rachid Benbrik

Is not the best way for secure raison, because to disable it inside config.php allow to all user to access it, the best way add the little code bellow inside the php file wich include your textarea :

$_SESSION['KCFINDER'] = array(
    'disabled' => false
);

Hopes that help.

From the kcfinder website: By default KCFinder is disabled. If you just set this setting to false all public visitors can upload and manage files on your web site. It is recommended to override this setting with sesssion configuration so only authenticated users can use KCFinder.

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