主頁 > 知識(shí)庫 > FCKeditor編輯器添加圖片上傳功能及圖片路徑問題解決方法

FCKeditor編輯器添加圖片上傳功能及圖片路徑問題解決方法

熱門標(biāo)簽:隨州外呼調(diào)研系統(tǒng) 微信地圖標(biāo)注合并了 400電話辦理包年 本地電話機(jī)器人 如何修改多個(gè)百度地圖標(biāo)注 東營(yíng)電銷 南寧網(wǎng)絡(luò)外呼系統(tǒng)運(yùn)營(yíng)商 高德地圖地圖標(biāo)注服務(wù)中心 r語言數(shù)據(jù)可視化地圖標(biāo)注

現(xiàn)在很多CMS系統(tǒng)因?yàn)榘踩驎?huì)把后臺(tái)編輯器里的上傳功能給去除,但這樣一來對(duì)實(shí)際使用過程造成了很多麻煩,今天我們以ASPCMS系統(tǒng)的FCKeditor編輯器為例,說明一下如何增加圖片上傳功能。

1. 打開網(wǎng)站后臺(tái)編輯器里的admin/editor/fckconfig.js這個(gè)文件

找到FCKConfig.ImageUpload = false 這句,把false改成true就行啦。

FCKConfig.ImageBrowser = false ; 這里也同樣把false改成true

2. 看一下admin/editor/editor目錄下面的filemanager文件夾是否存在,如果不在就去下載一個(gè)2.6.3版本以上的fck編輯器,把里面的filemanager文件夾復(fù)制過來。當(dāng)然這里是ASP的,所以其他語言像PHP什么的文件夾可以刪除。

3. 接下來設(shè)置文件上傳的路徑,打開admin/editor/filemanager/connectors/asp文件夾的config.asp這個(gè)文件進(jìn)行如下設(shè)置

ConfigIsEnabled = True 是否開啟上傳功能

ConfigUserFilesPath = “../../../../../uploads/” 文件上傳目錄,相對(duì)于該文件夾

這里要重點(diǎn)指出的ConfigUserFilesPath = “../../../../../uploads/”這里如果這樣設(shè)置,我最后發(fā)現(xiàn)兩個(gè)問題

A. ConfigUserFilesPath = “../../../../../uploads/”這樣設(shè)置雖然圖片可以上傳,但插入編輯器里的圖片路徑是有問題的,所以我試了很多次最后把它改成ConfigUserFilesPath = “/uploads/”就可以了。如果您的網(wǎng)站是放在下級(jí)文件夾里也可以這樣設(shè)置ConfigUserFilesPath = “文件夾名稱/uploads/”。

B. 至于第二個(gè)問題,我感覺好奇怪,F(xiàn)CKeditor編輯器的圖片路徑會(huì)出現(xiàn)兩個(gè)斜杠//,雖然圖片也能顯示,但看起來總歸不舒服。請(qǐng)打開admin/editor/editor/ filemanager/connectors/asp文件夾里的,io.asp這個(gè)文件,請(qǐng)把:

function CombinePaths( sBasePath, sFolder)

CombinePaths = RemoveFromEnd(sBasePath, "/") "/" RemoveFromStart( sFolder, "/")

end function

改成

function CombinePaths( sBasePath, sFolder)

sFolder = replace(sFolder, "", "/")

CombinePaths = RemoveFromEnd(sBasePath, "/") "/" RemoveFromStart( sFolder, "/")

end function

4. 最后設(shè)置上傳后的圖片自動(dòng)改名,請(qǐng)打開admin/editor/editor/ filemanager/connectors/asp文件夾里的commands.asp這個(gè)文件

在文件中添加如下語句

dim rannum

dim dtnow

dim getnewfilename

dtnow=now()

randomize

rannum=int(90*rnd)+10

getnewfilename=year(dtnow) right("0" month(dtnow),2) right("0" day(dtnow),2) right("0" hour(dtnow),2) right("0”" minute(dtnow),2) right("0" second(dtnow),2) rannum

并將

sFileName = ouploader.file("newfile")name

改為

sFileName = getnewfilename "." split(ouploader.file("newfile").name,".")(1)

以上是關(guān)于ASPCMS網(wǎng)站系統(tǒng)的一點(diǎn)小小的改進(jìn),希望對(duì)有這方面需要的朋友有所幫助,今后我們還將關(guān)注該系統(tǒng)的其他問題。

用正則表達(dá)式解決FCKEditor圖片路徑問題

