Start a conversation

Spell checker is not working in Advanced Editor

Error: The user is trying to use the spell checker in the Advanced Editor but it is not working.

Screen_Shot_2018-07-05_at_18.png

Environment: DNN 9.1.1

Root Cause: DNNCKP#0#DisableNativeSpellChecker option was set to TRUE instead of FALSE.

Workaround/Fix:

1. Go to Settings > SQL Console.

2. Execute the following query.

select *
from cke_settings
where settingname like '%Spell%'
 

If the value is as below: "TRUE"

Screen_Shot_2018-07-05_at_18.28.07.png

3.Set the value to FALSE by executing the following query.

Update cke_settings
set SettingValue = 'False'
where settingname like '%Spell%'

4.Clear Cache the website.

Screen_Shot_2018-07-05_at_18.33.36.png

5. Restart the App pool and press Ctrl + F5 to refresh the site while clearing the cache in the web browser.

Confirmation: Go to Settings > SQL Console, insert the following query. If the value is FALSE, the problem has been solved.

select *
from cke_settings
where settingname like '%Spell%'

Related ArticleClear Cache

Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted
  3. Updated

Comments