欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php fastcgi模式上传大文件报错怎么办?

程序员文章站 2022-05-21 12:54:06
...
  1. addhandle fcgid-script .fcgi
  2. fcgidconnecttimeout 20
  3. # to get around upload errors when uploading images increase the maxrequestlen size to 15mb
  4. fcgidmaxrequestlen 15728640
复制代码

如果是php+apache windows环境,参考如下配置,在php.ini中找到 upload_max_filesize,及其他post_max_size、max_input_time、memory_limit、 max_execution_time配置 修改上传文件大小,然后重启apache服务器即可。