skip to Main Content

PHP Warning: PHP Startup: Can't load module 'C:xamppphpextphp_mongodb.dll' as it's linked with 14.29, but the core is linked with 14.16 – PHP Versions

Please help me I am having an issue while the Laravel MongoDB connection. when running this command :"composer require jenssegers/mongodb". I got this warning message: LENOVO@DESKTOP-7MHNLPS MINGW64 /c/xampp8/htdocs/mongotest $ composer require jenssegers/mongodb PHP Warning: PHP Startup: Can't load module 'C:xamppphpextphp_mongodb.dll'…

VIEW QUESTION

Mongodb – nodemon app crashed – waiting for file changes before starting can you help me?

my code is; ` router.post("/login", async (req, res)=>{ try { const user = await User.findOne({ email: req.body.email }); !user && res.status(401).json("Wrong password or username !"); const bytes = CryptoJS.AES.decrypt(user.password, process.env.SECRET_KEY); const originalPassword= bytes.toString(CryptoJS.enc.Utf8); originalPassword !== req.body.password && res.status(401).json('Wrong Password or…

VIEW QUESTION
Back To Top
Search