Ck Editor, Html Source Editor Is Not Working.

Hi, I have recently upgraded to 4.0.3. Now in my CK editor (text editor), HTML Source Editor on my admin panel is not working. When click on HTML source editor, it shows blank popup window. Rest is working fine.



How can I reset it? Where is it located in version 4.0.3?



Thanks,

Are you using Internet Explorer 11 ? If so I have the same issue… Works fine in Firefox…

[quote name='CarStickersDecals' timestamp='1389968149' post='175384']

Are you using Internet Explorer 11 ? If so I have the same issue… Works fine in Firefox…

[/quote]



I tried with IE, Firefox and Chrome. It shows blank popup window.

Restore All Files In [color=#ff0000]js / lib / ckeditor[/color]



[color=#000000]Replace[/color][color=#FF0000] js/ tygh/editors/ ckeditor.editor.js with this[/color]



[html]/* editior-description:text_ckeditor */

(function(_, $) {

$.ceEditor('handlers', {

editorName: 'ckeditor',

params: null,



run: function(elm, params) {

CKEDITOR_BASEPATH = _.current_location + '/js/lib/ckeditor/';



if (typeof(window.CKEDITOR) == 'undefined') {

$.ceEditor('state', 'loading');

return $.getScript('js/lib/ckeditor/ckeditor.js', function() {

$.ceEditor('state', 'loaded');

elm.ceEditor('run', params);

});

}



if (!this.params) {

this.params = {

toolbar: [['Format','Font','FontSize', 'Bold','Italic','Underline','TextColor','BGColor','-','Link','Image','-','NumberedList','BulletedList','Indent','Outdent','JustifyLeft','JustifyCenter','JustifyRight','-','Source']],

bodyClass: 'wysiwyg-content',

contentsCss: $.ceEditor('content_css'),

filebrowserBrowseUrl : _.current_location + '/js/lib/elfinder/elfinder.ckeditor.html',

filebrowserWindowWidth : '600',

filebrowserWindowHeight : '500'

};

if (typeof params !== 'undefined' && params[this.editorName]) {

$.extend(this.params, params[this.editorName]);

}

}



CKEDITOR.replace(elm.prop('id'), this.params);

},

destroy: function(elm) {

if (typeof(CKEDITOR.instances[elm.prop('id')]) != 'undefined') {

CKEDITOR.instances[elm.prop('id')].destroy();

}

},

updateTextFields: function(elm) {

if (typeof(window.CKEDITOR) != 'undefined') {

if (typeof(CKEDITOR.instances[elm.prop('id')]) != 'undefined') {

CKEDITOR.instances[elm.prop('id')].updateElement();

}

}

},

recover: function(elm) {

$.ceEditor('run', elm);

},



val: function(elm, value) {

if (typeof(value) == 'undefined') {

return CKEDITOR.instances[elm.prop('id')].getData();

} else {

CKEDITOR.instances[elm.prop('id')].setData(value);

}

return true;

},

disable: function(elm, value) {

if (typeof(window.CKEDITOR) != 'undefined') {

CKEDITOR.instances[elm.prop('id')].setReadOnly(value);

}

}

});

}(Tygh, Tygh.$));[/html]

Thank you meetshamee. I did the same and cleared the cache and registry. But did not work.



Interestingly, I have replaced the same files from new cscart version 4.1.1. It looked the same old version. Actually cscart version 4.1.1 of CKeditor looks completely different. Am I missing some thing some where? Please advice.



When installed fresh version that worked fine, only after the upgrade 'HTML source editor' and 'Insert/edit Image' are showing blank pop ups.

[quote name='cm4554' timestamp='1390042554' post='175428']

Thank you meetshamee. I did the same and cleared the cache and registry. But did not work.



Interestingly, I have replaced the same files from new cscart version 4.1.1. It looked the same old version. Actually cscart version 4.1.1 of CKeditor looks completely different. Am I missing some thing some where? Please advice.



When installed fresh version that worked fine, only after the upgrade 'HTML source editor' and 'Insert/edit Image' are showing blank pop ups.

[/quote]



I have cleared all my cache and registry and misc files. Now that works. many thanks '[color=#282828][font=arial, verdana, tahoma, sans-serif]meetshamee'[/font][/color]

Hello,



I have the same problem with the 3.0.4



any help?



Thanks

[quote name='tom437' timestamp='1390224922' post='175549']

Hello,



I have the same problem with the 3.0.4



any help?



Thanks

[/quote]



Follow above script from meetshamee.