-
Error opening the pdf
Hey devs, I'm trying to build an application and I'm using cloudinary to upload the pdf file and generate a pdf link, however when i open the link, it says error: failed to open the pdf. I searched online and found that it will work once you check the allow delivery of pdf and zip files and I did that and it worked. A few…
-
Compatibility problems with Node 20 (using Remix.run)?
I am using Cloudinary with Node 20 and Remix.run, invoking Cloudinary via the NodeJS API. With the latest version of Remix, it uses Vite as the build/bundler tool instead of Webpack. With only this code in a server component (e.g. upload.server.ts): import { v2 as cloudinary } from 'cloudinary' cloudinary.config({…
-
I'm getting this weird error: Cannot read properties of undefined (reading 'node')
I'm using cloudinary nodejs api in a next.js 14 server actions. It has been working perfectly until recently. When I remove cloudinary from the project, it works perfectly, whenever i add it, i get this error "TypeError: Cannot read properties of undefined (reading 'node')". Please advise
-
concatenate videos in nodejs
hi , i am uploading videos to cloudinary in chunks , i want to cocnatenated videos from cloudinary is it possible, i am storing all data like url, assest_id, publi_id etc
-
error code 499 while uploading file through nodejs
I am facing error: { message: 'Request Timeout', http_code: 499, name: 'TimeoutError' } meanwhile my internet connection is stable and file size is 55kb. I have tried with other file size still gives same error. Also i tried increasing my request timeout by 10000ms on postman. Tried Thunderbolt also for testing and gets…
-
My MERN stack webapp is working perfectly fine in localhost but after deploying it gives Error : 500
my MERN stack webapp is working perfectly fine in localhost but after deploying it just for testing purposes on render(nodejs-backend) and netlify(react js- frontend) , all other parts are working perfectly except for the apis that have image upload system in them. It shows Error : 500, (name: "AxiosError", code:…
-
Destroy method not working
Hello. I'm working with MEVN stack and I have a controller for modifying users. Users have hojaDeVida (which refers to the resume/CV). If a new resume/CV is provided, the previous one should be deleted from cloudinary but for some reason, the 'destroy' method of the uploader object isn't working. The resume/CV is uploaded…
-
Why Cloudinary is making too many requests? How to fix it?
I am working on a React Project and using cloudinary to store images on the cloud, but when i open the network tab in dev tools I sees hundreds of similar requests made by cloudinary.
-
"Must supply api_key" use cloudinary in production any recommendations
console.log("Esto es el cloud_name de cloudinary", process.env.cloud_name); console.log("Esto es el api_key de cloudinary", process.env.api_key); console.log("Esto es el api_secret de cloudinary", process.env.api_secret); cloudinary.config({ cloud_name : process.env.cloud_name, api_key: process.env.api_key, api_secret :…
-
How to perform HLS in nodejs
I want to stream a video which i uploaded on cloudinary and i stored the public id of that video in my database. So i want to fetch the id from my database and then stream that video here is the code snippet.
-
Getting 494 Error
We generated this reel . We are getting 494 error. Please provide support this is a production critical issue.
-
Cloudinary video giving time out error.
http://res.cloudinary.com/ddyewklhk/video/upload/c_fill,du_12,h_1080,so_938.8,w_1920/fl_splice,l_video:ballerappCloudinary:66445980-D9CC-49D8-8D2A-FA656BF907EB-NL-merged.mp4:1713421058876/c_fill,du_12,h_1080,so_940.3,w_1920/fl_layer_apply/fl_splice,l_video:ballerappCloudinary:66445980-D9CC-49D8-8D2A-FA656BF907EB-NL-merged.m…
-
There were any update on cloudinary environment V2 to connect with ?
Hi , good day, I am having problem to upload files images from my VPS from hostinger, This error appears: Error: getaddrinfo EAI_AGAIN api.cloudinary.com at GetAddrInfoReqWrap.onlookup [as oncomplete] (node:dns:71:26) { errno: -3001, code: 'EAI_AGAIN', syscall: 'getaddrinfo', hostname: 'api.cloudinary.com' }
-
when trying to upload image from postman i am getting unexpected end of form error
my index.js part const express = require("express")const app = express()const mongoose = require("mongoose")const cors = require("cors")const route = require("./route")const mult = require('multer')const fileUpload = require("express-fileupload"); app.use( fileUpload({ useTempFiles: true })); my clodinary function file -…
-
gen_remove is not supported as an incoming transformation
Hi, I'm trying to use a transformation preset while I upload pictures in node.js, this preset contains a gen_remove and it crashes with an error 500 "[unhandled] [500] gen_remove is not supported as an incoming transformation". I don't see a list of unsupported transformation in the docs, maybe because it's a new feature ?…