|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-04-11 08:47 UTC] goba@php.net
The mention of max_execution_time is misleading in the file upload / common pitfalls docs. Some may assume (as I did ;), that the file upload process time counts in max_execution_time, however this is probably not the case. Please someone with better PHP behaviour knowledge extend that part, so it does not give the impression, that file upload time counts in max_execution_time. Max_input_time should also be documented ;) PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 10:00:01 2025 UTC |
Why ini_st doesn?t work when trying to change the max_execution_time? I?m trying to do an image upload-resize page, as it has 4 file fields and the images may be large (400k) the server return a Maximum execution time error. I?m uploading in one page using this code at the beggining: <?php $some = "1000"; ini_set("max_execution_time", $some); ?> Thanks