Hi!
I'm trying to work out the folowing problem:
On my website I'm trying to create a file upload. I use the following (simplefied) form for specifying the file to upload in a browser
<FORM ACTION="demoupload.php" METHOD="post" ENCTYPE="multipart/form-data">
<INPUT TYPE=hidden NAME="MAX_FILE_SIZE" value="6000000">
<INPUT TYPE=file NAME="userfile"></INPUT>
<INPUT TYPE=submit VALUE="Send demo"></INPUT>
</FORM>
Expected demo file sizes range from 2 to 6 MegaBytes. I can not access the 'max_execution_time' environment variable because I don't host the webserver. On the other hand I don't like to change tthis value, because this affects all the other script on the webserver. What can I do to handle the '30 sec. execution time limit'-error? I find this error pretty strange, because It's actually not my script that causes this time-out.
Is there anybody out there with some good ideas?
Thanks in advance!
Tom