php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #31793 $_FILES["photo"]["error"]
Submitted: 2005-02-01 15:16 UTC Modified: 2005-02-01 15:44 UTC
From: skyfox at isp dot ee Assigned:
Status: Not a bug Package: *Programming Data Structures
PHP Version: 4.3.10 OS: debian
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: skyfox at isp dot ee
New email:
PHP Version: OS:

 

 [2005-02-01 15:16 UTC] skyfox at isp dot ee
Description:
------------
I try verify for upload photos, but verify broken upload photo not work!
this is my code:




Reproduce code:
---------------
  if ($_FILES["photo"]["error"]==UPLOAD_ERR_NO_FILE){return($lns[49]);}
  if ($_FILES["photo"]["error"]==UPLOAD_ERR_PARTIAL){return($lns[50]);}
  if (($_FILES["photo"]["error"]==UPLOAD_ERR_INI_SIZE)||($_FILES["photo"]["error"]==UPLOAD_ERR_FORM_SIZE)){return($lns[51]);}
  if ($_FILES["photo"]["error"]<>UPLOAD_ERR_OK){return('Error:'.$_FILES["photo"]["error"]);}


Expected result:
----------------
all error=UPLOAD_ERR_OK, but script can upload broken photos,
more info from  http://bugs.php.net/bug.php?id=31726


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-02-01 15:44 UTC] derick@php.net
This function does NOT check for the contents of files - please, there is no bug here - stop spamming us about this issue.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Dec 26 11:01:30 2024 UTC