Re: Gettings errors when I overwrote CE for DNN 4X with CE for DNN 5X

  •  03-02-2010, 12:35 PM

    Re: Gettings errors when I overwrote CE for DNN 4X with CE for DNN 5X

    Dear dsmajor,
     
    Please check NukeEdit4\document\DotNetNuke-Integration.htm in download package, that is installation steps for dnn4.x, have an inversion operation and uninstall CuteEditor for DNN4.X
     
    When finish those steps, install cuteeditor for dnn5.x, the installation steps can be found at NukeEdit5\document\DotNetNuke-Integration.htm in download package, the details are as follows:

    1. Deploying the CEHtmlEditorProvider

    Add the CEHtmlEditorProvider (located in the archive) to the DotNetNuke 4.x solution. CEHtmlEditorProvider folder and all file it contains should be deployed to DOTNETNUKE_FOLDER\Providers\HtmlEditorProviders.


    2. Deploying CuteEditor.dll assembly and license file

    Copy the following files to your application bin folder.

    • CuteEditor.dll
    • DotNetNuke.CEHtmlEditorProvider.dll
    • CuteEditor.ImageEditor.dll
    • NetSpell.SpellChecker.dll
    • CuteEditor.lic

    3. Edit your web.config and locate the "htmlEditor" section. Change it to:

    4. Add Uploader httpModule to web.config's httpModules list

    To allow CuteEditor to upload large files, you need to add Uploader HttpModule to your application.

    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>
     
     
    Regards,
    Eric
View Complete Thread