我在项目的某些模块中使用了 FCKEditor,当时我index.php
在我的 url 中使用,但是当我删除时index.php
,FCKEditor 从页面上消失了,它没有显示任何错误,只是 FCKEditor 的位置显示空白任何想法?
$fckeditorConfig = array('instanceName' => 'fckcontent',
'BasePath' => base_url().'systemfiles/plugins/FCKeditor/',
'ToolbarSet' => '',
'Width' => '600',
'Height' => '370',
'Value' => $this->input->post('fckcontent'));
$this->load->library('fckeditor', $fckeditorConfig);