Installing RichTextEditor for DotNetNuke 6.x
RichTextEditor for ASP.NET is by far the fastest, easiest, most powerful WYSIWYG
browser-based HTML Editor for ASP.NET. It enables ASP.NET Web developers to replace
Telligent built-in editor with a more powerful editor control.
Besides replacing the default editor built in SharePoint and serving as a building
block for a web part page, RichTextEditor for SharePoint can also be quick added
to any SharePoint page directly via the SharePoint ribbon button.
The following guide shows the steps to implement a Rich TextEditor for .NET Control into DotNetNuke 6.x. If you haven't downloaded the software, please download it from
here.
|
|
1. Install RTE module.
In admin panel, install zip file (RTE-Html-Provider-1.0.0-For-Dnn6.x.zip) as new Extension (Host->Extensions->Install Extension Wizard).
2. 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 5.0, 6.0 and IIS 7.0 Classic mode
<configuration>
<system.web>
<httpModules>
<add name="UploadModule" type="RTE.UploadModule,RichTextEditor"/>
</httpModules>
</system.web>
</configuration>
IIS 7.0 Integrated mode
<configuration>
<system.webServer>
<modules>
<add name="UploadModule" type="RTE.UploadModule,RichTextEditor"/>
</modules>
</system.webServer>
</configuration>
|
Download ›
|