Changes between Version 1 and Version 2 of faq/server/change-fcgid-max-setting
- Timestamp:
- Jan 30, 2011, 2:05:35 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
faq/server/change-fcgid-max-setting
v1 v2 5 5 }}} 6 6 7 The HTTP request through your Drupal interface contains all data being uploaded, such as your file. So if you are uploading a file that is more than 8MiB, the request length is going to also be more than 8MiB. 7 And your error log file reports something like this: 8 8 9 {{{ 10 mod_fcgid: HTTP request length 8389712 (so far) exceeds MaxRequestLen (8388608) 11 }}} 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. 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. 9 16 10 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: … … 14 21 }}} 15 22 16 Note that the value, in this case 10388608, is expressed in bytes. To do a bit to byte conversion, know that 1 bit = 0.125bytes.23 Note that the value, in this case 10388608, is expressed in bytes. 10388608 is about 10 Mbytes.