FCKeditorインストール

#Drupal 4.7.x用のFCKEditorはまだコミットされていません。
#このサイトでは4.7.xにアップデートするにあたってTiniMCEを導入しました。
#こまめにhttp://drupal.org/project/issues/16118をチェックしてみてください。

WordPressに慣れている僕にはDrupalの標準エディタは機能無しで使いにくいのでGUIっぽいエディタを探しました。

Drupalのモジュールはここから探せるよ。
Drupal Modules
で、見つかったのがFCKeditor。

早速インストール
FCKeditor for Drupalをダウンロード
サーバのmodules/に展開
#もちろんphpファイルのパーミッションは755

さらに
http://www.fckeditor.net/
から GZip File (source code included): FCKeditor_2.0.tar.gz
をダウンロード。
中身をサーバのmodules/fckeditor/libにコピー。
#libフォルダは自分で作ってね。
#このとき_samples、_testcasesのフォルダはコピーしなくていいよ

そのあとで、管理メニューでこのモジュールを使えるようにすると、なんというかものすごい高機能なGUIエディタが装備されます。
すごいなぁ。これ。

--
FCKeditor の README.txt
Overview
--------
This module allows Drupal to replace textarea fields with FCKeditor. This HTML
text editor brings to the web many of the powerful functionalities of known
desktop editors like Word. It's really lightweight and doesn't require any
kind of installation on the client computer.

NOTE: FCKeditor for Drupal relays on an external library called fckeditor.
For further information please refer to:

FCKeditor - The text editor for internet
Copyright (C) 2003-2004 Frederico Caldeira Knabben

Licensed under the terms of the GNU Lesser General Public License:
http://www.opensource.org/licenses/lgpl-license.php

For further information visit:
http://www.fckeditor.net/

Requirements
------------
- Drupal 4.5.x
- PHP 4.3.0 or greater
- FCKEditor 2.0 (http://www.fckeditor.net/)

Installation
------------
1. Copy fckeditor folder to modules/.
2. Download FCKeditor 2.0 from http://www.fckeditor.net and copy the
distribution files to modules/fckeditor/lib.

Configuration
-------------
1. Modify the fckconfig.js file to custom your needs (not required)
2. Enable the module as usual from Drupal's admin pages.
3. Under settings, configure the fckeditor settings.
4. Grant permissions to the groups you want use fckeditor.

Server Side Integration
-----------------------
The editor gives the end user the flexibility to create a custom file browser
that can be integrated on it. The file browser allows users to view the
content of a specific directory on the server and add new content to that
directory (create foldes and upload files). To enable the File Browser
(server side integration pack) follow these steps

1. Edit the fckconfig.js file and set the FCKConfig.LinkBrowserURL and
FCKConfig.ImageBrowserURL properties to:

FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=[context_path]/modules/fckeditor/ssip/connector.php"
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=[context_path]/modules/fckeditor/ssip/connector.php"

Note: If you are running Drupal under a directory replace '[context_path]'
with yours directory's name (ie. /drupal ), otherwise simply remove it

FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=/modules/fckeditor/ssip/connector.php"
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=/modules/fckeditor/ssip/connector.php"

2. Modify the properties.inc file to fit your customs.
Note: if you are running Drupal under a directory you need to set the
'context_path' property to the ditectory's name

Credits
-------
LatPro Inc.

- FCKeditor for Drupal Core functionality originally written by:
Jorge Tite
- FCKeditor - The text editor for internet
Copyright (C) 2003-2004 Frederico Caldeira Knabben
http://www.opensource.org/licenses/lgpl-license.php
http://www.fckeditor.net/