Getting an error during image Upload since 12 Hours using nodejs SDK
Hello ,
I have not changed anything from my end however, there is an issue during upload:
{ message: 'General Error', name: 'Error', http_code: 500 }
On further investigation, it seems that there is an issue at cloudinary's end
Please help.
Cloud name: tools
cloudinary.uploader .unsigned_upload(article.image, "<PRESET_FILLER>") .then(function(response){ console.log('Uploading to Cloudinary is successful');
).catch(function(error)
{ console.log('Uploading to cloudinary failed miserably:',error);});
Comments
-
@Cloudinary Team Can you please help if you are online?
0 -
Hi @sandycloud,
Looking at our logs, we encountered the following error:Error: Unable to open image: No such file or directory.
This suggests the image file might be missing or the path provided is incorrect. Could you please double-check to ensure you’re passing a valid and accessible image file?
Additionally, for faster assistance and a more private discussion, I recommend opening a support ticket directly here.
Best,Tamara
0 -
Hello Tamara, I figured it out, there is an existing bug in cloudinary nodejs sdk
This works
cloudinary.uploader.upload(raw_image,{ folder: "feeds", width: 600, height: 300, crop: "scale"}
The below code with effect does not work:
cloudinary.uploader.upload(raw_image,{ folder: "feeds", width: 600, height: 300, crop: "scale",
effect: "art:zorro"}
The effect won't work even in upload_preset for unsigned uploads. Please fix it
0