Ajaxplorer - 打开和下载小文本文件

时间:2013-08-06 22:05:18

标签: php fileserver pydio

当我尝试打开一个小文本文件(< 1kB)时,文本编辑器不显示任何内容(空白页面)或类似内容(在源代码编辑器中):

<html><body><script>document.cookie=’eeeeeee=a026c7c8eeeeeee_a026c7c8; path=/’;window.location.href=window.location.href;</script></body></html>

每当我下载一个小文件时,该文件最终都是空的。

如果我使用了像filezilla这样的其他内容,则下载后该文件不会为空。

响应或控制台中似乎没有任何错误。适用于较大的文件。服务器正在运行php 5.3.8。有什么想法吗?

编辑:

class.TextEditor.js打开文本文件时运行的相关代码:

loadFileContent : function(fileName){
    this.currentFile = fileName;
    var connexion = new Connexion();
    connexion.addParameter('get_action', 'get_content');
    connexion.addParameter('file', fileName);   
    connexion.onComplete = function(transp){
        this.parseTxt(transp);
        this.updateTitle(getBaseName(fileName));
    }.bind(this);
    this.setModified(false);
    this.setOnLoad(this.textareaContainer);
    connexion.sendAsync();
},

0 个答案:

没有答案