错误信息:14406 [http8080-Processor23] WARN net.fckeditor.handlers.RequestCycleHandler - No property found for UserAction implementation, any user action will be disabled!
14406 [http8080-Processor23] WARN net.fckeditor.handlers.RequestCycleHandler - No property found for UserPathBuilder implementation! The 'DefaultUserFilesPath' will be used in the ConnectorServlet!

解决方案 »

  1.   

    补充一下
    fckeditor.properties资源文件:connector.userActionIm pl=net.fckeditor.requestcycle.impl.UserActionImplweb.xml配置文件:<?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" 
    xmlns="http://java.sun.com/xml/ns/j2ee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
      <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
       <servlet>
          <servlet-name>Connector</servlet-name>
            <servlet-class>net.fckeditor.connector.ConnectorServlet</servlet-class>
          <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
          <servlet-name>Connector</servlet-name>
          <url-pattern>/fckeditor/editor/filemanager/connectors/*</url-pattern>
        </servlet-mapping>
    </web-app>
      

  2.   

    <script type="text/javascript">
    <!--
    var oFCKeditor = new FCKeditor( 'htmlcode' ) ;
    oFCKeditor.BasePath = 'FCKeditor/';
    oFCKeditor.Config['CustomConfigurationsPath'] = '<%=request.getContextPath()%>/FCKeditor/fckconfig_cws_cms.jsp?dir=' + '<%=StrUtil.UrlEncode(dir_code)%>' ;
    <%if (templateId!=-1 && doc==null) {%>
    oFCKeditor.Value = document.getElementById("divTemplate").innerHTML;
    <%}else{%>
    oFCKeditor.Value = document.getElementById("idTemporary").innerHTML;
    <%}%>
    oFCKeditor.Height = 400 ; oFCKeditor.Config["LinkBrowser"]=false;//文件
    oFCKeditor.Config["ImageBrowser"]=true;
    oFCKeditor.Config["FlashBrowser"]=true; oFCKeditor.Config["LinkUpload"]=false;
    oFCKeditor.Config["ImageUpload"]=false;
    oFCKeditor.Config["FlashUpload"]=false; oFCKeditor.Config["SkinPath"] = "skins/<%=cfg.getProperty("cms.fckeditorSkin")%>/"; oFCKeditor.Create() ;
    //-->
    </script>