Level 1
any one can help me ???
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
hi i try to upload video file with laravel to vimeo hosting with the api , i use package https://github.com/vimeo/laravel my controller:
public function store(VideosStoreRequest $request, VimeoManager $vimeoManager): RedirectResponse
{
$video =$request->all();
if ($request->hasFile('video') && $request->hasFile('image')) {
$uri = $vimeoManager->upload($request->video,[
'name' => $request->title,
'description' => $request->description
]);
$video['uri'] = $uri;
}
$created = Video::query()->create($video);
$created->addMedia($request->image)->toMediaCollection('video');
return redirect()->route('videos.index')->with(['successful',true]);
}
it work in small size video but if i try to upload video 98M it give me server error A timeout occurred Error code 524
Please or to participate in this conversation.