CkEditor 4.12.1 not secure affect wisej 2.5 and 3.5

Answered
0
0

Hi,

not a wisej problem but a ckeditor vulnerability.

Now it show a message “This CKEditor 4.12.1 version is not secure. Consider upgrading to the lasto one, 4.24.0-lts”

but the last version do not work with wisej.

For now I work around adding in startup.js of ckeditor extension

config.versionCheck = false;

best

Cristian

  • You must to post comments
Great Answer
0
0

Hi Christian ,

We just have released an update to the CKEditor extensions, it’s the NuGet package version 3.5.10-preview2.
The new VersionCheck property is introduced in that version and it defaults to false.

Best regards,
Alaa

//

  • You must to post comments
0
0

If I want to keep using old extensio where exactly this needs to be updated?

in the extension source code or it is possible to define it in the app using the extension?

I was searching throught app release and I cannot find startup.js.

Thanx,

D

  • Alaa (ITG)
    Set CKEditor.Options.versionCheck to false before the CKEditor widget itself is rendered, i.e in a form load event for example, and follow it with CKEditor.Update() to refresh the component.
  • Cristian Zerbinati
    I Dino, you are right, on your old extension, open startup.js and add this config.versionCheck = false;//add cristian I have add after CKEDITOR_BASEPATH = options.basePath; at row 42
  • You must to post comments
0
0

Hi Christian,

A new property VersionCheck is going to be introduced for the CKEditor 4 extension in the newer version of Wisej 3.5.

As a workaround, you can do “CKEditor.Options.versionCheck = false” in your code.

Best regards,
Alaa

//

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.