Hi, I think this is just a simple issue but I haven't found the answer I'm looking for in drupal forums. Hope you can help me out.

I've installed Drupal 6 and CKEditor successfully. When I create a page or a story, CKEDITOR works perfectly fine.
But when I try to view the page I created with an HTML tag for text area, it doesn't work. All I can see is a plain text area but not WYSIWYG editor.

Here's the simple script.

// - - - - - - - - - - - - - -

Test

// end - - - - - - - - -

Thanks!!!

Comments

evergara’s picture

<form action="" enctype="multipart/form-data" id="entry" method="post" name="entry">

<textarea id="xxxx" name="xxxx" rows="60" cols="100"></textarea>

</form>

evergara’s picture

Here's the scipt

<form action="" enctype="multipart/form-data" id="entry" method="post" name="entry">

<textarea id="xxxx" name="xxxx" rows="60" cols="100">< /textarea>

</form>
dczepierga’s picture

Status: Active » Postponed (maintainer needs more info)

If I understand good, u try to paste this to CKEditor and u try to get form on the post/page?

Greetings

evergara’s picture

Yes. Hope you could help me on this one :)

mkesicki’s picture

Title: CKEditor inquiry » [D6] Add form textarea tags to node.
Status: Postponed (maintainer needs more info) » Fixed

You should use this code:

<form action="" enctype="multipart/form-data" id="entry" method="post" name="entry">
<textarea id="xxxx" name="xxxx" rows="60" cols="100"></textarea>
</form>

(please check that I remove space in </textarea> tag) and use full html input format for that node.
You can also add <form><textarea> tags to list of allowed html tags for filtered html input format, but I not recommend this solution.
If you have more problems , please reopen this issue.

dczepierga’s picture

Status: Fixed » Closed (works as designed)