When using the text/html module to "browse" the server for an image, I get the following:
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'DotNetNuke.HtmlEditor.FckHtmlEditorProvider.FCKImageGallery'.
Source Error:
Line 1: <%@ Page Language="vb" ValidateRequest="false" Trace="false" CodeBehind="fckimagegallery.aspx.vb" AutoEventWireup="false" Inherits="DotNetNuke.HtmlEditor.FckHtmlEditorProvider.FCKImageGallery" %>
Line 2: <HTML>
Line 3: <HEAD id="Head" runat="server">
|
Source File: /Providers/HtmlEditorProviders/Fck/fckimagegallery.aspx Line: 1
Server Error in '/' Application.
Parser Error
Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
Here's the FCK section of my web.config:
<htmlEditor defaultProvider="FckHtmlEditorProvider">
<providers>
<clear />
<add name="FckHtmlEditorProvider"
type="DotNetNuke.HtmlEditor.FckHtmlEditorProvider.FckHtmlEditorProvider, DotNetNuke.FckHtmlEditorProvider"
providerPath="~/Providers/HtmlEditorProviders/Fck/"
CustomConfigurationPath="~/Providers/HtmlEditorProviders/Fck/custom/FCKConfig.js"
EnhancedSecurityDefault="false"
SecureConfigurationPath="~/Providers/HtmlEditorProviders/Fck/custom/FCKConfigSecure.js"
ImageGalleryPath="~/Providers/HtmlEditorProviders/Fck/fckimagegallery.aspx"
ImageUploadPath="~/Providers/HtmlEditorProviders/Fck/fckimagegallery.aspx"
ImageAllowedFileTypes="gif,png,bmp,jpg"
FlashGalleryPath="~/Providers/HtmlEditorProviders/Fck/fckimagegallery.aspx"
FlashUploadPath="~/Providers/HtmlEditorProviders/Fck/fckimagegallery.aspx"
FlashAllowedFileTypes="fla,swf"
LinksGalleryPath="~/Providers/HtmlEditorProviders/Fck/fcklinkgallery.aspx"
DynamicStylesGeneratorPath="~/Providers/HtmlEditorProviders/Fck/FCKStyles.aspx"
DynamicStylesCaseSensitive="true"
DynamicStylesGeneratorFilter="controlpanel|filemanager|mainmenu|wizard"
StaticStylesFile="~/Providers/HtmlEditorProviders/Fck/FCKeditor/fckstyles.xml"
StylesDefaultMode="Static"
DynamicCSSGeneratorPath="~/Providers/HtmlEditorProviders/Fck/FCKCSS.aspx"
StaticCSSFile="~/Providers/HtmlEditorProviders/Fck/FCKeditor/editor/css/fck_editorarea.css"
CSSDefaultMode="static"
spellCheck="ieSpell"
AvailableToolbarSkins="Office2003,Silver"
DefaultToolbarSkin="Office2003"
AvailableToolBarSets="DNNDefault,Default,NoGallery,Basic"
DefaultToolbarSet="DNNDefault"
DefaultImageGallerySkin="Default"
DefaultFlashGallerySkin="Default"
DefaultLinksGallerySkin="Default"
FCKDebugMode="false"
UseFCKSource="false"
OptionsOpenMode="ShowModalDialog"
ShowModuleType="true"
CustomOptionsDialog="Admin" />
</providers>
</htmlEditor>