寫php簡單上傳圖片時,發現200k的圖片上傳時報Internal Server Error錯誤,檢查了upload_max_filesize,及其餘post_max_size、max_input_time、memory_limit、max_execution_time配置項均沒有問題,後檢查錯誤日誌:mod_fcgid: HTTP request length 138296 (so far) exceeds MaxRequestLen (131072),發現問題所在。php
原 來是fastcgi模式下的設置問題,看上去是由於HTTP剛纔的請求長度(138296 )太長,大於現有的131072最大請求長度。看了fcgid 的配置文件後,發現並無配置過MaxRequestLen的參數。看來這個131072的配置是默認的了。因而在fcgid的配置文件里加入這個配 置,15728640是15M,由於個人php.ini中設置的最大POST長度是15M,因此把它們設置長同樣 的:MaxRequestLen 15728640;linux
<IfModule mod_fcgid.c> MaxRequestLen 15728640 AddHandler fcgid-script .fcgi .php # Where to look for the php.ini file? FcgidInitialEnv PHPRC "e:/wamp/bin/apache/apache2.3.14/bin" # Set PHP_FCGI_MAX_REQUESTS to greater than or equal to FcgidMaxRequestsPerProcess # to prevent php-cgi process from exiting before all requests completed FcgidInitialEnv PHP_FCGI_MAX_REQUESTS 1000 # Maximum requests a process should handle before it is terminated FcgidMaxRequestsPerProcess 1000 # Maximum number of PHP processes FcgidMaxProcesses 15 # Number of seconds of idle time before a php-cgi process is terminated FcgidIOTimeout 120 FcgidIdleTimeout 120 #Path to php-cgi FcgidWrapper "e:/wamp/bin/php/php5.4/php-cgi.exe" .php # Define the MIME-Type for ".php" files AddType application/x-httpd-php .php </IfModule>
裏面的「MaxRequestLen」就是fastcgi模式下上傳文件也就是http接受的最大文件長度。apache
問題解決服務器
注:app
PHP默認的上傳限定是最大2M,想上傳超過此設定的文件,須要調整PHP、apache等的一些參數。下面,咱們簡要介紹一下PHP文件上傳涉及到的一些參數:post
對於linux主機,可能在/etc/httpd/conf.d/access.conf/下面裏面還有php.conf 文件,這個文件可能會解決一些系統的文件大小限制問題。大數據