Instructions for deploying the Telerik editor provider for Community Server.

1. Copy the Telerik.CommunityServer.RadEditorWrapper.dll from this archive to the bin folder of your CS web site.

2. Copy the RadControls folder from this archive to the root folder of your CS web site.

3. Get the RadControls for ASP.NET AJAX hotfix zip from the Client.Net site (http://www.telerik.com/clientnet) and then extract it in a convenient location.

4. Copy the RadControls assemblies from the bin folder of the hotfix archive to the bin folder of your CS web site.

5. Copy the RadSpell dictionaries (*.TDF) from the App_Data/RadSpell folder of the hotfix archive to the RadControls/RadSpell folder of your CS web site.

6. Edit the communityserver.config file in the root of your CS web site and add the RadEditor provider:
...
	<editors>
		<editor name="RadEditor" type="Telerik.CommunityServer.RadEditorWrapper, Telerik.CommunityServer.RadEditorWrapper" default="true"/>
...


Configuring the editor:

You can set the editor configuration options from the <editor> element in your communityserver.config file or from the ConfigFile.xml file in the RadControls folder.
Note that content paths (ImagesPaths, FlashPaths, UploadImagesPaths, etc.) can only be set from the configuration file).
For example:

(communityserver.config)
...
<editorOption name="ToolsFile" value="~/RadControls/toolsfile.xml" />
...

(ConfigFile.xml)
...
<property name="ToolsFile">~/RadControls/ToolsFile.xml</property>
<property name="ImagesPaths">
	<item>~/</item>
</property>
...