我使用CKEDITOR CDN这样CKEDITOR CDN使用皮肤HTTPS
<script src="https://cdn.ckeditor.com/4.5.10/full-all/ckeditor.js"></script>
var instance = CKEDITOR.replace('myEditor'), {
customConfig: '/path/to/my/config.js',
});
在我config.js
CKEDITOR.editorConfig = function (config) {
config.defaultLanguage = 'fr';
config.skin = 'moonocolor';
};
我得到这个错误
Mixed Content: The page at 'https://local.mysite.fr/app_dev.php/admin/page/4' was loaded over HTTPS, but requested an insecure script 'http://cdn.ckeditor.com/4.5.10/full-all/skins/moonocolor/skin.js/'. This request has been blocked; the content must be served over HTTPS.
上午什么我做错了?有没有办法让CKEDITOR在HTTPS中加载皮肤?
该死的,已经很久了:)下次我会看看这个项目。谢谢你的帮助。 – Charly