gpt4 book ai didi

php - laravel 文件上传 - ""文件不存在或不可读

转载 作者:行者123 更新时间:2023-12-04 17:30:19 29 4
gpt4 key购买 nike

当我上传超过 5mb 的文件时,出现以下错误,

The "" file does not exist or is not readable.



这只发生在文件大小接近 5mb 时,我不明白为什么这会是一个问题,下面是我的代码,
public function verifySave(Request $request)
{
$path = Storage::disk('local')->put('verification', $request->file('certificate'));
//$path = $request->file('certificate')->putFileAs('verification');
$newPath = \Storage::disk('local')->path($path);
if(strpos($request->file('certificate')->getMimeType(), "image") !== false) {
$pdf = new Fpdf();
$pdf->AddPage();
$pdf->Image($newPath, 0, 0, -300);
$newPath = \Storage::disk('local')->path('verification/' . $request->file('certificate')->hashName() . '.pdf');
$pdf->Output('F', $newPath);
}

$verification = [
'death_certificate' => $newPath,
'uploaded' => 'Yes',
'method' => $request->input('verify_method')
];
$request->session()->put('verification', $verification);
return redirect('/your-details');
}

最佳答案

如果其他人收到此错误并且结果不是权限问题,请检查您的 php.ini...确保您的 upload_max_filesize 与 post_max_size 一样大。我有 1000M 的 post_max_size(我们处理一些大的视频文件),但只有 100M 的 upload_max_size(我责怪我的老眼睛)。上传会搅动很长时间,然后抛出上面的错误。

关于php - laravel 文件上传 - ""文件不存在或不可读,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60334988/

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