iutbay / yii2-kcfinder

KCFinder for Yii2
22 stars 19 forks source link

kcfinder don't have permission browse server #14

Open mramdhani opened 8 years ago

mramdhani commented 8 years ago

kcfinder don't have permission browse server when click browse server and i have example kcfinder url

http://localhost/smapiecibadak/assets/5cb98587/browse.php?opener=ckeditor&type=files&CKEditor=blog-long_text&CKEditorFuncNum=21&langCode=en

what it's correctly ?

quanganh1202 commented 8 years ago

I got this prolem too. Anyone help?

condesignpoland commented 7 years ago

This is session issue I guess...

johnef commented 7 years ago

You need to locate config.php in KCFinder folder, for this: 'disabled' => true change it to false

condesignpoland commented 7 years ago

You should not do that definetelly, because everyone will have access to your files. You must integrate Yii session with KCFinder.

Abylaikhan commented 7 years ago

i delete session in config file in folder frontend and backend. it's works, but i don`t know. is it correct?

amift commented 6 years ago

add this code on the top of your php files

session_start();  
$_SESSION['KCFINDER'] = array(
    'disabled' => false
);
Harley819 commented 5 years ago

You need to locate config.php in KCFinder folder, for this: 'disabled' => true change it to false

Not Wroking.