CuteEditor CuteEditor for ASP
 
Home   DotNetNuke Integration   Configure the provider   Online Demo   Developer's Guide   Forums   Feature Comparison Chart   Order
 

Integrate Cute Editor into DotNetNuke 4.x

If you haven't had this DNN4 integration package yet, please download from here

1. Copy CEHtmlEditorProvider

Copy \Providers\HtmlEditorProviders\CEHtmlEditorProvider in download package to DOTNETNUKE_FOLDER\Providers\HtmlEditorProviders\CEHtmlEditorProvider


2. Copy assembly files

Copy the following files to your DOTNETNUKE_FOLDER\BIN

  • CuteEditor.dll
  • DotNetNuke.CEHtmlEditorProvider.dll
  • CuteEditor.ImageEditor.dll
  • NetSpell.SpellChecker.dll
  • CuteEditor.lic
  • .dic spell checker dictionaries

3. Edit web.config

a. find "htmlEditor" section and replace with the code below

b. add Uploader httpModule httpModules list

This highlight entry is required to enable large files upload through CuteEditor

IIS 5.0, 6.0 and IIS 7.0 Classic mode

<configuration>
  <system.web>
    <httpModules>
      <add name="CuteEditor.UploadModule" type="CuteEditor.UploadModule,CuteEditor"/>
     </httpModules>
  </system.web>
</configuration>

IIS 7.0 Integrated mode

<configuration>
  <system.webServer>
    <modules>
      <add name="CuteEditor.UploadModule" type="CuteEditor.UploadModule,CuteEditor"/>
    </modules>
  </system.webServer>
</configuration>

 

4. Now login to DNN and EditText

CuteEditor should load up properly. Questions: Sales@CuteSoft.net