最近在項目中中上傳圖片時,大約有300多K,結果報了個服務器錯誤,以前從未遇到過,錯誤的內容如下:
mod_fcgid: HTTP request length 132296 (so far) exceeds MaxRequestLen (131072)
查了下資料,發現fastcgi默認的請求大小為131072,於是在apache配置中添加了MaxRequestLen 配置就好了。如果你只需要修改單個虛擬主機的 MaxRequestLen,原來是fastcgi模式下的設置問題,需要在配置文件.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環境下的話我們如下配置即可
在php.ini中找到
upload_max_filesize,及其他post_max_size、max_input_time、memory_limit、 max_execution_time配置
把上傳大小修改之後重啟apache 即可解決