Hello, I've been trying to figure out why I can't get the editor to load. I think I've done everything per the documentation page but I must be doing something wrong. I don't get any error messages but the editor just does not show up so I would greatly appreciate some help if someone could look at my code. The site is a PHP site.
While I'm asking questions I'm sure I'll need some help on sizing the editor as well so it would be great if I can get some comments on that too. It seems that the documentation is not finished yet so I just don't have much to go on as I know absolutely nothing about js.
I noticed in the documentation for the old version that this could be done with PHP. Is that an option with the new version?
Normally I would try to learn it completely but I'm under the gun to get this project completed so your help would be greatly appreciated. Thanks in advance.
<head> ... <script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
<td bordercolor="#000000"><textarea name="nf_editor"><p>Initial value.</p></textarea> <script type="text/javascript"> CKEDITOR.replace( 'nf_editor' ); </script> </tr>
While I'm asking questions I'm sure I'll need some help on sizing the editor as well so it would be great if I can get some comments on that too. It seems that the documentation is not finished yet so I just don't have much to go on as I know absolutely nothing about js.
I noticed in the documentation for the old version that this could be done with PHP. Is that an option with the new version?
Normally I would try to learn it completely but I'm under the gun to get this project completed so your help would be greatly appreciated. Thanks in advance.
Re: Noob needing help on integrating CKEditor 3
I promise, once I get this project done I'll learn javascript but for now I've just got to get this finished and this is really holding me up. This is only my 4th site design and my first PHP/mySQL site so things are slow enough as it is...but I have learned a lot so far.
Thanks in advance.
Re: Noob needing help on integrating CKEditor 3
Do you have a link to a test form? That would make it easier for others to troubleshoot for you. Beyond that, the only thing I can suggest is that you make sure the path to the JavaScript file is correct. If you did not install (unzip) the CKeditor to your website's root directory, then you shouldn't have the forward slash before "ckeditor/ckeditor.js"
As far as the size of the editor, you can either set that in the config file (default or custom), or in-page. The in-page code would look something like this:
Re: Noob needing help on integrating CKEditor 3