I created a cms application that use CKEDITOR and when I add some functionality to CKEDITOR I need to refresh some CKEDITOR .js /.css file.
But CKEDITOR force the
I found a much simpler method, in case anyone is still frustrated by this.
If you open the config file URL with the timestamp appended (eg. ?t=XYZD) in your browser, hard-refresh it, then return to your application page and refresh that, you should get the new version of the config file.
You need to use the same timestamp as is set by ckeditor in the source of the page. If you use developer tools or Firebug, typing CKEDITOR.timestamp into the console will give you the value to use.
This trick works in Firefox for not just CKEditor but for any page on which you want to toggle local caching.
After a very brief check, I could not find a similar setting in Chrome nor IE.
HTH
You could always add a unique timestamp as a variable in your url, or just do a hard refresh (CTRL + F5)
Method wich works is put CKEDITOR with improved config and css files to the new subcatalog:
src="/ckeditor_new_one/ckeditor.js"
I have found a quite elegant way:
It is enough to set:
CKEDITOR.timestamp='ABCD';
just after you link ckeditor.js or anyhow before ckeditor loads all its files
this is the variable CKEDITOR uses to add timestamp to all .js .css files it loads dynamically.
So every time I change those files I update that variable and browsers will reload them.
On Firefox:
about:config
network.http.use-cache
to false