I will install the ckeditor into my codeigniter project
how I do that?
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
May 03, 2012 6:33am
Subscribe [4]#1 / May 03, 2012 6:33am
I will install the ckeditor into my codeigniter project
how I do that?
#2 / May 04, 2012 2:22am
Actually it’s easy.
Just extract your ckeditor file and put the folder after extarct in in your CI root folder. You already install it.
For using, just load ckeditor.js in your <head> element. And in your textarea element, you call the ckeditor class.
<textarea class="ckeditor" name="vnama">/textarea>Ckeditor has manual and you can consult for the further usage.
#3 / Aug 08, 2012 6:47pm
Why is it that if move the ckeditor folder from the root to the applications folder the editor stops working?
#4 / Aug 08, 2012 6:50pm
read the htaccess in the /application and /system directories. Those are protecting your files and shouldn’t be used for assets like images, css or js files, as nothing in those directories should be readable via the url. Those should be in their own publicly accessible dir off of root, just like /application and /system are.