Integrate CuteEditor into CommunityServer 2008
If you haven't had CS2008 integration package,
download now.
1. Copy assembly files to CS2008 BIN 
Copy all files below to your CommunityServer 2008 bin.
- CuteEditor.dll
- Telligent.CuteEditorWraper.dll
- CuteEditor.ImageEditor.dll
- NetSpell.SpellChecker.dll
- CuteEditor.lic
- .dic Spell Checker Dictionary files
2. Copy CuteEditor Client files 
Copy entire CuteSoft_Client folder to CommunityServer_Folders\CuteSoft_Client
3. Edit communityserver.config "editors" section
Open \CommunityServer.config, find "editors" section and
replace with the code shown below
4. Add Uploader httpModule to web.config httpModules list
Open \web.config and add in httpModule. This
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>
5. Log in as admin, write a new forum post. Your
CuteEditor should look like this
Admin toolbar layout and security policy are
configurable in XML files
- ~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/CSAdministrator.config (toolbar layout)
- ~/CuteSoft_Client/CuteEditor/Configuration/Security/Administrator.config (security policy)

Toolbar is simplified for registered user
Registered user toolbar layout and security policy
are configurable in XML files
- ~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/CSRegistered.config (toolbar layout)
- ~/CuteSoft_Client/CuteEditor/Configuration/Security/Registered.config (security policy)
|