Skip to content Skip to sidebar Skip to footer

Cannot Read Property 'isloggedin' Of Undefined

This code is used to add the products and then to cart and orders creating pdf using mongodb in the backend. actually session.isLoggedIn is defined in the auth js check that code b

Solution 1:

I also followed his tutorial and had this problem, and also checked whether its root is Express error handling or multer. After 4 hours of debugging and googling here's the solution that I found:

https://stackoverflow.com/a/48653921/11330560

And this:

https://github.com/expressjs/multer/issues/513#issuecomment-422573221

Basically, Windows OS file don't accept ":" named. He used Mac OS. so you have to add .replace(/:/g, '-') in front of new Date().toISOString() that is:

new Date().toISOString().replace(/:/g, '-')

I hope it solves your problem too :)

Solution 2:

I've been through the same issue, the answer for this is given in the FAQ section of the course.Still if you're not getting it follow the next steps..

Install uuid package using: npm install --save uuid require using: const { v4: uuidv4 } = require('uuid')

Rewrite your code as:

const fileStorage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, 'images');
},
 filename: (req, file, cb) => {
cb(null, uuidv4() + '-' + file.originalname);
}
});

I hope this will solve your issue too. Thank-you :)

Solution 3:

Use uuid for this instead of newDate().toIsoString()

const fileStorage = multer.diskStorage({
    destination: (req, file, cb) => {
        cb(null, 'images');
    },
    filename: (req, file, cb) => {
        cb(null, uuidv4() + '-' + file.originalname);
    }
});

Post a Comment for "Cannot Read Property 'isloggedin' Of Undefined"