With the advances in technology and improved security in the new and updated browsers and java environments, the time has come to replace the KTML WYSIWYG editor with something else.
This is an article describing the upgrade from KTML to TinyMCE for Interakt and ADDT projects. Keep in mind that you will need some basic coding knowledge to be able to do this as there is no wizard that integrated TinyMCE automatically into your projects.
Upgrading your KTML installation to TinyMCE is really easy and shouldn't be an issue.
<scripttype="text/javascript"src="../jscripts/tiny_mce/tiny_mce.js"></script>
<scripttype="text/javascript"> TintMCE.init({ mode :"textareas" editor_selector : "art_content", //This is the id of your text area }); </script>
<input type="hidden"We need to change this back to a textarea and give it an ID so that TinyMCE can execute on that specific text area only
<input type="hidden" name="art_content_<?php echo $cnt1; ?>" id="art_content_<?php echo $cnt1; ?>" value="<?php echo ($row_rsint_articles['art_content']); ?>" size="32" />
<textarea class="art_content" rows="20" style="width:100%" name="art_content_<?php echo $cnt1; ?>" id="art_content_<?php echo $cnt1; ?>"><?php echo ($row_rsint_articles['art_content']); ?></textarea>