CKEditor上傳圖片—配置CKFinder(from www.sysoft.cc www.sysoft.net.cn)

來源:互聯網
上載者:User

標籤:style   blog   http   io   ar   color   使用   sp   java   

CKEditor上傳圖片—配置CKFinder
在網站開發中,如果有發布類似新聞的圖文混排需求時,CKEditor不失為一個很好的選擇,如下:

http://ckeditor.com/download

它的前身是FCKEditor,隨著它的更新,上傳圖片的功能被分離出去了,現在如果需要實現上傳圖片,要麼自己寫代碼,還有一種方法是使用CKFinder,如下:

http://ckfinder.com/download

下面詳細描述一下使用它們的時候如何配置。

CKEditor我下載的是3.6.4,CKFinder下載的是2.3 for ASP.NET,首先解壓所有的檔案,然後將ckeditor和ckfinder檔案夾放到網站的目錄下,可以刪除ckeditor和ckfinder檔案夾下的_samples、_source 檔案夾,將CKFinder.dll添加到網站的bin/檔案夾中,然後在網站頁面頭部添加js的引用,具體路徑根據自己放置的路徑設定,如下:

<script src="../editor/ckeditor/ckeditor.js" type="text/javascript"></script><script src="../editor/ckfinder/ckfinder.js" type="text/javascript"></script>

在頁面中添加一個textarea,具體代碼如下:

<textarea name="individual" id="individual" runat="server"></textarea><script type="text/javascript">    CKEDITOR.replace(‘individual‘);</script>

接下來開啟ckeditor檔案夾下的config.js檔案,在CKEDITOR.editorConfig = function (config) {};方法中添加如下代碼:

config.filebrowserImageBrowseUrl = ‘../editor/ckfinder/ckfinder.html?Type=Images‘;config.filebrowserFlashBrowseUrl = ‘../editor/ckfinder/ckfinder.html?Type=Flash‘;config.filebrowserUploadUrl = ‘../editor/ckfinder/core/connector/aspx/connector.aspx?command=QuickUpload&type=Files‘;config.filebrowserImageUploadUrl = ‘../editor/ckfinder/core/connector/aspx/connector.aspx?command=QuickUpload&type=Images‘;config.filebrowserFlashUploadUrl = ‘../editor/ckfinder/core/connector/aspx/connector.aspx?command=QuickUpload&type=Flash‘;config.filebrowserWindowWidth = ‘800‘;  //“瀏覽伺服器”彈出框的size設定config.filebrowserWindowHeight = ‘500‘;

上面的路徑也需要根據自己的設定。

然後開啟ckfinder檔案夾下面的config.ascx檔案,為了所有的人都能看到伺服器上上傳檔案夾裡面的檔案,將函數public override bool CheckAuthentication傳回值改為true,其實也可以根據自身網站的安全需要去更改代碼,這裡只是為了簡單實現,代碼如下:

public override 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 on your system.        return true;    }

 

CKEditor上傳圖片—配置CKFinder(from www.sysoft.cc www.sysoft.net.cn)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.