I'm just wanting to install CKEditor. I've had it before and ran in to this problem, and don't remember where I obtained the correct instructions for 2.3.1.
Here's the instructions I have:
Step 1
-------
Go to ckeditor.com and download the latest Editor Release (CK Editor, which has superseded FCK Editor)...
_______
Step 2.
-------
Unzip it all, then upload the fckeditor folder and all it's contents to your admin directory.
_______
Step 3.
-------
Amend /public_html/admin/includes/template_top.php
__________
FIND THIS:
----------
<script language="javascript" src="includes/general.js"></script>
_____________
ADD AFTER IT:
-------------
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
_______
Step 4.
-------
Amend /public_html/admin/categories.php
__________
FIND THIS:
----------
tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])));
___________
CHANGE FOR
-----------
tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])),' class="ckeditor"');
_______
Step 5.
-------
Upload it and refresh the category (prodcut adding/editing) page. You should see the newly installed Editor. Enjoy!
Neither of the codes it tells you to find to replace exist in either of those files in oscommerce 2.3.1. Anyone have the correct install for this? Not sure why it says for 2.3.1 in the oscommerce addons when it's clearly not accurate.
Here is the link to the one with the wrong instructions that I'm talking about:
http://addons.oscommerce.com/info/7112
Tue, 05/28/2013 - 03:02
#1
Hi Justin,
Hi Justin,
the OSCommerce plugin is not a product that we created and subsequently, that we support, as we genuinely have no idea as to how it was integrated and customized. You will thus have more luck asking the plugin developer or the OSCommerce community for help.
Btw, I doubt you can replace FCKeditor with CKEditor 1:1, as CKEditor was written from scratch and does not match FCKeditor code base. Good luck anyway!
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!