From:             rufus_nayagam at hotmail dot com
Operating system: windows
PHP version:      4.4.7
PHP Bug Type:     Performance problem
Bug description:  the is_uploaded_file fails randomly.

Description:
------------
I am using the following code.
When our users upload files through this code... 
The is_uploaded_file returns false randomly but not always. 


if(isset($_REQUEST['action'])){
  echo "submitted";
  echo "<pre>";
  // print_r($_REQUEST);
  print_r($_FILES);
  echo "</pre>";
  $tempName = $_FILES["user_image"]["tmp_name"];
  if (is_uploaded_file($tempName)){
    echo "Yes Uploaded <br>";
  }else{
    echo "Not Uploaded   is_uploaded_file() failed <br>";
  }
}
?>
<form name="form_main" method="post" enctype="multipart/form-data"
action="<?php echo $_SERVER['PHP_SELF'];?>">
<table width='100%'><tr><td valign='top'>
<table width='75%' align='center' cellpadding=5 cellspacing=1>
<tr class='user2'><td><b>Image : </b></td><td><input type="file"
name="user_image" size="40"></td></tr>
<tr class='user2'><td>&nbsp;</td><td><INPUT TYPE="submit" name="action"
value="submit"></td></tr>
</table>
</td></tr></table>
</form>

Please give me a solution or any alternatives for this.


-- 
Edit bug report at http://bugs.php.net/?id=42777&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=42777&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=42777&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=42777&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=42777&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=42777&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=42777&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=42777&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=42777&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=42777&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=42777&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=42777&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=42777&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=42777&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=42777&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=42777&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=42777&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=42777&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=42777&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=42777&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=42777&r=mysqlcfg

Reply via email to