如何禁用ckeditor cloudservices
How to disable ckeditor cloudservices
我正在开发一个 Drupal 站点,该站点刚刚将其 ckeditor 库从 4.5.x 更新到 4.9.2。在我们的一台服务器上,图像按钮突然停止出现,当我使用 ckeditor 加载任何页面时,我在浏览器 javascript 控制台中发现错误 "Error code: cloudservices-no-token-url."。
我希望我可以禁用云服务来解决错误。我尝试使用 config.removePlugins = 'easyimage';在 config.js。是否有其他使用我需要禁用的云服务的插件?
摆脱 EasyImage 的最简单方法是首先不下载它。
请转到 CKEditor download page 下载您感兴趣但没有 EasyImage 的软件包(不要选中 EasyImage 复选框)。
或者使用 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 插件(默认情况下在完整和标准预设中可用)。
您应该删除该插件。
CKEDITOR.editorConfig = function( config ) {
:
:
:
config.removePlugins = 'cloudservices';
};
我正在开发一个 Drupal 站点,该站点刚刚将其 ckeditor 库从 4.5.x 更新到 4.9.2。在我们的一台服务器上,图像按钮突然停止出现,当我使用 ckeditor 加载任何页面时,我在浏览器 javascript 控制台中发现错误 "Error code: cloudservices-no-token-url."。
我希望我可以禁用云服务来解决错误。我尝试使用 config.removePlugins = 'easyimage';在 config.js。是否有其他使用我需要禁用的云服务的插件?
摆脱 EasyImage 的最简单方法是首先不下载它。
请转到 CKEditor download page 下载您感兴趣但没有 EasyImage 的软件包(不要选中 EasyImage 复选框)。
或者使用 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 插件(默认情况下在完整和标准预设中可用)。
您应该删除该插件。
CKEDITOR.editorConfig = function( config ) {
:
:
:
config.removePlugins = 'cloudservices';
};