Integrate RTE with Telligent Community
The following guide shows the steps to implement a Rich TextEditor for .NET Control into Telligent Community application.
If you haven't downloaded the software, please download it from here.
1. Copy RichTextEditor client folder
The "richtexteditor" folder and all file it contains should be deployed to your application root path.
2. Deploy RichTextEditor.dll assembly and license file
Copy the following files to your application bin folder from 'integration package\bin' folder.
- RichTextEditor.dll
- Telligent.RTEWraper.dll
- NetSpell.SpellChecker.dll
- richtexteditor.lic
- *.dic (dictionary files)
3. Edit your communityserver.config and locate the "editors" section. Change it to:
This section can be found in 'integration package\communityserver-merge.xml' file.
4. Add Uploader httpModule to web.config's httpModules list
To allow Rich TextEditor to upload large files, you need to add Uploader HttpModule to your application.
IIS Classic mode
<configuration>
<system.web>
<httpModules>
<add name="UploadModule" type="RTE.UploadModule,RichTextEditor"/>
</httpModules>
</system.web>
</configuration>
IIS Integrated mode
<configuration>
<system.webServer>
<modules>
<add name="UploadModule" type="RTE.UploadModule,RichTextEditor"/>
</modules>
</system.webServer>
</configuration>