Hello,
I have to say I am enthousiastic about this project
Install is fairly easy, I hope users will adopt it.
Only cloud : I'm an afficionado of W3C validator, since it helps me to solves lots of issue and keeps me motivated to learn how to code properly. But it seems now that I'm not able to validate my web page since I added the simplest code proposed in the doc :
<p> <?php include_once("fckeditor/fckeditor.php") ; $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = 'fckeditor/' ; $oFCKeditor->Value = '' ; $oFCKeditor->Create() ; ?> </p>
This happens to bring "iframe" (I don't have a clue about what it is) and I red there : http://www.fckeditor.net/forums/viewtopic.php?f=6&t=10737 this could be turned over with this :
Use a textarea and replace it with javascript. That way you will pass validation and with the benefit that if the user has disabled javascript he still will be able to fill the form.
Is that detailed somewhere for a beginner level ?
Many thanks for any help you can provide.