From:             [EMAIL PROTECTED]
Operating system: Redhat 7.1 with 2.4.0 Kernel
PHP version:      4.0.4pl1
PHP Bug Type:     Unknown/Other Function
Bug description:  File upload does not work at all.

-- test.php --
<FORM ENCTYPE="multipart/form-data" ACTION="test_upload.php" METHOD=POST>
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <INPUT NAME="userfile" TYPE="file">
<INPUT TYPE="submit" VALUE="Send File">
</FORM>

-- test_upload.php --
<?php 
if (is_uploaded_file($userfile)) {
    copy($userfile, "/tmp/testupload");
} else {
    echo "Possible file upload attack: filename '$userfile'.";
}
?>
Browser sends file..
but above script reports 
Possible file upload attack: none
everytime you upload a file.. file is not to be found anywhere on the system.


-- 
Edit Bug report at: http://bugs.php.net/?id=8700&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