您在這裡

Drupal7 wysiwyg 模組 + 圖片上傳設定

hugh77417's 的頭像
hugh77417 在 2011-08-11 (四) 22:57 發表

在drupal 6.x 以前 可以使用 FCKEditer + IMCE 作為所見即所得的編輯器的圖片上傳組合

drupal 7 似乎還沒有看到這樣的模組支援,意外地在官方網站看到這篇文章介紹如何設定 wysiwyg 使其內建就可以上傳圖片

-----------------------------------------------------------------------------------------------------------------------------------
模組的安裝與設定就不再贅述。

wysiwyg 7.x 內 採用 FCKEditer

1. 打開此檔案 yoursitefolder\sites\all\libraries\fckeditor\editor\filemanager\connectors\php\config.php
2. 修改 $Config['Enabled'] = true ; (預設為false)
3.打開此檔案 yousitefolder\sites\all\modules\wysiwyg\editors\fckeditor.inc
4.找到 function wysiwyg_fckeditor_settings($editor, $config, $theme)
5.修改函式內以下內容
'ImageBrowser' => true,
'ImageUpload' => true,
'FlashBrowser' => true,

便可完成修改。

原始文章:http://drupal.org/node/799482