Try out the demo here: http://www.fckeditor.net/demo/default.htmlInternet Explorer 5.5+ and Gecko browser (Mozilla / Firefox / Netscape) compatibility
XHTML 1.0 support
Font formatting: type, size, color, style, bold, italic, etc
Text formatting: alignment, indentation, bullets list, etc
Cut, Paste and Past as Plain Text, Undo and Redo
Paste from Word cleanup with auto detection
Link creation
Anchors support (version 1.x)
Image insertion, with upload and server browsing support
Table creation and editing (add, delete rows, etc)
Table cells editing (size, colors, etc) (version 1.x)
Form fields (version 1.x)
Right click context menus support
Complete toolbar customization
Skins support.
Spell checker (version 1.x)
CSS support for a better integration in your web site
Multi-language support with automatic user language detection. Including Right to Left reading.
Lightweight and fast
Automatic browser detection and customization
Integration with ASP, ASP.NET, Java, ColdFusion, PHP, Javascript and IE Behaviours (version 1.x)
Image and file links upload and server repository browser.
For web developer it is easy to install and customize
For web users it's simply easy to use!
I have now made FCKeditor work with phpwcms...
Download and upload the file: http://www.studmed.dk/files/fckeditorv2.zip
The file includes:
include/inc_ext/FCKeditorv2
include/inc_lib/fckeditor.editor.inc.php (replace the old one)
Remember to backup files... I have only tested it local....
Open
inc_tmpl/content/cnt1.inc.php
Find:
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $content["text"] ;
$oFCKeditor->CreateFCKeditor( 'ctext', '100%', '500' ) ;
break;
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor(ctext) ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $content["text"] ;
$oFCKeditor->Create() ;
break;
inc_tmpl/content/cnt14.inc.php
Find:
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $content["html"] ;
$oFCKeditor->CreateFCKeditor( 'chtml', '100%', '600' ) ;
break;
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor(chtml) ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $content["html"] ;
$oFCKeditor->Create() ;
break;
inc_tmpl/article.editsummary.tmpl.php
Find:
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $article["article_summary"] ;
$oFCKeditor->CreateFCKeditor( 'article_summary', '100%', '350' ) ;
break;
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor(article_summary) ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $article["article_summary"] ;
$oFCKeditor->Create() ;
break;
inc_tmpl/article.new.tmpl.php
Find:
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $article_summary ;
$oFCKeditor->CreateFCKeditor( 'article_summary', '100%', '350' ) ;
break;
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor(article_summary) ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $article_summary ;
$oFCKeditor->Create() ;
break;
inc_tmpl/message.newsletter.tmpl.php
Find:
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $newsletter["newsletter_vars"]['html'] ;
$oFCKeditor->CreateFCKeditor( 'newsletter_html', '100%', '300' ) ;
break;
Code: Select all
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor(newsletter_html) ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $newsletter["newsletter_vars"]['html'] ;
$oFCKeditor->Create() ;
break;
Code: Select all
<link href="include/inc_ext/FCKeditorv2/editor/css/fck_editorarea.css" rel="stylesheet" type="text/css">