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.
我正在使用带有 PHP-FPM 的 Nginx 我在 php 文件中添加了以下行。
set_time_limit(0);
它没有上传图像。我猜它会尝试上传 30 秒。如果到那时图片还没有上传,它会停止上传。但是小图上传成功。
我试图将 keepalive_timeout 更改为 300。我仍然面临同样的问题。
我以前使用的是 apache + nginx。我只是把它移到 nginx + PHP-FPM
只需在您的 nginx.conf 中添加以下内容
client_max_body_size 2M;
它将允许上传高达 2MB 的图像大小。