Search or scroll through everything
I am uploading files to cloudinary with this code in laravel ````public function upload(Request $request) { $folder = 'product_photo'; if ($request->hasFile('photo')) { $file = $request->file('photo'); request()->validate([ 'photo' => 'nullable|image|mimes:jpeg,png,jpg,gif,svg|max:6048', ]); $cloudinaryResponse =…
this is my code public function upload(Request $request) { $folder = 'product_photo'; if ($request->hasFile('photo')) { $file = $request->file('photo'); request()->validate([ 'photo' => 'nullable|image|mimes:jpeg,png,jpg,gif,svg|max:6048', ]); $cloudinaryResponse = Cloudinary::upload($file->getRealPath(), [ 'folder' =>…
Hi, I need help to solve a problem I have with cloudinary in laravel 10. When I try to upload an image, I get this error: cURL error 60: SSL certificate problem: self-signed certificate in certificate chain. Does anyone know how to fix this error or what causes it? I appreciate any suggestion or explanation.
You need to be logged in to ask or answer questions. You can use your Cloudinary account, just click the "Sign In" button.