Hello,
Although I put the right commands according to official documentation, CKeditor refuses to load my own_config.js, and still remains to load the default config.js file. I tested all possible paths for the inclusion of my own_config.js in the customConfig command, but it still doesn't work, only the default config.js is loaded.
I even tried to avoid any config file : CKEDITOR.replace( 'my_textarea', { customConfig : '' } )
... but the default config.js file continues to be loaded !!!
I don't think it's a problem of path, since I've tried anything about that, and since { customConfig : '' } even doesn't work.
But what's happening ????
Please note that I don't have any code error in the integrated debug module of Firefox...
Thank you for your help, I'm going to become crazy !
(and excuse me for my english...)
Here is some of my code :
- the HTML page with the textarea is stored at http://www.mysite.com/backoffice/
- the ckeditor files and subdirectories are stored at http://www.mysite.com/backoffice/ckeditor
- my own_config.js file is stored at the same place as the default config.js file : http://www.mysite.com/backoffice/ckeditor
<head> (...) <script type="text/javascript" src="ckeditor/ckeditor.js"></script> (...) </head> <body> (...) <form (...)> <textarea name="my_textarea" id="my_textarea"></textarea> </form> <script type="text/javascript"> CKEDITOR.replace( 'my_textarea', { customConfig : '/ckeditor/own_config.js' }); </script> (...) </body>
[RESOLVED] [ckeditor 3.6.1] CKEditor doesn't load my own_con
Please forgive and forget that post : I just sent a wrong ID of my textarea, therefore it doesn't work !!!
Sorry !