I have read some of the documentation to install this but am still confused. Am I supposed to be installing the html into a totally new html doc so that I can create a separate website editor website? or am I supposed to add the files for ck editor to each of the websites that I want to be able to edit?
or something else?
Thank you to anyone who can help.
Hey hyperone,
Hey hyperone,
you downloaded a zip archive (e.g. full package). Extract its content and copy the included directory "ckeditor" with its content to only one position of your webspace, e.g. to the root directory of your webspace. So you should reach it via: http://www.your-webpage.com/ckeditor
Then it is installed in general. To use it in special pages put the code within the head tag:
<script src="'[relative-path-to-directory]/ckeditor/ckeditor.js"></script>
Then you will need a textarea with the attribute name, e.g.: <textarea name="MyTextarea">Here is my text to edit.</textarea>
After the textarea you should insert:
<script>
CKEDITOR.replace( 'MyTextarea' );
</script>
Then you should see the editor. After you have reached this you can try further configuration etc.