Changing DotNetNuke Default HTML Provider

How to Change the Default HTML Provider for Upgrades to DNN 6.1.X and Above

Method 1
  1. Log in to your website as Host.
  2. Navigate to Host > HTML Editor Manager.
  3. Click on the drop down menu and choose the RadEditorProvider then click Change.
Method 2
  1. Open the site's web.config file.
  2. Find (Ctrl+f) htmlEditor defaultProvider.  If it's set to TelerikEditorProvider replace this with DotNetNuke.RadEditorProvider.
  3. Check the providers listed underneath the default provider. If it does not contain the RadEditorProvider listed below, add it.
    1. <add name="DotNetNuke.RadEditorProvider" type="DotNetNuke.Providers.RadEditorProvider.EditorProvider, DotNetNuke.RadEditorProvider" providerPath="~/DesktopModules/Admin/RadEditorProvider" />
  4. Save the web.config file.
Here is a link to help you access and modify your web.config file:  How to Access Your Web.Config

Add Feedback