2016-11-17 29 views
6

私はckeditorでkcfinderを使用しています。 kcfinderの設定ファイルにdisabled to falseを変化させても問題はないが、サーバーを参照する権限がありません。

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

でそれを上書きするには私はあなたがサーバーを参照する権限がありません示すのをポップアップthere.Message &アップロードファイルを閲覧することができません。 (フレームワークCI 3.xを使用)

+0

のbrowse.phpにこのコードを入れ、[この回答](http://stackoverflow.com/questionsを見てみましょう/ 13760367/kcfinder-you-do-not-have-have-have-have-to-the-list-the-files?rq = 1) –

+0

可能な複製: http://stackoverflow.com/questions/13760367/kcfinder-you-do -not-have-permission-to-list-the-file?rq = 1 – Ronald

答えて

7

これを試してください。メインのindex.phpファイルを次のように変更

//$system_path = 'system'; 
$system_path = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'system'; 
//$application_folder = 'application'; 
$application_folder = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'application'; 

を作り、kcfinder

ob_start(); 
require_once('../index.php'); //path to main index file edited above 
ob_end_clean(); 
$CI =& get_instance(); 
$CI->load->library('session'); 
+1

これは私のために働いた。ありがとうございましたbrowse.php –

関連する問題