在用FCKEditor發(fā)郵件時(shí),正文中圖片會(huì)顯示不出來,因?yàn)樗J(rèn)路徑是userfiles/images/*.jpg,如下

input type="image" height="131" width="139"
src="/userfiles/image/_W@S2WETFST%25F%25Z21AQCI3P.JPG" />

怎么轉(zhuǎn)換為:

input type="image" height="131" width="139" src="\\[Server]\userfiles\image\_W@S2WETFST%25F%25Z21AQCI3P.JPG" />

asp解法:

'郵件正文
  strsql="select txt,Filename,File_Name from bbs where unique_id="+Request.QueryString("Unique_ID")
  set rs=connection.execute(strsql)
    
  myTxt = rs("txt")
  '利用正則表達(dá)式替換img標(biāo)記
dim objRe
set objRe = New RegExp
'設(shè)定正則式
objRe.Pattern = "(src=)('|"CHR(34)"| )?(.[^'| |"CHR(34)"]*)(\.)(jpg|gif|png|bmp|jpeg)('|"CHR(34)"| |>)?"
objRe.IgnoreCase = true
objRe.Multiline = true
objRe.Global = true
set matches = objRe.Execute(myTxt)
newtxt = myTxt
for each match in matches
  
  cccc = split(match.value,"/")
  if(ubound(cccc) > 0) then
  '獲得應(yīng)該的字符串
  for i=0 to ubound(cccc)
    if i = 0 then
      mystr = cccc(0)"\\[server]\"
      
    else if i= ubound(cccc) then
      mystr = mystrcccc(i) 
    else
  
      mystr = mystrcccc(i)"\"
      
    end if
  end if
    
  next
  newtxt = Replace(newtxt,match.value,mystr)
  end if
  
next
set objRE = nothing

  a = "body background='\\[server]\2008back.gif'>"  
  Body=a newtxt "/body>"

.Net 解法:

using System.Text.RegularExpressions;
string  convertExp(string strTxt)
  {
    
    string strPattern = "(src=)('|" + (char)34 + "| )?(.[^'| |" + (char)34 + "]*)(\\.)(jpg|gif|png|bmp|jpeg)('|" + (char)34 + "| |>)?";
    // Compile the regular expression.
    Regex objRe=new Regex(strPattern);
    // Match the regular expression pattern against a text string.
    MatchCollection matches=objRe.Matches(strTxt);
    string mystr="";
    string strNewTxt = strTxt;
   
    foreach (Match match in matches)
    {
     
        string[] strC = match.Value.Split('/');
         //if it's the bottom jpg,break Foreach
        if (strC[strC.Length - 1].ToString() == "asdf.jpg\"")
        {
          break;
        }
        if (strC.Length != 0)
        {
          for (int i = 0; i  strC.Length; i++)
          {
            if (i == 0)
              mystr = strC[0] + "\\\\[server]\\";
            else if (i == strC.Length - 1)
              mystr = mystr + strC[i];
            else
              mystr = mystr + strC[i] + "\\";
          }
          strNewTxt = strNewTxt.Replace(match.Value, mystr);
        }
      
    }
    return strNewTxt;


  }

調(diào)用:

StringBuilder sb = getMailContent(strSubject);
lblPreview.Text = convertExp(sb.ToString());

到此這篇關(guān)于FCKeditor編輯器添加圖片上傳功能及圖片路徑問題解決方法的文章就介紹到這了,更多相關(guān)FCKeditor 圖片上傳內(nèi)容請(qǐng)搜素腳本之家以前的文章或下面相關(guān)文章,希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • asp.net+FCKeditor上傳圖片顯示叉叉圖片無法顯示的問題的解決方法
  • 修改fckeditor的文件上傳功能步驟
  • 整合ckeditor+ckfinder,解決上傳文件路徑問題
  • 通過Fckeditor把圖片上傳到獨(dú)立圖片服務(wù)器的方法
  • ASp.net下fckeditor配置圖片上傳最簡(jiǎn)單的方法
  • 為ckeditor編輯器加上傳圖片的功能
  • Asp.net FCKEditor 2.6.3 上傳文件沒有權(quán)限解決方法
  • FCKeditor ASP.NET 上傳附件研究
  • asp fckeditor自定義上傳文件的文件名
  • CKEditor與dotnetcore實(shí)現(xiàn)圖片上傳功能

標(biāo)簽:德州 宿遷 拉薩 黃石 寧夏 益陽 果洛 西雙版納

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《FCKeditor編輯器添加圖片上傳功能及圖片路徑問題解決方法》,本文關(guān)鍵詞  FCKeditor,編輯器,添加,圖片,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《FCKeditor編輯器添加圖片上傳功能及圖片路徑問題解決方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于FCKeditor編輯器添加圖片上傳功能及圖片路徑問題解決方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章