|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2004-12-28 09:08 UTC] mail at iaindooley dot com
  [2004-12-28 09:13 UTC] vrana@php.net
  [2004-12-28 09:51 UTC] mail at iaindooley dot com
  [2004-12-28 09:58 UTC] vrana@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 23:00:01 2025 UTC | 
Description: ------------ hello, i'm uploading files through a form and things have been working fine in the past, but recently i have begun to get the error code '6', which is undocumented in the PHP manual. Array ( [name] => Brigitte-Normal.pfa /*small font file*/ [type] => [tmp_name] => [error] => 6 [size] => 0 ) Reproduce code: --------------- the above output is being produced by this code: die(print_r($file)); where $file is an element of the superglobal $_FILES obtained with: foreach($_FILES as $label => $file) { /*... FILE HANDLING CODE ...*/ } Expected result: ---------------- The expected result would obviously be one of the documented error codes (0 - 4) Actual result: -------------- The actual result is an error code '6', which is undocumented.