gpt4 book ai didi

php - 无法修复错误 "failed to open stream: HTTP wrapper does not support writeable connections"

转载 作者:行者123 更新时间:2023-12-04 23:28:48 50 4
gpt4 key购买 nike

<分区>

(请注意将其标记为重复的人,我不知道这是导致错误的路径,其他问题特定于导致错误的路径,我的问题不是。因为我不知道它是导致错误的路径,我无法用另一个问题解决我的问题)

你好,我有一个 php 项目,我一直在尝试找出 w3 的图像上传教程,但一直无法消除错误。我已经搜索了错误,教程按照任何解决方案的建议进行了操作,所以我认为我只是遗漏了一些明显的东西,有人可以帮忙吗。

HTML

<!DOCTYPE html>
<html>
<body>

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

</body>
</html>

PHP

<?php

ini_set('display_errors',1);
error_reporting(E_ALL);


$target_dir = "http://myDomainName.com/SchoolStore/Images/";
$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 ". $target_file;
}
}
?>

错误:

警告:move_uploaded_file( http://myDomainName.com/SchoolStore/Images/Screen Shot 2015-11-28 at 5.30.11 PM.png):无法打开流:HTTP 包装器不支持/home1/tooneate/public_html/SchoolStore/upload.php 中的可写连接在第 43 行

警告:move_uploaded_file():无法将“/var/tmp/phpc2F3xS”移动到“http://myDomainName.com/SchoolStore/Images/Screen”拍摄于 2015-11-28 at 5.30.11 PM.png' in/home1/tooneate/public_html/SchoolStore/upload.php 第 43 行抱歉,上传时出错 http://myDomainName.com/SchoolStore/Images/Screen拍摄于 2015-11-28 下午 5.30.11.png

50 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com