Php Maximum execution time on UPLOAD

am attempting to upload a doc via PHP that is ~4MB (2MB files seems to work fine). I have these settings in my PHP.ini:

max_execution_time=3600
memory_limit=50M
upload_max_filesize=50000000

And yet I get this error:

Fatal error: Maximum execution time of 3600 seconds exceeded in F:\Program Files\Apache Group\Apache2\htdocs\administrator\index2.php on line 18

And this happens once it has 'completed' the upload, as an hour has not gone by for a real timeout.

Any ideas? Any specific Apache settings I should be aware of?

I have also tried adjusting the timeout directive within Apache as well as adding this to the apache config, still no joy:

#
# Cause the PHP interpreter handle files with a .php extension.
#
<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 9524288
</Files>

 

 

 

 

Top