2012-05-02 45 views
1

我有一個CKFinder 2.1.1的問題。當我點擊應該加載它的按鈕時,它會加載窗口,但會出現一個響應:「無法從Web服務器加載XML響應,服務器返回空響應。」加載CKFinder的javascript函數在下面發佈。任何幫助將不勝感激,謝謝!CK finder無法加載來自web服務器的XML響應

$('textarea.contentEditor').ckeditor(function(){}, 
{ 
    //Options~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    resize_enabled : false, 
    height : 600, 
    fontSize_defaultLabel : '12', 
    font_defaultLabel : 'Arial', 
    //scayt_autoStartup : true, 
    extraPlugins : 'contentPreview', 
    contentsCss : [ 
       $('#SITE_ROOT').html() + "/css/base/StandardWellness.css",  
      $('#SITE_ROOT').html() + "/css/base/CKEditorOverrides.css"     
     ], 
    toolbar : 
    [ 
    { name: 'document', items : [ 'Source','-','DocProps','Print','-','Templates' ] }, 
    { name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] }, 
    { name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt' ] }, 
    { name: 'forms', items : [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton',     
     'HiddenField' ] }, 
    '/', 
    { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] }, 
    { name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv','-', 
     'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] }, 
    { name: 'links', items : [ 'Link','Unlink','Anchor' ] }, 
    { name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe' ] }, 
    '/', 
    { name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] }, 
    { name: 'colors', items : [ 'TextColor','BGColor' ] }, 
    { name: 'tools', items : [ 'Maximize', 'ShowBlocks','-','About' ] }, 
    { name: 'MyHealth', items : ['contentPreview']} 
    ] 

}).ckeditor(function(){ 
    //Callback ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    var editor = $('textarea.contentEditor').ckeditorGet();    

    CKFinder.setupCKEditor(editor, { basePath : '../ckfinder/', rememberLastFolder : true }) ; 

    CKEDITOR.on('dialogDefinition', function(ev) 
    { 
    // Take the dialog name and its definition from the event data. 
    var dialogName = ev.data.name; 
    var dialogDefinition = ev.data.definition; 

    if (dialogName == 'image') { 
    dialogDefinition.removeContents('Upload'); 
    call_obj = new Object();     
    } 

    if (dialogName == 'flash') { 
    dialogDefinition.removeContents('Upload'); 
    } 

    if(dialogName == 'link') { 
    dialogDefinition.removeContents('upload'); 
    } 
    }); 
}); 

回答

0

仔細檢查在您的CKEditor/config.php文件錯誤。 我有同樣的問題,直到我發現那裏有一個錯字。