Changes between Initial Version and Version 1 of faq/server/change-fcgid-max-setting


Ignore:
Timestamp:
Jan 30, 2011, 11:56:38 AM (14 years ago)
Author:
Mallory Knodel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • faq/server/change-fcgid-max-setting

    v1 v1  
     1You may need to modify your Web Configuration if you're uploading files to a Drupal site and getting an error message like this:
     2
     3{{{
     4500 Internal Server error
     5}}}
     6
     7The 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.
     8
     9
     10You 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:
     11
     12{{{
     13FcgidMaxRequestLen 10388608
     14}}}
     15
     16Note that the value, in this case 10388608, is expressed in bytes. To do a bit to byte conversion, know that 1 bit = 0.125 bytes.