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

后端 未结 3 1230
抹茶落季
抹茶落季 2021-01-17 22:24

I have a problem with the integration of KCFinder in ckeditor. The version of my ckeditor is 4.0 and the other (KCFinder version) is 2.52-dev.

Hi configure the confi

相关标签:
3条回答
  • 2021-01-17 23:00

    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.

    0 讨论(0)
  • 2021-01-17 23:06

    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.

    0 讨论(0)
  • 2021-01-17 23:12

    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.

    0 讨论(0)
提交回复
热议问题