Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
1 vote
1 answer
33 views

MulterError: File too large : How to Handle this error?

i am building a register functionality and uploading a profile image and sending it to backend. There multer handles it. The file size limit is set to 100kb. Everything works fine. But when i upload ...
Aditya Nagare's user avatar
0 votes
0 answers
20 views

Images are not showing after deployment of MERN project on Render hosting platform

This is my server.js file: const express = require("express"); const cors = require("cors"); const dotenv = require("dotenv"); const connectDB = require("./config/db&...
Shirish Gund's user avatar
0 votes
0 answers
25 views

i facing problem with multer package in express js

to upload files i configured multer package.i want server only accept image file.when server detect file other than image(except image file) then server will send error with response.the problem is ...
Alfez Patani's user avatar
0 votes
1 answer
39 views

I cannot view the profilePicture that I uploaded to mongodb

I'm new to React Native, but I'm trying to improve myself on the MERN stack. From the frontend, via expo-image-picker, I can save the photo to MongoDB via Multer as a String as profilePicture in the ...
Bugra's user avatar
  • 1
0 votes
1 answer
27 views

Multer Upload working but fails every few tries. Seems Like Async is not working

Well I'm developing an application that that stores multiple files to a database at once using multer middleware. I have everything set up and working but once every few tries, my upload fails with no ...
Teke Bethelson's user avatar
0 votes
0 answers
28 views

Problem with uploading multiple Image files to the server using Multer and save it to DB

I am trying to uploading multiple images to the server, but I am unable to do this. My code file is below, anyone's help would be appreciated. Here I am taking images file input and storing it into an ...
Ariyo Aderonmulo Muhammed's user avatar
0 votes
0 answers
53 views

Issue with Google Drive API Integration: Unexpected HTML Response from Backend in Production Environment

I have developed a web application using the MERN stack.I'm encountering a problem with the integration of the Google Drive API into my web application deployed in a production environment. The goal ...
user23817303's user avatar
0 votes
0 answers
23 views

How can I properly add images using multer without getting errors?

I am having issues with uploading images still, I get 200 when I upload my forms without attaching images but got no response when I attached Image. I'm trying to upload image in MongoDB using multer ...
Leo Emmy's user avatar
0 votes
1 answer
40 views

want to save file with filename given by user using multer

const express = require("express"); const mongoose = require("mongoose"); const cors = require("cors"); const multer = require("multer"); const path = require(&...
Pratham Singh's user avatar
1 vote
1 answer
39 views

How to combine multer uploads?

I need to be able to upload a single image AND an array of images (both are optional fields on the frontend so I want to keep them separate). My code works if I use one upload or the other. How do I ...
dawphin777's user avatar
0 votes
0 answers
34 views

Error: ENOENT: no such file or directory, open 'C:\Users\Bz\webapp\public\uploads\2031_ide.png'

i was trying add images to the mongodb using multer npm, but its showing this error, Error: ENOENT: no such file or directory, open 'C:\Users\bz\webapp\public\uploads\2031_ide.png I don't know why ...
Bezelel B's user avatar
0 votes
0 answers
44 views

Getting req.body empty while using FormData API with multer

I am working on a project which takes image files and other data on the mongo db. While registring user i am taking a profile picture and it is uploading correctly. And once the user register by ...
Mustafa Mulla's user avatar
1 vote
0 answers
71 views

Image Upload & Editing: Implementing in-browser cropping and storing edited images on the server using MERN stack

I'm working on a project where I want to allow users to upload images, perform in-browser cropping, and store the edited images on the server. I'm using the MERN stack (MongoDB, Express.js, React, ...
hussain ashraf's user avatar
0 votes
0 answers
17 views

Image file isn't saving in the destination directory of mern application using multer

I'm developing a social media application in mern stack in which I'm stuck at uploading images for new post and saving images in my folder Home Component (client side) import Nav from './Nav'; import ...
Amaan Laghari's user avatar
0 votes
0 answers
24 views

Multer package problem in my Node.js and React.js app

My problem is with the Multer-package installed with npm, and I am trying to upload a single img-file from the frontend to the backend, but the img- simply does not end up in that folder as I ...
ToriaH's user avatar
  • 1

15 30 50 per page