最近在項(xiàng)目中中上傳圖片時(shí),大約有300多K,結(jié)果報(bào)了個(gè)服務(wù)器錯(cuò)誤,以前從未遇到過,錯(cuò)誤的內(nèi)容如下:
mod_fcgid: HTTP request length 132296 (so far) exceeds MaxRequestLen (131072)
查了下資料,發(fā)現(xiàn)fastcgi默認(rèn)的請求大小為131072,于是在apache配置中添加了MaxRequestLen 配置就好了。如果你只需要修改單個(gè)虛擬主機(jī)的 MaxRequestLen,原來是fastcgi模式下的設(shè)置問題,需要在配置文件.htaccess或者直接在apache的配置文件http.conf 中指明,如下:
代碼如下:
<IfModule mod_fcgid.c>
AddHandle fcgid-script .fcgi
FcgidConnectTimeout 20
# to get around upload errors when uploading images increase the MaxRequestLen size to 15MB
FcgidMaxRequestLen 15728640
</IfModule>
如果你是php+apache windows環(huán)境下的話我們?nèi)缦屡渲眉纯?/P>
在php.ini中找到
upload_max_filesize,及其他post_max_size、max_input_time、memory_limit、 max_execution_time配置
把上傳大小修改之后重啟apache 即可解決
更多信息請查看IT技術(shù)專欄