My company needs a product just like FCKeditor in its web content management system. It's by far the best free browser-based editor tool I've seen, and better than 1/2 of the editors on the market that cost money.
I'm wondering what the experiences have been of those who have used this editor in production systems. Has anyone used this on a system of more than 100 users? Has the informal level of technical support provided by the open-source sourceforge community been sufficient? Does anyone have a rough idea of how many end-users (not developers) FCKeditor has worldwide? Thanks.
I'm wondering what the experiences have been of those who have used this editor in production systems. Has anyone used this on a system of more than 100 users? Has the informal level of technical support provided by the open-source sourceforge community been sufficient? Does anyone have a rough idea of how many end-users (not developers) FCKeditor has worldwide? Thanks.

RE: FCKeditor in production systems
RE: FCKeditor in production systems
RE: FCKeditor in production systems
Tie the spiffiest hardware/software in the world to an Access db and ...
RE: FCKeditor in production systems
RE: FCKeditor in production systems
We decided to join our editor with FCKeditor contibuting all the features that ours differ from it.
then we used it for our Content Management System, and it works more than fine.
RE: FCKeditor in production systems
Some are more or less news-systems an a few are self-made-CMS.
I added nice features like
- "pagebreak" (break a long text into as many pages you like with prev. and next buttons)
- inserting images (auto-generated thumbs) with subline and click<->zoom option
all works with v. 1.6 under php.
Right now i am trying to play around with the 2.0 beta and the php-connector.
RE: FCKeditor in production systems
RE: FCKeditor in production systems
Has anyone of you guys integrated FCKeditor into FarCry CMS? If you have any information on this please let me know. I am trying to get FCK to work with FarCry and I am following a little short of it working.
RE: FCKeditor in production systems
http://www.opensource.org/licenses/lgpl-license.php
http://www.fredck.com/FCKeditor/
fckeditor@fredck.com
fckeditor@fredck.com
<HTML> <HEAD> <LINK rel="stylesheet" type="text/css" href="../css/fck_dialog.css"> <style type="text/css"> .Disactive { border-right: 1px solid; border-top: 1px solid; border-left: 1px solid; width: 1%; cursor: hand; border-bottom: 1px solid; background-color: #dedbd6; text-align: center; } .Active { cursor: hand; background-color: #ffffcc; text-align: center; } .MainTable { border-right: #e8e8e8 5px solid; border-top: #e8e8e8 5px solid; border-left: #e8e8e8 5px solid; border-bottom: #e8e8e8 5px solid; } .Sample { border-right: 1px solid; border-top: 1px solid; font-size: 24px; border-left: 1px solid; border-bottom: 1px solid; background-color: #dedbd6; } .Empty { border-right: 1px solid; border-top: 1px solid; border-left: 1px solid; width: 1%; cursor: default; border-bottom: 1px solid; background-color: #dedbd6; } </style> <script language="javascript"> <!-- document.write("<title>" + dialogArguments.lang["DlgSpecialCharTitle"] + "</title>") ; var oSample ; function insertChar(charValue) { window.returnValue = charValue ; window.close(); } function over(td) { oSample.innerHTML = td.innerHTML ; td.className = 'Active' ; } function out(td) { oSample.innerHTML = " " ; td.className = 'Disactive' ; } function CloseWindow() { window.returnValue = null ; window.close() ; } function setDefaults() { // First of all, translate the dialog box texts dialogArguments.AvailableLangs.TranslatePage(document) ; } document.onkeydown = function () { switch ( event.keyCode ) { case 27 : CloseWindow() ; break ; // ESC } } //--> </script> </HEAD> <BODY topmargin="0" rightmargin="0" bottommargin="0" leftmargin="0" onload="setDefaults()"> <table cellpadding="0" cellspacing="10" width="100%" height="100%"> <tr> <td rowspan="2" width="100%"> <table class="MainTable" cellpadding="0" cellspacing="0" align="center" border="1" width="100%" height="100%"> <script language="javascript"> <!-- var aChars = ["<!--Pagebreak-->"] ; var cols = 20 ; var i = 0 ; while (i < aChars.length) { document.write("<TR>") ; for(var j = 0 ; j < cols ; j++) { if (aChars[i]) { document.write('<TD class="Disactive" onclick="insertChar(\'' + aChars[i].replace(/&/g, "&") + '\')" onmouseover="over(this)" onmouseout="out(this)">') ; document.write(aChars[i]) ; } else document.write("<TD class='Empty'> ") ; document.write("</TD>") ; i++ ; } document.write("</TR>") ; } //--> </script> </table> </td> <td valign="top"> <table class="MainTable"> <tr> <td id="SampleTD" width="40" height="40" align="center" class="Sample"> </td> </tr> </table> </td> </tr> <tr> <td align="right" valign="bottom"> <INPUT type="button" fckLang="DlgBtnCancel" value="Cancel" style="WIDTH: 60px" onclick="CloseWindow();"> </td> </tr> </table> </BODY> </HTML>RE: FCKeditor in production systems
http://www.bauern-hochzeit.de/content.php?A_ID=12