小さなテキスト ファイル (<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();
},