Hello
I have a page configured with fckeditor with this code:
<script type="text/javascript" src="../Edt/fckeditor.js"></script>
<script type="text/javascript">
window.onload=function()
{
var sBasePath = '../Edt/'
var oFCKeditor = new FCKeditor( 'fTxt' ) ;
oFCKeditor.BasePath = sBasePath ;
oFCKeditor.Height = 500 ;
//oFCKeditor.Value = 'This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.' ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
I there a simple way to replace with an upgrade to CKeditor 4? Someone could write it to me?
Thank you.
Valter.
See this article on Upgrading
See this article on Upgrading from FCKeditor to CKEditor 4: http://docs.ckeditor.com/#!/guide/dev_upgrade_fckeditor_2
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Thanks, I already read some
Thanks, I already read some article and I understood the CKe is something different from FCKe.
Because I didn't do all my site and I want only upgrade the editor I'm asking if someone could write to me how to transform my code to the new one. Assuming that I will use the same path for the installation.