Yesterday I have implemented a WYSIWIG editor (CKeditor) in the ADD Faq module, and maybe this is the problem.
To enable the editor I have to add these lines after the <textarea> field with name=content:
Code: Select all
<script type="text/javascript">
CKEDITOR.replace( 'content');
</script>
But doing this it results in a wysiwyg that replace all the page by starting from the initial <div id=content !!!
So I have modified the div id label (also changed in css) and the editor looked fine, but when I submit the form I have MySQL crashes.
Any idea? maybe the form doesn't accept the formatted text of the wysiwyg editor?