我在本地用FCKeditor 编辑了一页带图片的文本内容,可发布到网上时却显示不出来。只能发布出网站了后再添加内容才行。这样很不方便。有高手能解决这个问题吗?

解决方案 »

  1.   

    看看配置。是不是配置有问题?
    还有就是发布的时候,要记得把img文件夹放上去
      

  2.   

    上传到了相关文件夹,再本地都能显示出来。
    路径配置我在web.config里写了路径
      

  3.   


    <!--FCKEdit配置-->
    <add key="FCKeditor:BasePath" value="~/fckeditor/"/>
    <!--编辑器所在路径-->
    <add key="FCKeditor:UserFilesPath" value="~~/userfiles/"/>配置写了这两句,还有就没写了,是不是少写了什么
      

  4.   

    相对路径
    使用FredCK.FCKeditorV2.dll2.6.3,在editor\filemanager\connectors\aspx目录下
    修改config.ascx,配置上传文件路径
    UserFilesPath = "/UserFiles/";
      

  5.   


    <%@ Control Language="C#" EnableViewState="false" AutoEventWireup="false" Inherits="FredCK.FCKeditorV2.FileBrowser.Config" %>
    <%--
     * FCKeditor - The text editor for Internet - http://www.fckeditor.net
     * Copyright (C) 2003-2009 Frederico Caldeira Knabben
     *
     * == BEGIN LICENSE ==
     *
     * Licensed under the terms of any of the following licenses at your
     * choice:
     *
     *  - GNU General Public License Version 2 or later (the "GPL")
     *    http://www.gnu.org/licenses/gpl.html
     *
     *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
     *    http://www.gnu.org/licenses/lgpl.html
     *
     *  - Mozilla Public License Version 1.1 or later (the "MPL")
     *    http://www.mozilla.org/MPL/MPL-1.1.html
     *
     * == END LICENSE ==
     *
     * Configuration file for the File Browser Connector for ASP.NET.
    --%>
    <script runat="server"> /**
     * This function must check the user session to be sure that he/she is
     * authorized to upload and access files in the File Browser.
     */
    private bool CheckAuthentication()
    {
    // WARNING : DO NOT simply return "true". By doing so, you are allowing
    // "anyone" to upload and list the files in your server. You must implement
    // some kind of session validation here. Even something very simple as...
    //
    // return ( Session[ "IsAuthorized" ] != null && (bool)Session[ "IsAuthorized" ] == true );
    //
    // ... where Session[ "IsAuthorized" ] is set to "true" as soon as the
    // user logs in your system. return true;
    } public override void SetConfig()
    {
    // SECURITY: You must explicitly enable this "connector". (Set it to "true").
    Enabled = CheckAuthentication(); // URL path to user files.
    UserFilesPath = "/userfiles/"; // The connector tries to resolve the above UserFilesPath automatically.
    // Use the following setting it you prefer to explicitely specify the
    // absolute path. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.
    // Attention: The above 'UserFilesPath' URL must point to the same directory.
    UserFilesAbsolutePath = ""; // Due to security issues with Apache modules, it is recommended to leave the
    // following setting enabled.
    ForceSingleExtension = true; // Allowed Resource Types
    AllowedTypes = new string[] { "File", "Image", "Flash", "Media" }; // For security, HTML is allowed in the first Kb of data for files having the
    // following extensions only.
    HtmlExtensions = new string[] { "html", "htm", "xml", "xsd", "txt", "js" }; TypeConfig[ "File" ].AllowedExtensions = new string[] { "7z", "aiff", "asf", "avi", "bmp", "csv", "doc", "fla", "flv", "gif", "gz", "gzip", "jpeg", "jpg", "mid", "mov", "mp3", "mp4", "mpc", "mpeg", "mpg", "ods", "odt", "pdf", "png", "ppt", "pxd", "qt", "ram", "rar", "rm", "rmi", "rmvb", "rtf", "sdc", "sitd", "swf", "sxc", "sxw", "tar", "tgz", "tif", "tiff", "txt", "vsd", "wav", "wma", "wmv", "xls", "xml", "zip" };
    TypeConfig[ "File" ].DeniedExtensions = new string[] { };
    TypeConfig[ "File" ].FilesPath = "%UserFilesPath%file/";
    TypeConfig[ "File" ].FilesAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%file/" );
    TypeConfig[ "File" ].QuickUploadPath = "%UserFilesPath%";
    TypeConfig[ "File" ].QuickUploadAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%" ); TypeConfig[ "Image" ].AllowedExtensions = new string[] { "bmp", "gif", "jpeg", "jpg", "png" };
    TypeConfig[ "Image" ].DeniedExtensions = new string[] { };
    TypeConfig[ "Image" ].FilesPath = "%UserFilesPath%image/";
    TypeConfig[ "Image" ].FilesAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%image/" );
    TypeConfig[ "Image" ].QuickUploadPath = "%UserFilesPath%";
    TypeConfig[ "Image" ].QuickUploadAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%" ); TypeConfig[ "Flash" ].AllowedExtensions = new string[] { "swf", "flv" };
    TypeConfig[ "Flash" ].DeniedExtensions = new string[] { };
    TypeConfig[ "Flash" ].FilesPath = "%UserFilesPath%flash/";
    TypeConfig[ "Flash" ].FilesAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%flash/" );
    TypeConfig[ "Flash" ].QuickUploadPath = "%UserFilesPath%";
    TypeConfig[ "Flash" ].QuickUploadAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%" ); TypeConfig[ "Media" ].AllowedExtensions = new string[] { "aiff", "asf", "avi", "bmp", "fla", "flv", "gif", "jpeg", "jpg", "mid", "mov", "mp3", "mp4", "mpc", "mpeg", "mpg", "png", "qt", "ram", "rm", "rmi", "rmvb", "swf", "tif", "tiff", "wav", "wma", "wmv" };
    TypeConfig[ "Media" ].DeniedExtensions = new string[] { };
    TypeConfig[ "Media" ].FilesPath = "%UserFilesPath%media/";
    TypeConfig[ "Media" ].FilesAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%media/" );
    TypeConfig[ "Media" ].QuickUploadPath = "%UserFilesPath%";
    TypeConfig[ "Media" ].QuickUploadAbsolutePath = ( UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%" );
    }</script>
    都改好了的
      

  6.   

    在网上空间里查了Fckeditor/filemanager/connectors/aspx/~~/userfiles/image文件夹里图片都在
      

  7.   

    <add key="FCKeditor:UserFilesPath" value="~~/userfiles/"/>
    这里应该是<add key="FCKeditor:UserFilesPath" value="~/userfiles/"/>吧,
    你是想把用户上传的文件保存到根目录下的userfiles这个文件夹吧,你用~~/userfiles上传时就自动在Fckeditor/filemanager/connectors/aspx下面又创建一个文件夹,你在本地调试的时候的目录跟放在iis下的访问目录是不一样的,比如在VS里调试时的访问路径是http://localhost:随机端口号/网站所在文件夹名/,iis里则是http://域名/
      

  8.   

    请问图片改了后,我怎么找不到了userfiles这个文件了,它在哪个文件下面