PHP Session上传进度和fcgid

我正在使用Apache2.2 / mod_fcgid / php5.4.3,并且会话中没有显示上传进度.我读到如果通过fastcgi加载php,php会话上传进度功能将无法正常工作.真的吗?如果是这样,使用fastcgi时获取上传进度的选项有哪些? 最佳答案 “
[mod_fcgi] reads the entire request body from the client before sending it to the application.

您应该尝试使用支持“Accelerated File Upload”的Nginx和PHP-FPM,其中您的PHP代码可以在Nginx收到完整请求之前运行.

点赞