0

ファイルを顧客にストリーミングする Web サイトがあります。現在、ファイルが 300Mb を超え始めており、明らかな理由もなく、ダウンロードがランダムに失敗しています。「ダウンロードが中断されました」というエラーが表示されます。

サーバーにログインすると、ダウンロードの開始時に PHP プロセスが終了することがあることがわかりましたが、イベント ビューアにもログにも重要な情報はありません。

ダウンロードを配信するコードは次のとおりです。

public function downloadAction($asset, $csrfToken) {
        if ($this->securityContext->isCsrfProtectionTokenValid($csrfToken) === FALSE) {
            throw new \TYPO3\Flow\Security\Exception\AccessDeniedException();
        }

        // This is a : \TYPO3\Flow\Resource\Resource
        $resource = $asset->getResource();
        $stream = $resource->getStream();

        if (FALSE === $stream) {
            $this->throwStatus(500);
        }

        try {
            $streamMetadata = stream_get_meta_data($stream);
            $modified = filemtime($streamMetadata['uri']);
            $filename = $asset->getResource()->getFilename();

            $this->response->setStatus(200);
            $this->response->setHeader('Content-Type', 'application/octet-stream');
            $this->response->setHeader('Content-Disposition', 'attachment; filename="' . $filename . '"');
            $this->response->setHeader('Last-Modified', gmdate('r', $modified));
            $this->response->setHeader('Content-Length', $asset->getResource()->getFileSize());
            $this->response->setHeader('Content-transfer-encoding', 'binary');
            $this->response->sendHeaders();

            @set_time_limit(86400);

            $fileBuffer = 8192;
            while (!feof($stream)) {
                print(fread($stream, $fileBuffer));
                ob_flush();
                flush();
            }
        } finally {
            fclose($stream);
        }

        return '';
    }

セットアップは次のとおりです。

  • Windows Server 2008 R2
  • IIS7.5
  • PHP 5.5.30

私が試したこと:

memory_limit を 1024Mb に増やし、タイムアウトを増やし、スクリプトの実行時間を増やしようとしましたが、それらを増やしても何のメリットもありませんでした。

ダウンロードが失敗すると、イベント ビューアーから多くのエラーが表示されます。

Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7afa2
Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
Exception code: 0xc0000005
Fault offset: 0x0000000000d94b98
Faulting process id: 0x26a0
Faulting application start time: 0x01d1c3157fec8818
Faulting application path: c:\windows\system32\inetsrv\w3wp.exe
Faulting module path: unknown
Report Id: 9ea4b22a-2f09-11e6-8366-00155d016700

Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7afa2
Faulting module name: nativerd.dll, version: 7.5.7601.17855, time stamp: 0x4fc85321
Exception code: 0xc0000005
Fault offset: 0x000000000000f4d3
Faulting process id: 0x2170
Faulting application start time: 0x01d1c310490342e2
Faulting application path: c:\windows\system32\inetsrv\w3wp.exe
Faulting module path: c:\windows\system32\inetsrv\nativerd.dll
Report Id: 9ea48b1a-2f09-11e6-8366-00155d016700

Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7afa2
Faulting module name: iisfcgi.dll, version: 7.5.7601.17514, time stamp: 0x4ce7c6cb
Exception code: 0xc0000005
Fault offset: 0x0000000000007a47
Faulting process id: 0x28b8
Faulting application start time: 0x01d1c3016d933dec
Faulting application path: c:\windows\system32\inetsrv\w3wp.exe
Faulting module path: C:\Windows\System32\inetsrv\iisfcgi.dll
Report Id: 82a04d74-2f03-11e6-8366-00155d016700

編集 1

バッファーを変更して 12000 に設定すると機能するように見えますが、11999 では機能しません。これはどのような魔法ですか?

4

2 に答える 2

0

どうやら、$fileBufferat は動作しますが、at は12000動作しません11999... しかし、なぜでしょうか?

于 2016-06-13T15:07:51.827 に答える
0

fread() を readfile() に置き換えてみましたか? ファイル ハンドラーを開き、php を介してファイルのチャンクを読み取って送信する代わりに、ファイルの内容を Web サーバーに直接ストリーミングします。

http://php.net/manual/de/function.readfile.php

于 2016-06-13T09:59:37.340 に答える