- Issue created by @ajay_reddy
- Status changed to Postponed: needs info
10 months ago 8:00am 19 June 2024 - π«π·France fgm Paris, France
AFAICS this means your PHP cannot see your MongoDB server.
Since your phpinfo() shows the extension is installed in your PHP, the likely culprit is the DSN you are using
localhost:27017
.Did you copy and adapt the
example.settings.local.php
provided by the module to your actual topology ?Try to enter the container in which you are running PHP (possibly the same one as apache) and run
mongosh
to check if it can indeed connect to your mongodb server. I suspect you need to use the name of the container instead oflocalhost
.