Hello everyone,
Before starting, I please you to excuse me for my so bad english ^^.
I'm new on your community, and i'm a noob user of CKeditor..
Then, to start the story, I used that editor in my new website ... I installed CKeditor, 3 weeks ago, and it work perfectly, even with the config.js modified, and CKfinder.
But today, a new error comes .. I just modified some files, but any files got a link with ckeditor !
And now, my custom config is now the default config..
Some exemples:
My config.js:
CKEDITOR.editorConfig = function( config ) { config.toolbar = 'basic'; config.toolbar_basic = [ ['Bold', 'Italic','Underline','Strike', '-', '-', 'Link', 'Unlink','-', 'Styles','Format','Font','FontSize'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['TextColor','BGColor'], [ '-', '-', 'Image', '-', '-' ], ]; config.toolbar_noadmin = [ ['Bold', 'Italic','Underline','Strike', '-', '-', 'Link', 'Unlink','-', 'Styles','Format','Font','FontSize'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['TextColor','BGColor'], ]; };
In the Head of my index.php page:
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
In the Answers "module (don't know how to translate that)" , I put that:
<p> <label for="texte">Texte: *</label><br/> <TEXTAREA rows="10" cols="50" id="texte" name="texte" ></textarea> <script type="text/javascript"> CKEDITOR.replace( 'texte', { toolbar : 'noadmin' }); </script> </p>
Then, in the answers module, the editor don't appears !
Finally, on another module:
<p> <label for="texte">Texte: *</label><br/> <TEXTAREA rows="10" cols="50" id="texte" name="texte" ></textarea> <script type="text/javascript"> CKEDITOR.replace( 'texte', { filebrowserImageWindowWidth : '750', filebrowserImageWindowHeight : '520', filebrowserBrowseUrl : 'ckfinder/ckfinder.html', filebrowserImageBrowseUrl : 'ckfinder/ckfinder.html?Type=Images', filebrowserImageUploadUrl : 'ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images' }); </script> </p>
On this one, the editor appears, CKfinder work, but the editor config is the full editor toolbar ! :/
And the very big strange thing is: When I try to launch my website locally, with Wamp, there is any problems, the custom toolbar work perfectly ! And when I try on the internet, it doesn't Work ...
I apologize again for my english not good, and I thank everyone who has the courage to help me
Edit: Funny thing: Now, no toolbar appears, CKeditor is launched, but no toolbar run ^^