- I copied two files into the bin folder: FredCK.FCKeditorV2.dll and Delisoft.DSFCK2EditorProvider.dll
- there are two folder in the HTMLEditorProvider folder: the original Ftb3HtmlEditorProvider and the one I copied from the zip file, DSFCKEditorProvider
- so that leaves my web.config! I am going to copy and paste here my whole section of htmleditor. It looks good to me. Am I not seeing something (VERY possible)?
<htmlEditor defaultProvider="DCFck2HtmlEditorProvider">
<providers>
<clear />
<!--
FTB options:
============
toolbarStyle="Office2003|OfficeXP|Office2000|OfficeMac" Sets the default FTB Toolbar style
enableProFeatures="[true|false]" Pro features require a license from FreeTextBox
or you may test them with localhost only
spellCheck="[{none}|IeSpellCheck|NetSpell]" IeSpellCheck is free for non-commercial use only
NetSpell requires some integration work
-->
<add name="Ftb3HtmlEditorProvider"
type="DotNetNuke.HtmlEditor.Ftb3HtmlEditorProvider, DotNetNuke.Ftb3HtmlEditorProvider"
providerPath="~\Providers\HtmlEditorProviders\Ftb3HtmlEditorProvider\"
toolbarStyle="Office2003"
enableProFeatures="false"
spellCheck="" />
<!--
DSFCK options:
============
Documentation not ready yet
-->
<add name="DSFck2HtmlEditorProvider"
type="Delisoft.DNN.Providers.HTMLEditor.FCK2HtmlEditor, Delisoft.DSFCK2EditorProvider"
providerPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/"
CustomConfigurationPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/custom/FCKConfig.js"
EnhancedSecurityDefault="false"
SecureConfigurationPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/custom/FCKConfigSecure.js"
ImageGalleryPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/fckimagegallery.aspx"
ImageUploadPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/fckimagegallery.aspx"
ImageAllowedFileTypes="gif,png,bmp,jpg"
FlashGalleryPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/fckimagegallery.aspx"
FlashUploadPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/fckimagegallery.aspx"
FlashAllowedFileTypes="fla,swf"
LinksGalleryPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/fcklinkgallery.aspx"
DynamicStylesGeneratorPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/DSFCKStyles.aspx"
DynamicStylesCaseSensitive="true"
DynamicStylesGeneratorFilter="controlpanel|filemanager|mainmenu|wizard"
StaticStylesFile="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/FCK2/fckstyles.xml"
StylesDefaultMode="Static"
DynamicCSSGeneratorPath="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/DSFCKCSS.aspx"
StaticCSSFile="~/Providers/HtmlEditorProviders/DSFCKEditorProvider/FCK2/editor/css/fck_editorarea.css"
CSSDefaultMode="static"
spellCheck="ieSpell"
AvailableToolbarSkins="Office2003,Silver"
DefaultToolbarSkin="Office2003"
AvailableToolBarSets="DNNDefault,NoGallery,Basic"
DefaultToolbarSet="DNNDefault"
DefaultImageGallerySkin="Default"
DefaultFlashGallerySkin="Default"
DefaultLinksGallerySkin="Default"
DSFCKDebugMode="false"
UseFCKSource="false" />
</providers>
</htmlEditor>