为什么我的文件不会上传我的PHP上传脚本?

时间:2013-11-12 06:19:03

标签: php file upload

首先我在这里问了这个问题:How do I change the file name before sending to upload_file.php?

我使用建议更新了我的upload_file.php脚本,但是当我运行它时,它不起作用。使用上面链接的表单,当我去上传脚本时,echo似乎是正确的,但是当我FTP到文件应该是的目录时,目录是空的?有人可以对此有所启发吗?我希望将文件上传到'/ var / www / eedis / fax / uploads /'.

我的upload_file.php脚本看起来像这样......

<?php
$allowedExts = array("pdf");
$temp = explode(".", $_FILES["file"]["name"]);
$extension = end($temp);
if ($_FILES["file"]["type"] == "application/pdf")
#&& ($_FILES["file"]["size"] < 20000)
#&& in_array($extension, $allowedExts))
  {
  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>";

    if (file_exists("upload/" . $_FILES["file"]["name"]))
      {
      echo $_FILES["file"]["name"] . " already exists. ";
      }
    else
      {
      move_uploaded_file($_FILES["file"]["tmp_name"],
      "/var/www/eedis/fax/uploads/" . $_POST['number'] . '.pdf');
      }
    }
  }
else
  {
  echo "Invalid file";
  }
?> 

3 个答案:

答案 0 :(得分:1)

创建一个名为upload.php的PHP文件,用于上传过程。

在项目目录中创建一个名为“gallery”(或您想要的名称)的文件夹,我们希望上传的文件转到它。

$uploadDir = './gallery/';

用于返回上传过程的结果。

$result = 0;

现在正在处理用户输入并获取文件扩展名,然后为上传的文件创建唯一的文件名(因为不同的用户可能会上传具有类似文件名的文件)

if(isset($_POST['upload']))
{
$fileName = $_FILES['userfile']['name'];
$tmpName = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];

//get the file extension
$ext = substr(strrchr($fileName, "."), 1);

// make the random file name
$randName = md5(rand() * time());

// creating the unique file name for the uploaded file
$filePath = $uploadDir . $randName . '.' . $ext;

if(@move_uploaded_file($tmpName, $filePath)) {

    //move the uploaded file from server's temp directory to your gallery path
    $result = 1;
}
sleep(1);
}

创建用于上传文件和图像的PHP / AJAX完整系统阅读本文:

http://blueingenuity.com/articles/4/creating-a-photo-uploader-using-ajax-and-php/

答案 1 :(得分:0)

您是否在表单中使用过enctype="multipart/form-data"? 另请查看文件夹权限。

答案 2 :(得分:0)

问题已解决。这只是一个许可证。到下一个!