[PHP-DEV] Bug #11605: Upload file fails!!! From: dgalli <email protected>
Date: 06/21/01

From: dgalli <email protected>
Operating system: win NT with Apache
PHP version: 4.0.5
PHP Bug Type: Reproducible crash
Bug description: Upload file fails!!!

may be you can help me with these trouble. I have 2 files: a HTML with a form inside that upload a file and send to a PHP file that copy the file uploaded from tmp dir to "/upload" and then navigate back to the html file. when I try to upload several files, the html form fail and not send any file to tmp dir, but when I actualize (F5 or CTRL+F5)2 or 3 times the html files works again and send the file.

**************************send.htm**************************
<HTML>
<HEAD>
        <Title>Upload</Title>
        <META HTTP-EQUIV="Expires" CONTENT="0">
</HEAD>
<BODY>
<form Action="send.php" Method="POST" ENCTYPE="MULTIPART/FORM-DATA" name="form1">
        <INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="2000000">
        <input type="file" name="file" size="25" >
        <input type="submit" value="Agregar" name="B2">
</form>
</BODY>
</HTML>
************************************************************

**************************send.php**************************
<html>
<head>
        <META HTTP-EQUIV="Expires" CONTENT="0">
</head>
<?PHP
        if ($file_size)
                copy($file, "upload/".$file_name);
?>
<script>
        javascript:window.history.back();
</script>
<html>
************************************************************
The files above are a simplification that files a need in my application.
Please help me....Sorry for my english...and Thank´s

Dante Daniel Galli

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

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>