【问题标题】:Can't upload file through php?无法通过php上传文件?
【发布时间】:2016-06-07 12:23:03
【问题描述】:

我正在尝试通过 php 上传文件

HTML 表单

<!DOCTYPE html>
<html>
<body>

<form action="upload.php" method="post" enctype="multipart/form-data">
    Select image to upload:</br>
    <input type="file" name="fileToUpload" id="fileToUpload"></br>
    <input type="submit" value="Upload Image" name="submit">
</form>

</body>
</html> 

PHP

<!DOCTYPE html>
<html>
<body>

<form action="upload.php" method="post" enctype="multipart/form-data">
    Select image to upload:</br>
    <input type="file" name="fileToUpload" id="fileToUpload"></br>
    <input type="submit" value="Upload Image" name="submit">
</form>

</body>
</html> 
rohit@joed:/var/www/html$ cat upload.php 
<?php
$target_dir = "/home/rohit/uploads";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
    $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
    if($check !== false) {
        echo "File is an image - " . $check["mime"] . ".";
        $uploadOk = 1;
    } else {
        echo "File is not an image.";
        $uploadOk = 0;
    }
}
// Check if file already exists
if (file_exists($target_file)) {
    echo "Sorry, file already exists.";
    $uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) {
    echo "Sorry, your file is too large.";
    $uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg" && $imageFileType != "gif" ) {
    echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
    $uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
    echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
    if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
        echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
    } else {
        echo "Sorry, there was an error uploading your file.";
    }
}
?> 

Apache 日志

move_uploaded_file failed to open stream: Permission denied in /var/www/html/upload.php 

第37行,referer:http://localhost/filetest.htm

我已经尝试了here 提到的所有方法,但仍然遇到问题。

这是文件夹的权限

drwxr-xr-x  2 www-data rohit   4096 Feb 24 15:58 tmp_uploads
drwxr-xr-x  2 www-data rohit   4096 Feb 24 15:05 uploads

我从

那里得到了所有者
<?php echo exec('whoami'); ?>

chown user destination_dir
chmod 755 destination_dir

然后用该用户更改文件夹的所有者。

有人可以帮我解封吗?

【问题讨论】:

  • 制作这个 php: 你得到了什么?
  • @hanshenrik array(0) { } array(1) { ["submit"]=> string(12) "上传图片" } array(1) { ["fileToUpload"]=> array (5) { ["name"]=> string(9) "page1.png" ["type"]=> string(9) "image/png" ["tmp_name"]=> string(33) "/home /rohit/tmp_uploads/phpCwZA6V" ["error"]=> int(0) ["size"]=> int(205237) } }
  • @hanshenrik 但是根据 apache logs ,有一些 Permission denied 错误。其来源/分辨率是什么?
  • 如果目标目录在站点文档根目录之外,您可能会遇到问题,即使 www-data 是所有者

标签: php


【解决方案1】:

根据特定的操作系统/包配置,Apache 无法在 Document Root 之外写入。

顺便说一句,在大多数情况下,问题可能只是在目录树中:每个目标路径的父目录应该设置执行位(x) Apache 用户(或其组,或所有)。 只有执行位,而不是读/写权限(显然要写入的目录除外)。

因此,在您的具体情况下,请检查是否为

设置了执行位
  • /家
  • /home/rohit
  • /home/rohit/上传

让我知道它是否有效。对我来说,它适用于大多数情况。

【讨论】:

    【解决方案2】:

    看起来问题在于您如何构建 $target_file:

    $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
    

    您需要在 $target_dir 和上传文件的基本名称之间添加一个“/”,例如:

    $target_file = $target_dir . '/'. basename($_FILES["fileToUpload"]["name"]);
    

    或者只是将你的 $target_dir 设置为(注意结束的'/'):

    $target_dir = "/home/rohit/uploads/"
    

    如果没有它,它会尝试在“/home/rohit”中移动一个 www-data 用户可能没有相关权限的文件。

    【讨论】:

      【解决方案3】:

      这似乎太简单了,但是如果您的权限被拒绝,您是否尝试过将权限设置为 0777 并进行测试。如果可行,请尝试 0775(而不是 0755)。如果这有效,那么该小组正在给您带来问题。如果是这种情况,请尝试切换所有者和组。

      chown rohit:www-data tmp_uploads
      chown rohit:www-data uploads
      

      【讨论】:

      • 另外,请务必检查$target_file 的结果,以防您遗漏了斜线或其他内容。
      • 是的,它是缺少的斜线。我为此浪费了两个多小时。
      猜你喜欢
      • 2016-02-19
      • 2015-07-18
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-08-04
      • 1970-01-01
      • 2020-01-05
      • 1970-01-01
      相关资源
      最近更新 更多