Is there a limit to the file size allowed for uploads by CGI scripts?
Posted on 01 January 2004 07:05 AM
|
|
In order to prevent too many server resources from being used by a file upload process, CGI scripts run via Apache are subject to restrictions. They are as follows: Limits for the Community Servers Limits for the High Capacity Servers Default Limits for the Managed QuestServers (MQS) CGI is administratively controlled in a similar way as PHP, but slightly more relaxed as PHP is buffering the input and can increase the overall footprint size of the Apache engine. With CGI, it can balloon up in size, but once the script finishes running, its instance ends and the resources are reclaimed by Linux. This is why PHP must be carefully monitored and controlled as it is a persistent engine that has a much longer lifespan. For PHP Module limits, click here. | |
|