码迷,mamicode.com
首页 > Web开发 > 详细

Drupal 7 配置ckeditor和ckfinder编辑器实现图片上传--不用wysisyg

时间:2015-03-18 08:58:55      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

注意:

1、这里的ckeditor编辑器是独立模块,不是那个wysiwyg模块。
2、这里的图片上传仅仅为文章内图片,非字段图片。
 

1、下载文件
(1) http://drupal.org/project/ckeditor drupal的ckeditor模块
(2) http://ckeditor.com/download CKeditor源码
(3) http://ckfinder.com/download CKfinder(注意,不是免费的)

将ckedit文件夹放置在/sites/all/modules/下,
将CKeditor文件夹放置在/sites/all/modules/ckeditor/ckeditor文件夹下,
将CKfinder文件夹放置在/sites/all/modules/ckeditor/文件夹下。

正确路径为:

/sites/all/modules/ckeditor.api.php
/sites/all/modules/ckeditor/ckeditor/ckeditor/ckeditor.php
/sites/all/modules/ckeditor/ckfinder/ckfinder.php

2、安装模块

3、配置模块,/admin/config/content/ckeditor

4、配置CKfinder实现图片及文件上传

在配置中的File browser settings选项中 File browser type及以下两项选择CKfinder。

编辑ckfinder文件夹下的config.php

注释掉这个函数 

function CheckAuthentication(){        return false;}

这个函数会检查用户认证,在其他程序设计中更改为其他认证方式以返回true,但不能直接改成true,否则会有安全问题,drupal中会有
/sites/all/modules/ckeditor/includes/filemanager.config.php负责检查。

增加以下代码,路径是正确的,如果文件路径和我的一样的话

require_once ../../../../includes/filemanager.config.php;

5.配置/site/youdomain/settings.php文件

设置$baser_url
$base_url=http://localhst/drupal71;
设置$cookie_domain:
$cookie_domain=http://localhst/drupal71;

就可以正常上传图片及文件(超链接)了,注意显示图片的话需要文本格式Full HTML mode。

 

Drupal 7 配置ckeditor和ckfinder编辑器实现图片上传--不用wysisyg

标签:

原文地址:http://www.cnblogs.com/suihui/p/4346194.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!