The editor script loads spellchecker related files from an external website (http://...) which causes browsers to mark the whole page as insecure (e.g. red exclamation mark on the SSL symbol).
I guess I could simply deactivate the spell checker somehow, but it would be really cool if the editor would simply not load it on SSL-encrypted pages.
BTW: There's another thread about this problem - I just created this thread because the subject line is a bit more precise.
Wed, 11/11/2009 - 17:01
#1
Re: CKEditor 3.0 doesn't work properly on SSL-encrypted pages
Come on - nobody else uses CKEditor 3.0 on SSL-encrypted pages?
Re: CKEditor 3.0 doesn't work properly on SSL-encrypted pages
As a guess... what happens if you explicit set the CKEDITOR.basePath to be a full url including https (eg. "https://mysite.com/ckeditor")?
Regards,
Rob
Re: CKEditor 3.0 doesn't work properly on SSL-encrypted pages
Same problem here.
I tried using this setting, but no difference:
CKEDITOR.editorConfig = function( config )
{
// Define changes to default configuration here. For example:
//config.language = 'ru';
// config.uiColor = '#AADC6E';
config.baseHref = 'http://mysite.com/admin/js/ckeditor/';
};
We need this to work with SSL! ANy ideas out there?
Re: CKEditor 3.0 doesn't work properly on SSL-encrypted pages
Also looking for a solution on this.
Andy
Re: CKEditor 3.0 doesn't work properly on SSL-encrypted pages
Does anyone know whether there's a chance for this to get fixed (possibly with 3.0.2)?
Re: CKEditor 3.0 doesn't work properly on SSL-encrypted pages
Re: CKEditor 3.0 doesn't work properly on SSL-encrypted pages
Shouldn't baseHref be https instead of http? Has anyone actually tried an appropriate baseHref config setting?
Also, if you need a work around, just remove the spell check plugin. Otherwise, I guess you could dig into the source of the spell checker plugin and ascertain where it is being loaded and ensure it is being loaded via SSL.
Another solution, which I posted in the related thread, is to just remove the offending plugin:
Re: CKEditor 3.0 doesn't work properly on SSL-encrypted pages
I've got a CKEditor control on an HTTPS/SSL web page. I just today enabled the SCAYT feature and now see a Security Warning when the page loads.
It seems to be caused by these four files:
I found a Ticket #4065 for this issue. SpellChecker.net reportedly corrected the problem from their end 12 days ago.
http://dev.fckeditor.net/ticket/4065
Why do I still see the warning form my web site?