5
원격 서버에서 업로드를 이동하려고합니다. 나는 아래의 코드를 사용하여 파일을 선택하고 파일 업로드 업로드를 클릭하지만 오류를 반환 말을 한 후 코드 : "-200"메시지 : "HTTP 오류"Plupload 오류 -200 HTTP 오류
var uploader = new plupload.Uploader(
{
runtimes : 'html4, html5, flash, silverlight',
browse_button : 'bt_browse',
container: document.getElementById('container'),
url : 'http://remote.com/upload.php',
silverlight_xap_url : 'js/Moxie.xap',
chunks_size: '20mb',
max_retries: 3,
filters : {
max_file_size : '100mb'
},
multi_selection : true,
init: {
PostInit: function() {
document.getElementById('filelist').innerHTML = '';
document.getElementById('bt_uploadfiles').onclick = function() {
uploader.start();
return false;
};
},
FilesAdded: function(up, files) {
plupload.each(files, function(file) {
//build list
}},
UploadProgress: function(up, file) {
$("#progressBar"+file.id).val(Math.round(file.percent));
if(Math.round(file.percent)==100){
$("#progressBar"+file.id).hide();
$("#deleteFile" + file.id).hide();
}
},
FileUploaded: function(up, file, info) {
if(file!=undefined) {
var json = $.parseJSON(info.response);
if(json.error == undefined)
moveFile(json.result, file.name, file.id);
}
},
UploadComplete: function(){
},
Error: function(up, err) {
}
}
});
나는이 오류를 탈출 할 수있는 일 및 잇다? 필자의 경우 FileUploaded와 UploadProgress는 전혀 맞지 않습니다. 업로드를 클릭하면 직접 오류 기능으로 이동했습니다. 그 이후로 나는 그것이 정말로 있어야하고 파일이있는 폴더를 확인한 이후로 나에게는 정말로 이상하다.
도움이 될 것입니다.
해결책을 찾았습니까? 나는 또한 동일한 문제에 직면하고있다. 일부 파일은 업로드되고 일부는 크기 제한이 있음에도 불구하고 'HTTP 오류'가 발생합니다. (-200)'. –
이 오류도 발생합니다. max-file-size가 6MB로 설정되어 있어도 3MB 작업에 대한 아래의 파일은 정상입니다. – dunxz