I've installed ckeditor module and I've uploaded ckeditor full library in ckeditor module and in sites/all/libraries directory.
Buttons that I need are loaded in toolbars, because every tooltip is correct, but icons that represent functions are wrong or not appear. I attach a screenshot of my situation.
Someone can explane me why?
thanks!

CommentFileSizeAuthor
Schermata 03-2456381 alle 15.38.39.png70.86 KBeuskarez

Comments

wwalc’s picture

Status: Active » Fixed

This will happen whenever you replace one build of CKEditor with another, if the other build has a different strip with icons. It is cause directly by the browser which is still caching the old file with icons.

Clearing the cache will help (hitting F5 is not enough).

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

hass’s picture

Version: 7.x-1.12 » 7.x-1.13
Issue summary: View changes
Status: Closed (fixed) » Active
Related issues: +#2202857: CKEditor Icons not loaded after update

This is not as designed. To allow client caching override we have a hash key appended to every drupal js and css urls. This has key will be set to a new value if cache is cleared and the files will be loaded again from the server. This seems not properly implemented here and need to be fixed.

See http://drupalcode.org/project/google_analytics.git/blob/refs/heads/7.x-2...

$query_string = '?' . variable_get('css_js_query_string', '0');
jcisio’s picture

Status: Active » Closed (works as designed)

I think it is "by designed" because those files (skins) are not loaded directly by Drupal, but by CKEditor. For other files (config etc.) that are added by Drupal, there is #2149719: Add cache busting tokens to script files.

jcisio’s picture

I forgot to add that the solution would be fixing it in the CKEditor library.