php driver mongodb , never loaded

2019-03-01 14:43发布

I have installed MongoDB, wamp server and I have added a collection in MongoDB

I then downloaded the php_mongo-1.6.8.zip from S3 -> OK

There are many files in the zip file, but which one is the one I need? (Window 10 64 bit)

I found my php.ini location from phpinfo() in C:\wamp\bin\apache\apache2.4.9\bin\php.ini and I inserted this string in extension=php_mongo.dll. In c:/wamp/bin/php/php5.5.12/ext/ copy (for test) the php_mongo-1.6.8-5.6-vc11.dll (renamed in php_mongo.dll).

I can restart apache without errors and call mongo.php in my host

echo extension_loaded("mongo") ? "mongo loaded\n" : "mongo not loaded\n";
echo "<br>";
echo extension_loaded("mysql") ? " mysql loaded\n" : " mysql not loaded\n";

This is the print:

mongo not loaded

mysql loaded

Why isn't the mongo driver loading?

2条回答
相关推荐>>
2楼-- · 2019-03-01 15:46

the problem is the API compile version. With the version 1.4.5 mongodb driver now all work fine.

the correct driver for my Window 10 64 bit and Wamp64bit is php_mongo-1.4.5-5.5-vc11-x86_64.dll

查看更多
戒情不戒烟
3楼-- · 2019-03-01 15:46

solution for driver php version 1.6.11

  1. download a new version (i have 5.5.12 into wamp server) php (i have downloaded 5.5.29) from php.net
  2. update wamp for use new php version
  3. download the 1.6.11 driver php (dll for me) PECL-mongodb

Very important choose correct VC9 or VC11 and 32 or 64 bit

查看更多
登录 后发表回答