0

nginxアップロードプログレスモジュールを使用してファイルをアップロードすると、ファイルは正常にアップロードを開始し、アップロードされた進行状況を取得しますが、ファイルのアップロードが終了するとエラーが発生します(({ "state" : "error", "status" : 17523466568084 });

まあ、私の大げさな推測では、私の設定ではバックエンドが指定されて upload_pass /upload;いますが、これは私にはありません。最後にファイルをアップロードするたびに、このバックエンドを取得しようとし、存在しないためエラーが発生します。この行をコメントアウトしようとしましたが、nginxから別のエラーが発生します("track_uploads"ディレクティブtrack_uploadは、/ etc / nginx / sites-enabled/web-filesのproxy_passまたはfastcgi_passの後にある場所の最後のディレクティブである必要があります。 com:52)。

1)最初の質問は、エラーは何ですか

2)2つ目は、これらのパラメーターをnginxからバックエンドのバックエンドに渡す方法です。

多分誰かが何が問題なのか考えを持っています。

私のnginxconf:

http {
   ...
   upload_progress upload 2m;

server {

    listen 80;
    server_name   mydomain;

    root /home/cha0s/web-files;
    index index.php;

    location ~ \.php$ {
      include /etc/nginx/fastcgi_params;
      fastcgi_pass 127.0.0.1:9000;
      fastcgi_param SCRIPT_FILENAME /home/cha0s/web-files$fastcgi_script_name;
      fastcgi_param PATH_INFO $fastcgi_script_name;

    }

    location ~ ^/files/(.*)$ {
            alias /home/cha0s/$1;
            internal;
    }

    location = /upload/share {
      client_max_body_size 250m;

      #Specify backend location/url and directory for file upload
      upload_pass /upload;
      upload_store /tmp;

      # Declare variables which are passed to backend
      upload_set_form_field $upload_field_name.name "$upload_file_name";
      upload_set_form_field $upload_field_name.content_type "$upload_content_type";
      upload_set_form_field $upload_field_name.path "$upload_tmp_path";

      upload_aggregate_form_field "$upload_field_name.md5" "$upload_file_md5";
      upload_aggregate_form_field "$upload_field_name.size" "$upload_file_size";


      # Delete uploaded file on error
      upload_cleanup 400 404 499 500-505;

      # Limit upload speed
      upload_limit_rate 8k;


      track_uploads upload 1m;
    }

    location = /upload/status {
      report_uploads upload;
    }

}
}

私のtest.php:

<!doctype html>
<html lang="ru">
  <head>
    <meta charset="utf-8">
    <script>
      function add() {
        if (parseInt(document.getElementById('count').getAttribute('value')) < 8) {
          var input = document.createElement('input');
          input.setAttribute('type','file');
          input.setAttribute('multiple','');
          input.setAttribute('name','file[]');
          document.getElementById('multiple').appendChild(input);
          document.getElementById('multiple').appendChild(document.createElement('br'));
          document.getElementById('count').setAttribute('value',parseInt(document.getElementById('count').getAttribute('value'))+1);
        }
        else {
          alert('Можно загрузить не более 8 файлов за раз.');
        }
      }
      function progress() {
        var ms = new Date().getTime() / 1000;
        rq = 0;
        id = "";
        for (i = 0; i < 32; i++) {
          id += Math.floor(Math.random() * 16).toString(16);
        }
        document.getElementById('upload').action = "/upload/share?X-Progress-ID=" + id;
        document.getElementById('status').style.display = 'block'
        interval = window.setInterval(function () { fetch(id, ms); }, 1000);
        return true;
      }
      function fetch(id, ms) {
        var fetch = new XMLHttpRequest();
        fetch.open("GET", "/upload/status", 1);
        fetch.setRequestHeader("X-Progress-ID", id);
        fetch.onreadystatechange = function () {
          if (fetch.readyState == 4) {
            if (fetch.status == 200) {
              var now = new Date().getTime() / 1000;
              var upload = eval(fetch.responseText);
              if (upload.state == 'uploading') {
                var diff = upload.size - upload.received;
                var rate = upload.received / upload.size;
                var elapsed = now - ms;
                var speed = upload.received - rq; rq = upload.received;
                var remaining = (upload.size - upload.received) / speed;
                var uReceived = parseInt(upload.received) + ' bytes';
                var uDiff = parseInt(diff) + ' bytes';
                var tTotal = parseInt(elapsed + remaining) + ' secs';
                var tElapsed = parseInt(elapsed) + ' secs';
                var tRemaining = parseInt(remaining) + ' secs';
                var percent = Math.round(100*rate) + '%';
                var uSpeed = speed + ' bytes/sec';
                document.getElementById('length').firstChild.nodeValue = parseInt(upload.size) + ' bytes';
                document.getElementById('sent').firstChild.nodeValue = uReceived;
                document.getElementById('offset').firstChild.nodeValue = uDiff;
                document.getElementById('total').firstChild.nodeValue = tTotal;
                document.getElementById('elapsed').firstChild.nodeValue = tElapsed;
                document.getElementById('remaining').firstChild.nodeValue = tRemaining;
                document.getElementById('speed').firstChild.nodeValue = uSpeed;
                document.getElementById('bar').firstChild.nodeValue = percent;
                document.getElementById('bar').style.width = percent
              }
              else {
                window.clearTimeout(interval);
              }
            }
          }
        }
        fetch.send(null);
      }
    </script>
  </head>
  <body>
    <form method="post" enctype="multipart/form-data" id="upload" onsubmit="progress();">
      <input type="hidden" id="count" value="1" />
      <div id="multiple">
        <input type="file" name="file[]" multiple /><br>
      </div>
      <input type="submit">
      <a href="#" onclick="add();">add();</a>
    </form>
    <div id="status" style="display: none;">
      <table width="100%"> 
        <tr><th></th><th>загрузка</th><th>осталось</th><th>всего</th></tr>
        <tr><td>время:</td><td id="elapsed">∞&lt;/td><td id="remaining">∞&lt;/td><td id="total">∞&lt;/td></tr>
        <tr><td>размер:</td><td id="sent">0 b</td><td id="offset">0 b</td><td id="length">0 b</td></tr>
        <tr><td>скорость:</td><td id="speed">n/a</td></tr>
      </table>
      <div style="border: 1px solid #c0c0c0;">
        <div style="background: #c0c0c0; width: 0%; text-align: right;" id="bar">0%</div>
      </div>
      <a href="#" onclick="if (confirm('Вы точно хотите отменить загрузку?')) window.location = '/'" id="cancel">cancel_upload();</a>
    </div>
  </body>
</html>
4

1 に答える 1

0

すでに説明したように: upload_pass /upload.php; ;-)

于 2012-07-28T02:33:45.557 に答える