Re: [EMAIL PROTECTED] Large File Upload blocking

2008-05-12 Thread Mohammed Salih
Hi there, Look for something related to Content-length request header. Usually it contains the size of the POST data. You may need to use a mix of the exisiting solution + the Content-length for security reasons. Cheers Salih On Fri, May 2, 2008 at 8:32 PM, sirius black <[EMAIL PROTECTED]> wrote

[EMAIL PROTECTED] Large File Upload blocking

2008-05-02 Thread sirius black
I'm trying to prevent my users from uploding files larger than 500MB. I know that I can use LimitPayloadBody and ErrorDocument 413 to redirect the users to a page telling them their file is too large. But then it seems like apache still has to read in the entire file before it returns the user.