CuteEditor CuteEditor for ASP
 
Home   CS 2.1 Integration   Developer's Guide   Forums   Feature Comparison Chart   Order
 

Installing Cute Editor for CommunityServer 2.1

1. Deploying CuteEditor.dll assembly and license file

Copy the following files to your application bin folder.

  • CuteEditor.dll
  • Telligent.CuteEditorWraper.dll
  • CuteEditor.ImageEditor.dll
  • NetSpell.SpellChecker.dll
  • CuteEditor.lic

2. Copy CuteEditor Client files

The "CuteSoft_Client/CuteEditor" folder and all file it contains should be deployed to CommunityServer_FOLDER\CuteSoft_Client\CuteEditor\ on your web site.


3. Copy skin-Editor.Standard.ascx, skin-Editor.Enhanced.ascx files.

The "Themes" folder and all file it contains should be deployed to CommunityServer_FOLDER\Themes\ on your web site.

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>

5. Log in as admin, go to forums and write a new post. Your editor UI should like the image below.

You can customize admin toolbar layout and admin security policy file by editing the following XML file.

  • ~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/CSAdministrator.config (toolbar layout)
  • ~/CuteSoft_Client/CuteEditor/Configuration/Security/Administrator.config (security policy)

Log in as a registered user, go to forums and write a new post. Your editor UI should like the image below.


You can customize registered user toolbar layout and security policy file by editing the following XML file.

  • ~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/CSRegistered.config (toolbar layout)
  • ~/CuteSoft_Client/CuteEditor/Configuration/Security/Registered.config (security policy)