Does anyone have any idea what else I can try to work around this problem? I'm doing a presentation of this tool at Wikimania in a couple weeks and then it will be used for a major event in Montreal a few weeks after that.

It was working fine in January. People uploaded dozens of 3 and 4 MB files with no problems, but now it won't allow anything larger than 1 MB. I haven't changed any of the uploading code since then.

Any help or advise would be appreciated!

Ryan Kaldari

On Thu, Jul 7, 2011 at 8:51 PM, Ryan Kaldari <kaldari@gmail.com> wrote:
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