I seems that I can't get the toolserver to accept any uploads larger than 1MB. I have a web application running on nightshade that has both an HTML upload form and a Flash upload form, both of which upload files to /mnt/user-store/contests/. I have my PHP limits set to the following in an .htaccess file:

php_value upload_max_filesize 20M
php_value post_max_size 20M
php_value max_execution_time 1200
php_value max_input_time 1200
php_value memory_limit 20M

Whenever I try to upload a file that is over 1MB (even 1.1MB), from either the HTML upload form or the Flash interface, it either gives me a 413 server error or the connection to the server is reset. A 413 error means that the HTTP data stream sent by the client was too large for the server. Files that are less than 1MB always work fine. Any ideas what is going wrong?

Ryan Kaldari