CI集成 ckeditor 配置

系统 1769 0

配置 ckeditor
1. 上传 下载 ckeditor 文件 和ckckfinder到网站根目录js目录下。
2.ckeditor/ckeditor_ php 5.php 改名为ckeditor.php 放入libraries  ,ckfinder/ckfinder.php 文件放入libraries  。
3.controllers 使用

 

     $this->load->library('ckeditor');
$this->load->library('ckFinder');
$this -> ckeditor = new CKEditor();
$this -> ckeditor->basePath = '/js/ckeditor/'; 
$this -> ckeditor -> config['toolbar'] = 'Full'; 
$this -> ckeditor -> config['language'] = 'zh-tw';// $this -> ckeditor -> config[''] 添加一些你需要的配置详细参数自己查一下
CKFinder::SetupCKEditor($this -> ckeditor, '/js/ckfinder/');

  

 

4.views

 

     <script src="<?php echo base_url();?>js/ckeditor/ckeditor.js" type="text/javascript"></script>
<script type="text/javascript" src="<?php echo base_url();?>js/ckfinder/ckfinder.js"></script>

  
 

显示ckeditor

 

     <?php echo $this->ckeditor->editor("mailtpl_content", $edit_row['mailtpl_content']);?>

  
 

 

修改一下ckfinder/config.php  
设置 图片 上传权限

 

    function CheckAuthentication()
{
        return true;//第32行 false改为true
}
$baseUrl = '/js/ckfinder/userfiles/'; //图片上传目录
 
  
 



这个图片是我事先放进去的图片



这里我郁闷了。在本地可以上传图片。
传到网上就提示这个。上传和删除都会提示




在\ckfinder\userfiles目录 有个.htaccess 文件,删除后一切正常。

 

 

来源:http://codeigniter.org.cn/forums/thread-5736-1-1.html

 

 

 

 

 

 

 

CI集成 ckeditor 配置


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论