After trying the php and textarea replacement implementation
I finally choose the php approach, because I need to write html codes in my Blog
For example:
<input name="username" value="">
This will be displayed as a textfield when using the textarea replacement installation method. This forces me to switch between normal view and source view to edit posts.
However I still like the textarea replacement method. It will allow users without Javascript browsers to post messages because the editor will be simply not loaded leaving the original functional textarea in the form.
Another thing is I found a strange default setting in fckeditor.js
this.BasePath = '/fckeditor/' ;
This cases problem as I am using a Linux server and it is case-sensitive
It took me some time to find this phrase out and change it to:
this.BasePath = '/FCKeditor/' ;
By the way it is a good web-based editor. I would suggest to add a phrase like "loading editor" while downloading the icons and loading the editor scripts.
Now I do not need to care about the problem of escaping characters in my PHP scripts
Thank you.
Tue, 06/07/2005 - 20:12
#1