I have the most annoying problem, boils down to this simplest HTML:
<form enctype="multipart/form-data" method="post" action="/testupload.php">
<input type="file" name="thefile">
<input type="submit">
</form>
when selecting a small file, all is good. When selecting a 3M file (example for big file), the process simply hangs. No error, no breaks, no nothing. If I use firebug I see the file being submitted is 0 size.
I am thinking this is something on the Apache side, but my precious host (InMotion VPS) gives me the "GoDaddy" response "it's in the code" so they can't take care of it, albeit the "code" is 4 lines of the most basic HTML.
I do see an error in my logs "Handler for (null) returned invalid result code 70007", googling it I get possoble mod.security issues or restarting httpd, which I did to no avail.
It used to work when I was developing that piece of application, and uploaded files like crazy for couple of days. Then it stopped.
Any takers?