MongoDB\Driver\Manager' not found with php

Viewed 1827

I am having problems with mongo in php, I am working with wamp

I have already put extension=php_mongodb.dll in php.ini

It is working when I call the script in the browser browser

But when I call the script in console it show this error error in console

Need help

1 Answers

"Console" and "Web" are using two different PHP binaries (and configurations).

Put the extension=php_mongodb.dll also in the so called php-cli version php.ini and the problem should be solved.

Related