From 6b43b9bda4a9b490885ccd3a28288a99eb3d8c1a Mon Sep 17 00:00:00 2001 From: Wendy Date: Sat, 30 Dec 2006 10:13:49 +0000 Subject: [PATCH] no message --- includes/README.TXT | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) create mode 100644 includes/README.TXT diff --git a/includes/README.TXT b/includes/README.TXT new file mode 100644 index 0000000..d783dd7 --- /dev/null +++ b/includes/README.TXT @@ -0,0 +1,31 @@ +TinyMCE +-------- +TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control +released as Open Source under LGPL by Moxiecode Systems AB. It has the ability to +convert HTML TEXTAREA fields or other HTML elements to editor instances. + +INSTALL +------- +1. Extract to sites/all/modules, you will see: sites/all/modules/tinymce +2. Download TinyMCE libraries from here: http://tinymce.moxiecode.com/download.php +3. Extract content of TinyMCE package to: sites/all/modules/tinymce/includes. + You will see folder name like: + \sites\all\modules\tinymce\includes\docs + \sites\all\modules\tinymce\includes\examples + \sites\all\modules\tinymce\includes\jscripts +4. Setting available here: Administer-TinyMCE + +IMCE Integration +---------------- +1. You may need to edit IMCE.module if the File/Image Manager not appear. +2. Open imce.module and go to line 10: + + //set imce if tinymce is in action + if (module_exists('tinymce') && variable_get('imce_settings_tinymce', 1) && strpos($header, 'tinyMCE.init')) { + +3. Change above line to: + + //set imce if tinymce is in action + if (module_exists('tinymce') && variable_get('imce_settings_tinymce', 1)) { + +5. Refresh you website. \ No newline at end of file -- 1.7.4.1