主頁 > 知識(shí)庫 > Fckeditor XML Request error:internal server error (500) 解決方法小結(jié)

Fckeditor XML Request error:internal server error (500) 解決方法小結(jié)

熱門標(biāo)簽:長春銷售外呼系統(tǒng)業(yè)務(wù) 智能電銷機(jī)器人真的好嗎 株洲外呼營銷系統(tǒng)有哪些 興化400電話辦理多少錢 靈聲智能電話機(jī)器人招聘 企業(yè)電話機(jī)器人辦理 四平電話機(jī)器人哪家好 天津電銷卡外呼系統(tǒng)線路 長春防封卡電銷卡套餐
原來一直能用的ecshop后臺(tái)信息發(fā)布里面的fckeditor上傳功能,換了個(gè)機(jī)器后不能用了。以為是文件損壞,上傳一邊不行。
什么xml錯(cuò)誤,還彈出一個(gè)大的JavaScript alert警告框,內(nèi)容就是服務(wù)器端錯(cuò)誤的500內(nèi)容
網(wǎng)上搜,又說是配置問題,主題問題,想想都不應(yīng)該,直接請(qǐng)求

復(fù)制代碼 代碼如下:

filemanager/connectors/php/connector.php


出了服務(wù)器的500錯(cuò)誤,html文件能訪問,txt也行。
后來從根目錄開始查,發(fā)現(xiàn)到fckeditor目錄里面的php文件開始不能訪問。

改了fckeditor目錄的屬性為755,問題解決。

問題二

網(wǎng)上很多人提到,后來發(fā)布的FCKeditor2.3以后的版本,要設(shè)置fckeditoreditorfilemanagerconnectorsaspx目錄下的connector.aspx,和upload.aspx里的加入theme="",但經(jīng)本人測試,這樣還是不行,仔細(xì)看提示的錯(cuò)誤,原來根本沒有那么復(fù)雜,其實(shí)就是你的上傳文件夾設(shè)置不對(duì),首先要確認(rèn)你的文件夾有寫入的權(quán)限,然后再web.config里面要注意寫入路徑的設(shè)置,~/表示當(dāng)前站點(diǎn)的根目錄,/表現(xiàn)的文件所在電腦的根目錄,建議根據(jù)你的文件結(jié)構(gòu),選擇第一種設(shè)置。

原來是主題惹的禍:

因?yàn)锳SP.NET2.0新增了Theme功能,所以如果在你的工程中你對(duì)Web.config使用到了styleSheetTheme或theme的話那就要再多修改一下。
還是到FCKeditor所在的目錄,分別打開editorfilemanageruploadaspxupload.aspx和editorfilemanagerbrowserdefaultconnectorsaspxconnector.aspx兩個(gè)aspx文件,在page標(biāo)簽中添加Theme=”"或StyleSheetTheme=”"看你在工程使用的是什么就修改什么。修改后如下:

復(fù)制代碼 代碼如下:

%@ Page language="c#" Inherits="FredCK.FCKeditorV2.Uploader" AutoEventWireup="false" Theme="" %>


復(fù)制代碼 代碼如下:

%@ Page language="c#" Inherits="FredCK.FCKeditorV2.Uploader" AutoEventWireup="false" StylesheetTheme="" %>


這樣就解決了500的內(nèi)部錯(cuò)誤。

國外網(wǎng)站

After Download You Change This Lines In FileWorkerBase.cs

復(fù)制代碼 代碼如下:

protected string UserFilesDirectory
{
get
{
if ( sUserFilesDirectory == null )
{
// Get the local (server) directory path translation. this.UserFilesPath
sUserFilesDirectory = Server.MapPath(string.Format("{0}{1}","~","/UserFiles/"));
}
return sUserFilesDirectory ;
}
}

Now Buid Project And Change The Refrence To FredCK.FCKeditorV2.dll (Refrence Again)
復(fù)制代碼 代碼如下:

After Building This Changes And Adding Project Go To fckconfig.js and Change like This Lines
var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | php

