Since both Base64 image file and regular image file have data type of String in MongDB, can we display both images at the same time using the same schema? Right now I'm able to upload both Base64 and regular filename to MongoDB using the same Schema. It would be great if there is some codes to check if the image is stored as filename or Base64 in MongoDB and display them properly.
@thedebugarena Жыл бұрын
You can check my other video on the same but using multer. In that I am storing image name only
@jumbo999614 Жыл бұрын
@@thedebugarena Thanks again for replying. I have more questions. If you deploy the project onto the internet, where will the actual images be stored? on their server's storage disk? and on the Register page, you hardcode Admin secret key. Isn't security risk? The server that store your code will have access to this key? And the secret key will be able to update? Let' say someone accidentally finds out the secret key and you want to change it. What would you have to do? I'm just curious.
@iganic757411 ай бұрын
is we can't save entire image in mongodb in binary form ?
@thedebugarena11 ай бұрын
We can store in base 64 check previous video in that I have done using base 64.
@friday0778 ай бұрын
@@thedebugarenai think it just encode the filename but he ask about the is it possible to upload a image direct with out any create folder like upload
@afifnusada47128 ай бұрын
bruh, your grammar is a disaster💀💀, this is the first time i see a person using “is” and “can’t” at the same time💀💀.
@thedebugarena8 ай бұрын
@@afifnusada4712 sorry about that. Will improve.
@doloresmampoko24637 ай бұрын
thank you but its not working for me , the bug started when i put the url front in multer stockage , can i have help plz ?.
@maheshbhatt15058 ай бұрын
Hey im getting this error Uncaught ReferenceError: require is not defined. why is it not defined or do i need to install some packages for that . Im using src={require(`./images/${data.image}`)} Please help at 16:45 part of your video
@thedebugarena8 ай бұрын
Ideally it should work. I don't know why it is giving you error but still try this solution
@DennisIrungu-dx8mdАй бұрын
I'm also getting a similar error
@OnlyMagdy13 күн бұрын
using import image from 'image/path' instead and use 'image' aka the path of the image in the image element instead also the error happens because your npm config is using npm modules aka type in package.json is set to module instead of commonjs
@malikbhai2285 Жыл бұрын
sir i want to upload pdf file or video then video play and pdf file download
@idreamgames8 ай бұрын
Amazing video but if you had saved it like baseurl/filename in database instead of getting it from local dir (src/images) that will be very helpful.
@Lieutenantsab Жыл бұрын
Bro mene frontend & backend ke liye alg se folder bana rakhe hai 2, and backend me index.js hai java multer laga hai and fronted wale folder me react hai. Problem: Multer destination cb(null, ".../fronted/src/component/") frontend path dalne per image phoch nahi rahi hai image folder me. Please help ❤️
@thedebugarena Жыл бұрын
In that case you can put them in same folder or you have to use some external package to achieve them
@Lieutenantsab Жыл бұрын
@@thedebugarena yes unfortunately now I'm using all the fronted and backend in same folder 🥲
@thedebugarena Жыл бұрын
@@Lieutenantsab Ohhh luckily now I got the best solution of this also in my next video I will show that
@sebastianmontoya721711 ай бұрын
Thanks for the video this seems to be great for working in local. In the case of deploying to a host, is there a way we can get photos uploaded somewhere so that way we can pass the url of the image? All done from within the app? Like upload image in frontend, backend gets it uploaded to a third party, creates a url , and then adds that url to mongodb .. when we call mongodb it will have url of images which we can then map through and show
@thedebugarena11 ай бұрын
Yes while hosting also we can use multer and it works. But, there is one more solution which totally suits your requirement is using cloudinary. You can upload image there it will return url and then you can store that in mongo db. Very soon I will be posting video on this but you can checkout others.
@Shanky_179 ай бұрын
Do it fast bro@@thedebugarena
@meow3065. Жыл бұрын
what will happen if i host my website will the uploads folder still contain the images for particular user or how does it work
@thedebugarena Жыл бұрын
There you have to manage the folder structure accurately but it works there
@LukmaansStack Жыл бұрын
how to manage that folder structure please tell me @@thedebugarena
@thedebugarena Жыл бұрын
@@LukmaansStack While hosting there are few things we have to do 1) To whatever folder you are adding the image it should have access to read and delete. 2) You have to specify proper location to upload the image.
@rajeshramjibanswal1277 Жыл бұрын
Suppose we get image outside the project folder using API then what should I do
@thedebugarena Жыл бұрын
Then we might have to use an external package which will allow this
@thedebugarena Жыл бұрын
The solution is given in my next video in which i have shown how to upload pdf
@gauravbhagat2506 Жыл бұрын
What if i want to host this app. Now it will not work right?
@thedebugarena Жыл бұрын
Yes it will work. While hosting you just have to give that folder read and write access.
@008ajaykumarpaswan6 Жыл бұрын
bhai here uploads folder is automatically made or have to made
@thedebugarena Жыл бұрын
Both will work
@malikbhai2285 Жыл бұрын
bhai mere pass frontend me ja ker image save ni ho rhii..?
@mustkeemkhokhar7030 Жыл бұрын
bro try both axios and and browser fectch api got same api error 404 page not found.. any help
@thedebugarena Жыл бұрын
Dm me on instagram
@AbiRamABII10 ай бұрын
bro in backend while store , what should define the path name for storing the images after deployment
@thedebugarena10 ай бұрын
After deployment if your backend folder is at same location then same code should work. You can access the folder like this './uploads'. But if your both the folder is at different location then we can do like this: Suppose your image is getting uploaded into "Uploads" folder at the backend using multer then in app.js we can add this line "app.use("/uploads,express.static("uploads")) this will make your uploads folder static and it can be accessed from anywhere. Then in your react you can access image using location like "localhost:5000/uploads/file.jpg". In place of localhost you can pass your url. For better understanding you can watch this video kzbin.info/www/bejne/fKfTZ3h6frWGebcsi=hPijFFEHqPgO4M1w at timeline 17:38
@AbiRamABII10 ай бұрын
@@thedebugarena tnx bro ,you're a lifesaver!
@malikbhai2285 Жыл бұрын
thank you soo much for this video for me very helpful..lot of thanks
@nagaBhushan-pb6gu3 ай бұрын
Disk storage is not working after deployment
@renzxstech17618 ай бұрын
how about my backend and react app is in the different directory?
@thedebugarena7 ай бұрын
You can do this by creating a static folder in your backend where you can store any files that can be accessible for anywhere.
@ShanuKhan-jx4xy5 ай бұрын
How to Validate form-data before using Multer ?
@malikbhai2285 Жыл бұрын
ok Bro, thanks image done..now make video for pdf file upload or download or video upload or play in mern stack wtih next.js
@thedebugarena Жыл бұрын
Sure will try
@thedebugarena Жыл бұрын
Video is out you can check
@ranjitdevadiga68808 ай бұрын
will this work fine when we deploy it.
@thedebugarena8 ай бұрын
We will have to configure it properly but it should work
@sreenija3703 Жыл бұрын
i have a form which consist of personal details and image .How to set mongodb schema for this type of data.Can we send text and image data at a time to server
@thedebugarena Жыл бұрын
Yes you can in this in schema we have added only image you can add other things too. In front-end store all the different values like name, image etc in their particular state and on submit send them all to backend. It will work
@sreenija3703 Жыл бұрын
@@thedebugarena can you please make a video on that type of form too
@digitaltanzeel1056 Жыл бұрын
how can we my backend app name is backend and frontend app name is frontend , how can we give image folder location in backend in place of upload file .. will it work , please let me know
@thedebugarena Жыл бұрын
Yes it will work. If you are having two different folders at different location then you might have too work hard and use some External package to achieve that
@shahinrohaman62577 ай бұрын
I got network error: axios error how can I fix it
@logicfy6 ай бұрын
check endpoint
@gamingarena5045 Жыл бұрын
I'm doing the same but it says require is not defined when I write require in my img tag.
@thedebugarena Жыл бұрын
Are you writing in{}
@gamingarena5045 Жыл бұрын
@@thedebugarenayes
@pawanyadav441710 ай бұрын
what if frontend is at another place how to tell backend to use src
@thedebugarena10 ай бұрын
In that case what we can do is Suppose your image is getting uploaded into "Uploads" folder at the backend using multer then in app.js we can add this line "app.use("/uploads,express.static("uploads")) this will make your uploads folder static and it can be accessed from anywhere. Then in your react you can access image using location like "localhost:5000/uploads/file.jpg". For better understanding you can watch this video kzbin.info/www/bejne/fKfTZ3h6frWGebcsi=hPijFFEHqPgO4M1w at timeline 17:38.
@kuretinamahsivaya54696 ай бұрын
how can i send 2 or more images in array
@thedebugarena6 ай бұрын
I input tag there is option of multiple by using that you can select multiple image but In backend you will have to modify according to that
@kuretinamahsivaya54696 ай бұрын
@@thedebugarena please tell me also that
@gabrielaguilera2015Ай бұрын
thanks bro
@BsratWellerufael6 ай бұрын
no need to use buffer as a datatype while we store an image to mongodb ???
@thedebugarena6 ай бұрын
Yes you can change your datatype to buffer but string is also doing the job so I used that.
@ramkrushnaparkipandla4112 ай бұрын
Thank u❤
@malikbhai2285 Жыл бұрын
bro same this work with next.js full stack make video?
@thedebugarena Жыл бұрын
Dm me on instagram
@malikbhai2285 Жыл бұрын
@@thedebugarena what mean this?
@xeniyadobro3805 ай бұрын
Thank you!
@thedebugarena5 ай бұрын
You're welcome!
@KadamVaibhav-gn8pw7 ай бұрын
where is your code
@Aben7331 Жыл бұрын
Hello can u please help me I get stucked🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
@thedebugarena Жыл бұрын
Dm me on instagram
@naseeriyat924111 ай бұрын
Thanks guru ji
@mario_luigie459311 ай бұрын
Good Job! Thank you!
@thedebugarena10 ай бұрын
Our pleasure!
@deepikadeepu95345 ай бұрын
If you deploy the project onto the internet, where will the actual images be stored? on their server's storage disk? can anyone answer this please