admin管理员组文章数量:1026989
I'm working on a Drupal site that just updated its ckeditor library from 4.5.x to 4.9.2. On one of our servers the image button suddenly stopped appearing and I find the error "Error code: cloudservices-no-token-url." in the browser javascript console when I load any page with ckeditor.
I'm hoping I can disable cloudservices to resolve the error. I tried using config.removePlugins = 'easyimage'; in config.js. Are there other addons that use cloudservices I need to disable?
I'm working on a Drupal site that just updated its ckeditor library from 4.5.x to 4.9.2. On one of our servers the image button suddenly stopped appearing and I find the error "Error code: cloudservices-no-token-url." in the browser javascript console when I load any page with ckeditor.
I'm hoping I can disable cloudservices to resolve the error. I tried using config.removePlugins = 'easyimage'; in config.js. Are there other addons that use cloudservices I need to disable?
Share Improve this question asked May 11, 2018 at 22:04 PurcellPurcell 1191 silver badge4 bronze badges2 Answers
Reset to default 4The simplest way to get rid of EasyImage is not downloading it in the first place.
Please go to CKEditor download page and download the package you are interested in but without EasyImage (don't check EasyImage checkbox).
Alternatively use can use online builder. Please go to builder page, select one of predefined presets and plugins you like but don't include EasyImage plugin. If you are using CKEditor with CKFinder or some other custom file manager or uploader, you need to include File Browser plugin (available in Full and Standard presets by default).
You should remove the plugin.
CKEDITOR.editorConfig = function( config ) {
:
:
:
config.removePlugins = 'cloudservices';
};
I'm working on a Drupal site that just updated its ckeditor library from 4.5.x to 4.9.2. On one of our servers the image button suddenly stopped appearing and I find the error "Error code: cloudservices-no-token-url." in the browser javascript console when I load any page with ckeditor.
I'm hoping I can disable cloudservices to resolve the error. I tried using config.removePlugins = 'easyimage'; in config.js. Are there other addons that use cloudservices I need to disable?
I'm working on a Drupal site that just updated its ckeditor library from 4.5.x to 4.9.2. On one of our servers the image button suddenly stopped appearing and I find the error "Error code: cloudservices-no-token-url." in the browser javascript console when I load any page with ckeditor.
I'm hoping I can disable cloudservices to resolve the error. I tried using config.removePlugins = 'easyimage'; in config.js. Are there other addons that use cloudservices I need to disable?
Share Improve this question asked May 11, 2018 at 22:04 PurcellPurcell 1191 silver badge4 bronze badges2 Answers
Reset to default 4The simplest way to get rid of EasyImage is not downloading it in the first place.
Please go to CKEditor download page and download the package you are interested in but without EasyImage (don't check EasyImage checkbox).
Alternatively use can use online builder. Please go to builder page, select one of predefined presets and plugins you like but don't include EasyImage plugin. If you are using CKEditor with CKFinder or some other custom file manager or uploader, you need to include File Browser plugin (available in Full and Standard presets by default).
You should remove the plugin.
CKEDITOR.editorConfig = function( config ) {
:
:
:
config.removePlugins = 'cloudservices';
};
本文标签: javascriptHow to disable ckeditor cloudservicesStack Overflow
版权声明:本文标题:javascript - How to disable ckeditor cloudservices - Stack Overflow 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745653592a2161463.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论