問題四:
最近編寫一個(gè)文章管理系統(tǒng),參考了網(wǎng)絡(luò)上的一些經(jīng)驗(yàn)。感覺重新開始學(xué)習(xí)網(wǎng)頁編程,差距真是太大了。想2000年前后,曾經(jīng)學(xué)習(xí)過html、perl、php、asp、JS、VBS,后來還學(xué)習(xí)過jsp等,數(shù)據(jù)庫用過access、mssql、mysql,后來學(xué)過oracle等。如今再拾起來,總是有些似曾相識(shí),但畢竟不是一回事了。
  現(xiàn)在開始學(xué)習(xí)aspx,發(fā)現(xiàn)如果想學(xué)好一種語言,說起來容易,其實(shí)想真正掌握,也絕非易事。如果沒有扎實(shí)的基礎(chǔ),總會(huì)感覺難以得心應(yīng)手。

  文章管理系統(tǒng)中用到了fckeditor上傳文件,在本機(jī)編譯運(yùn)行還是好好的,可是到了win2003服務(wù)器上就不能正常運(yùn)行了。提示FCKeditor : XML Request error:internal server error (500) 。因?yàn)樵O(shè)置成了獨(dú)立的域控制器,找了半天的資料,按所有的要求做了,足足有四、五天,還是不行。后來沒有辦法只好安裝成獨(dú)立服務(wù)器,一試行了,也可能當(dāng)時(shí)沒有弄清。接著按單位的要求加入域,第二天再一試,又不行了,真是無可奈何。
  實(shí)在沒有辦法了,只好從頭找起。把其中的test.html復(fù)制回去,測試結(jié)果原來是引用的FredCK.FCKeditorV2.dll出了問題,真是沒有想到。提示Util.CreateDirectory()出現(xiàn)錯(cuò)誤。找到FredCK.FCKeditorV2.dll的源代碼中的Util.cs,發(fā)現(xiàn)其中有一段為:
// The "_mkdir" function is used by the "CreateDirectory" method.
[DllImport("msvcrt.dll", SetLastError=true)]
private static extern int _mkdir(string path) ;
由此想到可能是系統(tǒng)的這個(gè)msvcrt.dll不一致造成程序調(diào)用出錯(cuò),查看后發(fā)現(xiàn)版本確實(shí)不一樣,服務(wù)器是win2003 sp1的,究竟是不是加入域后訪問規(guī)則的改變,還沒有找到是什么原因。
  仔細(xì)閱讀了源代碼,把其中涉及到msvcrt.dll的去除不用,替換成Directory.CreateDirectory(),編譯后把FredCK.FCKeditorV2.dll復(fù)制到文章管理系統(tǒng)的bin目錄,運(yùn)行正常,win2003 sp1中也正常。
  源代碼中也說明,如果直接使用System.IO.Directory.CreateDirectory()會(huì)出現(xiàn)異常提示,不過它當(dāng)時(shí)是使用vs2003開發(fā)的,而vs2005中沒有出現(xiàn)異常提示,可以正常使用。
  由于fckeditor涉及的語言較多,只能先這樣修改,湊乎著用吧。
  修改后的Util.cs參考源代碼:
復(fù)制代碼 代碼如下:

using System ;
using System.Runtime.InteropServices ;
using System.IO ;
using System.Collections ;

namespace FredCK.FCKeditorV2
{
public sealed class Util
{
private Util()
{}

public static DirectoryInfo CreateDirectory( string path )
{
Directory.CreateDirectory(path);
return new DirectoryInfo(path); }
}
}
您可能感興趣的文章:
  • asp.net 修飾符介紹(關(guān)于public、private、protected、internal)
  • Mysql錯(cuò)誤Cannot find or open table x/x from the internal問題解決方法
  • C#中的Internal關(guān)鍵字小結(jié)

標(biāo)簽:石嘴山 青海 巴彥淖爾 黑龍江 漯河 新疆 貴港 運(yùn)城

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Fckeditor XML Request error:internal server error (500) 解決方法小結(jié)》,本文關(guān)鍵詞  Fckeditor,XML,Request,error,internal,;如發(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 XML Request error:internal server error (500) 解決方法小結(jié)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Fckeditor XML Request error:internal server error (500) 解決方法小結(jié)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章