Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个 TYPO3 系统中,我有一个扩展名,我在其中使用 fpdf 构建了一个 PDF 文件。
当我提交带有数据的表单时,文件被下载(大约 3MB 文件),但是当下载达到 100% 时,它给了我一个“未知网络错误”。(这就是 Chrome 中的消息)
这是我的扩展: http: //pastebin.com/8GQCcKWj
我错过了什么?
简单的解决方案:不要做
return $pdf->Output('medienpass.pdf', 'D');
在您的 getPdf() 函数中,因为输出将包含在大量 html 代码中。
而是仅将您的 pdf 文件返回给客户:
die($pdf->Output('medienpass.pdf', 'D'));