Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsFCKeditorFCKeditor/Providers/HtmlEditorProviders/Fck/FCKStyles.aspx not loading/Providers/HtmlEditorProviders/Fck/FCKStyles.aspx not loading
Previous
 
Next
New Post
4/20/2009 11:06 AM
 

I have been using an installation of of 04.09.01 for about 3 months or so with no real issues. I was developing a new portal and had editted probably 5 or 6 pages without issue. I now get this error when I try and edit text in an HTML/TEXT module.

UserName: admin
ActiveTabID: 186
ActiveTabName: Plans
RawURL: /Providers/HtmlEditorProviders/Fck/FCKStyles.aspx?tabid=186
AbsoluteURL: /Providers/HtmlEditorProviders/Fck/FCKStyles.aspx
AbsoluteURLReferrer: http://www.b2cdesign.com/Providers/HtmlEditorProviders/Fck/FCKeditor/editor/fckeditor.html?InstanceName=dnn_ctr589_EditHTML_teContent_teContent&Toolbar=DNNDefault
UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)
DefaultDataProvider: DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider
ExceptionGUID: 45bee29e-b831-4fc3-8cad-b710e2312218
InnerException: Invalid file name for file monitoring: ''. Common reasons for failure include: - The filename is not a valid Win32 file name. - The filename is not an absolute path. - The filename contains wildcard characters. - The file specified is a directory. - Access denied.
FileName:
FileLineNumber: 0
FileColumnNumber: 0
Method: System.Web.FileChangesMonitor.StartMonitoringPath
StackTrace:
Message: DotNetNuke.Services.Exceptions.PageLoadException: Invalid file name for file monitoring: ''. Common reasons for failure include: - The filename is not a valid Win32 file name. - The filename is not an absolute path. - The filename contains wildcard characters. - The file specified is a directory. - Access denied. ---> System.Web.HttpException: Invalid file name for file monitoring: ''. Common reasons for failure include: - The filename is not a valid Win32 file name. - The filename is not an absolute path. - The filename contains wildcard characters. - The file specified is a directory. - Access denied. at System.Web.FileChangesMonitor.StartMonitoringPath(String alias, FileChangeEventHandler callback, FileAttributesData& fad) at System.Web.Caching.CacheDependency.Init(Boolean isPublic, String[] filenamesArg, String[] cachekeysArg, CacheDependency dependency, DateTime utcStart) at System.Web.Caching.CacheDependency..ctor(String[] filenames) at DotNetNuke.HtmlEditor.FckHtmlEditorProvider.fckStyles.Page_Load(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) --- End of inner exception stack trace ---

 

It seems like it is having an issue with /Providers/HtmlEditorProviders/Fck/FCKStyles.aspx but what is weird is that it only effect certain pages. Other pages in the same portal I can bring up the editor just fine. I would would have though that if it was an access problem to the provider I would  see this across all pages. Has anyone seen this before or has any idea of whats going on.

Thanks

 
New Post
7/7/2009 12:27 PM
 

I had the same error and I was able to get rid of it by replacing the <htmlEditor> section in the web.config with the section from the Install.txt file in FckHtmlEditorProvider_02.00.03_Install.zip

"<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="dynamic"
     DynamicCSSGeneratorPath="~/Providers/HtmlEditorProviders/Fck/FCKCSS.aspx"
     StaticCSSFile="~/Providers/HtmlEditorProviders/Fck/FCKeditor/editor/css/fck_editorarea.css"
     CSSDefaultMode="dynamic"
     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"
     FixOldDNNPostback="false"
     CustomOptionsDialog="Admin" />
   </providers>
  </htmlEditor>"

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsFCKeditorFCKeditor/Providers/HtmlEditorProviders/Fck/FCKStyles.aspx not loading/Providers/HtmlEditorProviders/Fck/FCKStyles.aspx not loading


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out