5

在尝试使用表单和 PHP/IIS 7 上传文件时,我收到以下消息:

PHP Warning:  File upload error - unable to create a temporary file in Unknown on line 0

我的表格:

<form action="acciones.php" id="form3" method="POST" enctype="multipart/form-data">
    <input type="hidden" value="3" name="accion">
    <input type="text" name="nombre" placeholder="Nombre">
        <input type="file" name="imagen" accept="image/x-png, image/gif, image/jpeg" />
    <input type="button" id="envio" class="button azul" value="Agregar" onclick="envios()">
</form>

我的 PHP 代码和参考:

$target = "/images/";
$target = $target . basename( $_FILES['imagen']['name']);
//This gets all the other information from the form
$name=$_POST['nombre'];
$pic=($_FILES['imagen']['name']);

//Writes the information to the database
$query = "INSERT INTO Playeras (Nombre, Ruta) VALUES ('$name', $pic')";
mysql_query($query, $conexion -> conn) or die("Error: ".mysql_error()) ;

//Writes the photo to the server
if(move_uploaded_file($_FILES['imagen']['tmp_name'], $target))
{
    //Tells you if its all ok
    echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded, and your information has been added to the directory";
}
else 
{
 //Gives and error if its not
 echo "Sorry, there was a problem uploading your file.";
}

我已经设置了临时文件的路径:

upload_tmp_dir = "C:/Users/server/Pictures/tmp"

并授予 IIS_IUSRS 和 IUSRS 完全控制的权限。但每次,我都会得到错误。我不知道我做错了什么。如果有人可以帮助我,那就太好了。

4

3 回答 3

6

让它工作。

改变了

upload_tmp_dir = "C:/Users/server/Pictures/tmp" to "C:\TEMP".

在 C 中创建文件夹 TEMP 并授予权限。似乎它仅在直接连接到 C: 时才有效。

于 2013-05-12T02:34:16.570 回答
1

我终于发现了为什么会发生这个错误:

IUSR 帐户(或 php 进程模拟的帐户,取决于您的身份验证设置)需要能够枚举 upload_tmp_dir 文件夹的父文件夹。

这种行为很奇怪,因为日志或会话文件夹不需要此权限。

我的解决方案如下(使用上面帖子中的路径):

  1. 创建文件夹“C:/Users/server/Pictures/tmp”
  2. 向 IUSR(或其他用户)授予对该文件夹的修改权限
  3. 创建文件夹“C:/Users/server/Pictures/tmp/uploads”
  4. 编辑 php.ini:upload_tmp_dir = "C:/Users/server/Pictures/tmp/uploads"

或者,您可以在父文件夹“C:/Users/server/Pictures/tmp”上授予“仅限此文件夹”的只读权限。在这种情况下,您不需要另一个子文件夹。

于 2016-03-18T16:17:59.277 回答
0

最近在 Laravel 和 Wordpress(php 7.3 版)中工作时,我收到此错误“文件上传错误 - 无法在第 0 行的未知中创建临时文件”

对我有用的解决方案是。希望这可以帮助任何面临此类问题的人。

Laravel

  1. 在项目根文件夹中创建一个 tmp 文件夹。确保它具有正确设置的写入权限。
  2. 在公共文件夹中创建 php.ini 文件。

WordPress

  1. 在项目根文件夹中创建一个 tmp 文件夹。确保它具有正确设置的写入权限。
  2. 在 wp_admin 文件夹中创建 php.ini 文件。除了您的其他 ini 设置之外,还专门在 php.ini 中添加以下行。

upload_tmp_dir = on

upload_tmp_dir = "/path/to/tmp/文件夹"

这里的路径就像 /home/cpanel username/public_html/folder/project/tmp

注意:如果您在 Laravel 中工作。如果您将文件存储在存储文件夹中,请不要忘记链接存储文件夹。为此,在终端运行以下命令。

php工匠存储:链接

答案也添加到这篇文章中......警告:文件上传错误 - 无法在第 0 行的未知中创建临时文件

于 2021-03-18T12:19:46.907 回答