Firefox 23 / CKEditor / Blocked loading mixed active content
If you have upgraded to FF 23 and suddenly your CKEditor is not working (in admin->catalog->categories/products), take heart: it's a one line fix to get it back again. Edit
<your renamed admin>/includes/ckeditor.php
and change the inclusion of jsapi to not use a protocol, i.e.
<script type="text/javascript" src="//www.google.com/jsapi"></script>
instead of
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
and you should be all set. You will NOT see this issue in FF 22 and prior, only FF23 (and perhaps higher).
NOTE: The latest CKEditor package in the ZC Plugins area already has this change in it.
Re: Firefox 23 / CKEditor / Blocked loading mixed active content
THANK YOU SCOTT ! :clap:
The ZC community can always rely on you for quick and effective solutions.
Re: Firefox 23 / CKEditor / Blocked loading mixed active content
One caveat - if you are running admin in secure mode, you will probably need a secure url for that. Apsona has had to change hard coded urls to secure to run in the newest firefox version.