From:             [EMAIL PROTECTED]
Operating system: Linux SuSE 6.4
PHP version:      4.0.5
PHP Bug Type:     Program Execution
Bug description:  error max_execution_time, unrelated to value in php.ini

It's a problem with a big (2MB or greater) file upload. After the file is up, the 
message "Fatal error: Maximum execution time of 2 seconds exceeded" appears, but the 
parameter max_execution_time in php.ini hasn't this value, nor the error is influenced 
by any value for set_time_limit in the php.ini.

The Skripts are:

action.php
----------
<?
$maxupload = "10485760";
echo '<form action="mail.php" method="POST" ENCTYPE="multipart/form-data"  
name="neumail">
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="$maxupload">
<input type="file" size="35" name="attach" value="">
<input type="submit" name="BLIND" value="  Ok  ">';
?></body></html> 
----------

mail.php
----------
<? $fp = fopen($attach,'r'); while (!feof ($fp))
 { $attachment .= fgetc($fp); }?>
----------


It can be testet at:
http://www.lgl.de/mail/debug/action.php
http://www.lgl.de/mail/debug/mail.php
http://www.lgl.de/mail/debug/phpinfo.php



-- 
Edit Bug report at: http://bugs.php.net/?id=10723&edit=1



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to