您没有浏览服务器的权限?
You don't have permission to browse the server?
我正在将 kcfinder 与 ckeditor 一起使用。在 kcfinder 的配置文件中更改 disabled to false
时没有问题,但是用
覆盖它
$_SESSION['KCFINDER'] = array(
'disabled' => false
);
我无法浏览和上传文件there.Message弹出窗口显示您没有浏览服务器的权限。
(使用的框架 CI 3.x。)
试试这个。对主要 index.php 文件
进行以下更改
//$system_path = 'system';
$system_path = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'system';
//$application_folder = 'application';
$application_folder = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'application';
并将此代码放入 kcfinder
的 browse.php
ob_start();
require_once('../index.php'); //path to main index file edited above
ob_end_clean();
$CI =& get_instance();
$CI->load->library('session');
我正在将 kcfinder 与 ckeditor 一起使用。在 kcfinder 的配置文件中更改 disabled to false
时没有问题,但是用
$_SESSION['KCFINDER'] = array(
'disabled' => false
);
我无法浏览和上传文件there.Message弹出窗口显示您没有浏览服务器的权限。 (使用的框架 CI 3.x。)
试试这个。对主要 index.php 文件
进行以下更改//$system_path = 'system';
$system_path = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'system';
//$application_folder = 'application';
$application_folder = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'application';
并将此代码放入 kcfinder
的 browse.phpob_start();
require_once('../index.php'); //path to main index file edited above
ob_end_clean();
$CI =& get_instance();
$CI->load->library('session');