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
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
24 + 44 = ?
Subscribe to this entry?

 
 [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

Add a Patch

Pull Requests

Add a Pull Request

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: Tue Apr 16 19:01:31 2024 UTC