简体   繁体   中英

PHP File Upload / move_uploaded_file Not Working

I have the following form:

<html>
<body>

<form action="upload_file.php" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" /> 
<br />
<input type="submit" name="submit" value="Submit" />
</form>

</body>
</html>

And the following script:

<?php
error_reporting(E_ALL);

if (($_FILES["file"]["size"] < 20000))
  {
  if ($_FILES["file"]["error"] > 0)
    {
    echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
    }
  else
    {
    echo "Upload: " . $_FILES["file"]["name"] . "<br />";
    echo "Type: " . $_FILES["file"]["type"] . "<br />";
    echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
    echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";


    $moved = move_uploaded_file($_FILES["file"]["tmp_name"], "C:/inetpub/wwwroot/PHP_Ramp/upload/" . $_FILES["file"]["name"]);

    if ($moved) {
        echo "Move: Success";
    }
    else {
        echo "Move Failed";
    }


      echo "Stored in: " . "C:/inetpub/wwwroot/PHP_Ramp/upload/" . $_FILES["file"]["name"];
      }
    }

else
  {
  echo "Invalid file";
  }
?>

For some reason I keep getting "Move Failed". Any idea why the file isn't moving?

======== SO thinks I need to explain this more; so I'm typing a sentence down here. ========

Check whether you have permissions in that folder (C:/inetpub/wwwroot/PHP_Ramp/upload/ ) to write file. You can check the folder by right clicking and selecting properties -> Security

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM