I know you have multiple queries and guides about installing and using CKEditor and whatnot, but my CMS script that I had acquired a few months back had FCKEditor included, and to be honest, that editor is a little too simple; so, I downloaded CKEditor, and I have it uploaded to my server, and the /_samples/index.html file works. But the problem I have is that I don't know how to replace my original FCK with this new one. The script simply says:
include("FCKEditor/fckeditor.php") ;
And this is a code when I'm trying to just simply add a page to the site:
echo "<tr> <td width=\"100%\" colspan=\"2\" $tdreg>"; $oFCKeditor = new FCKeditor('content') ; $oFCKeditor->BasePath = 'FCKEditor/'; $oFCKeditor->Value = "ScriptsPal page content..."; $oFCKeditor->Create() ; echo "</td> </tr>";
So, my main issue is that I want to use the new editor so I can have more functionality instead of this:
What I'm trying to say is, your documentation doesn't really cover instances like this, and I haven't really learned much from the topics already made here. I would ask the people I got the CMS script from, but their customer support just went AWOL on me, so I have no other place to really get the info I need. I would appreciate the help, as I have really taken a liking to this editor and its awesome features.