DedeCms fckeditor編輯器空白無(wú)法顯示的相關(guān)問(wèn)題

字號(hào):


    問(wèn)題在于服務(wù)器的設(shè)置,而不是瀏覽器,或者源碼的問(wèn)題。其實(shí)解決辦法還是很簡(jiǎn)單的。如果你是自己搭建的本地PHP環(huán)境就好辦了。
    用文本編輯器打開(kāi)這個(gè)文件:
    Apache\conf\httpd.conf
    把其中的
    #EnableSendfile off copyright
    改成
    EnableSendfile off
    即刪掉行首的 # 符號(hào)。
    然后重啟你的服務(wù)器,清空瀏覽器網(wǎng)頁(yè)緩存。
    另外,把 Sendfile 關(guān)閉后,還順便解決了織夢(mèng)中大圖無(wú)法顯示的問(wèn)題以及播放影音斷斷續(xù)續(xù)的問(wèn)題。
    enablesendfile:控制是否使用sendfile kernel支持發(fā)送文件
    # (如果操作系統(tǒng)支持的話(huà))。默認(rèn)為on,如果你的服務(wù)器安裝在網(wǎng)絡(luò)文件系統(tǒng)
    # (nfs)上,請(qǐng)你關(guān)閉它。
    # 參見(jiàn)<a target="_blank">http://httpd.apache.org/docs-2.0/mo...#enablesendfile</a>
    #
    # enablesendfile off