Changes between Version 2 and Version 3 of faq/server/change-fcgid-max-setting
- Timestamp:
- Feb 21, 2011, 5:02:06 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
faq/server/change-fcgid-max-setting
v2 v3 8 8 9 9 {{{ 10 mod_fcgid: HTTP request length 8389712 (so far) exceeds MaxRequestLen (8388608)10 mod_fcgid: HTTP request length 26214543 (so far) exceeds MaxRequestLen (26214400) 11 11 }}} 12 12 13 The HTTP request through your Drupal interface contains all data being uploaded, such as your file. The default limit is 8MB (this is true even if you've modified your php.ini setting to allow a higher amount.13 The HTTP request through your Drupal interface contains all data being uploaded, such as your file. The default limit is 15MB (this is true even if you've modified your php.ini setting to allow a higher amount). 14 14 15 So if you are uploading a file that is more than 8MiB, the request length is going to also be more than 8MiB.15 So if you are uploading a file that is more than 15MiB, the request length is going to also be more than 25MiB. 16 16 17 You must modify a configuration setting in mod_fcgid through the Member's Control Panel. If you know you are going to need to be uploading files larger than 8MiB, that setting needs to be adjusted by adding this to your Web Configuration:17 You must modify a configuration setting in mod_fcgid through the Member's Control Panel. If you know you are going to need to be uploading files larger than 25MiB, that setting needs to be adjusted by adding this to your Web Configuration: 18 18 19 19 {{{ 20 FcgidMaxRequestLen 1038860821 }} }20 FcgidMaxRequestLen 36700160 21 }} 22 22 23 Note that the value, in this case 10388608, is expressed in bytes. 10388608 is about 10Mbytes.23 Note that the value, in this case 36700160, is expressed in bytes. 36700160 is 35 Mbytes.