So i made a plugin of it for CNR.
Download from rapidshare as the attachement only allows to upload 1MB, unzip and upload in the plugin folder of CNR.
Activate the plugin and if you use a different plugin editor, de-activate that one.
Open addnews.mdu and find:
- Code: Select all
<?=insertTag('short'); ?>
<?=insertSmilies('short', 23); ?>
<textarea name="short_story" tabindex="5"></textarea>
Change it to:
- Code: Select all
<!-- <?=insertTag('short'); ?> -->
<!-- <?=insertSmilies('short', 23); ?> -->
<textarea name="short_story" id="editor1" class="ckeditor" tabindex="4"></textarea>
Find
- Code: Select all
<?=insertTag('full'); ?>
<?=insertSmilies('full', 23); ?>
<textarea name="full_story" tabindex="5"></textarea>
Change:
- Code: Select all
<!-- <?=insertTag('full'); ?> -->
<!-- <?=insertSmilies('full', 23); ?> -->
<textarea name="full_story" id="editor2" class="ckeditor" tabindex="4"></textarea>
Open editnews.mdu and find:
- Code: Select all
<?=insertTag('short'); ?>
<?=insertSmilies('short', 23); ?>
<textarea name="short_story" tabindex="4"><?=htmlspecialchars(replace_news('admin', $story['short'])); ?></textarea>
Change it to:
- Code: Select all
<!-- <?=insertTag('short'); ?> -->
<!-- <?=insertSmilies('short', 23); ?> -->
<textarea name="short_story" id="editor1" class="ckeditor" tabindex="4"><?=htmlspecialchars(replace_news('admin', $story['short'])); ?></textarea>
Find
- Code: Select all
<?=insertTag('full'); ?>
<?=insertSmilies('full', 23); ?>
<textarea name="full_story" tabindex="5"><?=htmlspecialchars(replace_news('admin', $story['full'])); ?></textarea>
Change:
- Code: Select all
<!-- <?=insertTag('full'); ?> -->
<!-- <?=insertSmilies('full', 23); ?> -->
<textarea name="full_story" id="editor2" class="ckeditor" tabindex="5"><?=htmlspecialchars(replace_news('admin', $story['full'])); ?></textarea>
Editor should appear now when you're making a new article or edit one.
This CKEditor doesn't make use of the CKFinder, the image- and filemanager of CKEditor.
If you're planning to get this CKEditor work with this plugin, please send me a message and i will update the plugin with CKFinder.
- Code: Select all
http://rapidshare.com/files/387193040/ckeditor-3.2.1.rar
