【发布时间】: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