我以前在服务器上上传图片没有任何问题,但是在我安装了 spatie larave-image-optimizer 之后我遇到了一些问题。我可以上传任何小于 1MB 的图像,但任何超过它都会破坏它
我试图控制台日志或转储错误,以便我可以看到发生了什么,但我不明白错误消息告诉我什么。
$validate = Validator::make($request->all(), [
'docs.*' => [
'sometimes',
'image',
'mimes:jpeg,png,jpg,gif,svg',
'max:51200',
],
]);
if ($validate->fails()) {
return response(['error' => 'Error!'], 422);
}
if ($request->file('docs')) {
foreach ($request->file('docs') as $doc => $image) {
$image->storeAs(
'/folder/' . $id , //I get this id from the params
$image->getClientOriginalName(),
'public'
);
}
}
这条路线经过图像优化器中间件
Route::middleware('optimizeImages')->group(function () {
Route::post("url", "...Controller@store");
});`
我收到此错误:
exception: "InvalidArgumentException"
file: "{app_path}\vendor\spatie\image-> optimizer\src\Image.php"
line: 14
message: "`` does not exist"
为什么 1MB 的图片可以上传,而 2MB+ 的图片不能上传?我该如何解决这种行为?
请记住,在安装此软件包之前,一切正常。我上传了许多超过 4MB 的图像,但我需要优化它们,以便有效地使用服务器的磁盘。
如果我不使用中间件,编辑 #1 错误:
exception: "RuntimeException"
file: "{app_path}\vendor\symfony\var-dumper\Server\Connection.php"
line: 63
message: "stream_socket_sendto(): A request to send or receive data was
disallowed because the socket is not connected and (when sending on a
datagram socket using a sendto call) no address was supplied.↵↵"