gpt4 book ai didi

javascript - 文件太大,即使 php.ini 文件已更改,也无法上传到服务器

转载 作者:行者123 更新时间:2023-11-28 01:10:17 26 4
gpt4 key购买 nike

我无法将 ( .OBJ) 文件上传到服务器并得到“错误 1”,这意味着

The uploaded file exceeds the upload_max_filesize directive in php.ini

我从这个页面得到了这个信息 - http://php.net/manual/en/features.file-upload.errors.php

然后我转到 php.ini 文件并将 upload_max_filesizepost_max_size 都更改为 10000M

当我尝试上传文件时,即使它只有 3MB,我仍然收到“错误 1”。我还重新启动了服务器,以便我对 php.ini 文件所做的更改可以生效。我知道我的代码适用于较小的文件,因为我已经能够发送一个包含“测试”一词的小型 TXT 文件。

这是 form.php 文件,其中包含用于在服务器端处理已发送文件的 PHP 代码和用于创建文件选择和上传功能的 HTML 代码。

<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);

ini_set('max_execution_time', 3000000);

if ($_SERVER['REQUEST_METHOD'] === 'POST') {
var_dump($_FILES);
echo "<br/><b>File Name:</b> " . $_FILES["file"]["name"] . "<br>";
echo "<b>Type:</b> " . $_FILES["file"]["type"] . "<br>";
echo "<b>Size:</b> " . ($_FILES["file"]["size"] / 1024) . " kB<br>";
echo "<b>Temp File Name:</b> " . $_FILES["file"]["tmp_name"] . "<br>";
echo "<b>Error:</b> " . $_FILES["file"]["error"] . "<br>";

$sourcePath = $_FILES['file']['tmp_name']; // Storing source path of the file in a variable
$targetPath = "upload/" . $_FILES['file']['name']; // Target path where file is to be stored

move_uploaded_file($sourcePath, $targetPath);

exit;
}
?>

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
</head>
<body>
<form action="form.php" method="post" enctype="multipart/form-data">
<label>File</label>
<input type="file" name="file">
<input type="submit" value="Upload">
</form>
<div></div>
</body>
<script>

$(function () {
$('form').on('submit', function (e) {
e.preventDefault();

$.ajax({
url: this.action,
type: this.method,
data: new FormData(this),
processData: false,
contentType: false,
success: function (res) {
$('div').html(res);
}
});
});
});

</script>
</html>

总而言之,我的问题是,为什么我已经更改了 php.ini 文件的相应变量,但还是无法上传所需的文件?

最佳答案

您必须重新启动您的网络服务器:

service apache restart #If you have Apache
service nginx restart #If you have NGINX

如果你正在运行 php-fpm:

service php-fpm restart

你有多个 php.ini 吗?注意:

/etc/php/php-fpm
/etc/php/php-cli
/etc/php/php-cgi

在某些情况下,您还必须允许在您的网络服务器上上传更大的文件。

NGINX:

client_max_body_size 10000M;

关于javascript - 文件太大,即使 php.ini 文件已更改,也无法上传到服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37964653/

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