I have a problem with the CKEditor window popping up with the correct style window, but none of the buttons show up. I've already cleared cache and all that between changes, so I know that's not the issue. Does anyone have any ideas on what's wrong? Here's my config.js file (as downloaded from the builder:
/** * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.editorConfig = function( config ) { // %REMOVE_START% // The configuration options below are needed when running CKEditor from source files. config.plugins = 'dialogui,dialog,about,a11yhelp,dialogadvtab,basicstyles,bidi,blockquote,clipboard,button,panelbutton,panel,floatpanel,colorbutton,colordialog,templates,menu,contextmenu,div,resize,elementspath,list,indent,enterkey,entities,popup,filebrowser,find,floatingspace,listblock,richcombo,font,format,htmlwriter,horizontalrule,fakeobjects,iframe,wysiwygarea,image,smiley,justify,link,liststyle,magicline,maximize,newpage,pagebreak,pastetext,pastefromword,preview,print,removeformat,selectall,showblocks,showborders,sourcearea,specialchar,menubutton,scayt,stylescombo,tab,table,tabletools,undo,wsc,devtools,divarea'; config.skin = 'kama'; // %REMOVE_END% // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; };
I always find Internet
I always find Internet Explorer very hard to "discover" the update, so try also testing with Firefox or Chrome. Then sooner or later IE will follow...
Do the changes show, when you
Do the changes show, when you enter the URL of the config.js file into the Internet Explorer?
You can try and set CKEDITOR.timestamp to a different value. Try Ctrl+F5 instead of just F5 to reload. Clear the cache (OK you did that already).
Regards
Armin
I've been using Firefox to
I've been using Firefox to test it, but to no avail, sadly.
I've already tried those
I've already tried those things, sadly =(
Try clearing the cache. Crtl
Changing the timestamp is easiest way.
Anyways, try clearing the cache. Crtl+Shift*Del in Firefox and choose 'All Time' in the dropdown and select at least cache in the checkboxes area.
Try also selecting other items, like Website Settings, if cache doesn't do the trick. I never tried it with FF, I use Chrome.
Before you do this make sure you don't have anything stored in the cookies or active logins, that you cannot reproduce. If that is the case, maybe using CookieCuller Extension for FF and only deleting cookies selectively using the extension might work better for you.
// EDIT the following is using Chrome, in FF use FireBug or something like it
Are you sure you are editing the correct config.js? Maybe check with Ctrl-Shilft+I and look in the Sources Tab, which config.js config.js?XYZ is beeing loaded, open them in new Tab and hit Ctrl+F5 to reload that config.js. It should show you changes otherwise you are editing a different config.js than the one the CKEDITOR is loading.
//EDIT2
I just put 'something_random' in the code instead of that you should of course put some code genrating a radom string. I just left it out to look shorter and the generating of a radom string in javascript is not the subject here. Anyways try something like Math.random().toString(36).substring( 0, 5 );
Regards
Armin