I have read few post here on solving my issue but neither works for php-5.6.
I downloaded php_mongo-1.6.8.zip and php_mongo-1.6.7.zip and tried all the .dll extensions and all of them gives one or the other error.
Error message:
PHP Startup: Unable to load dynamic library 'C:\xampp\php\ext\php_mongo-1.6.8-5.6-vc11-x86_64.dll' - %1 is not a valid Win32 application.
in Unknown on line 0
PHP Startup: Unable to load dynamic library 'C:\xampp\php\ext\php_mongo-1.6.8-5.6-vc11.dll' - The specified module could not be found.
in Unknown on line 0
P.S.: I am using XAMPP for my environment.
I installed mongo extension with following steps:
C:\xampp
on Windows 7php_mongo.dll
and copy it to C:\xampp\php\ext
C:\xampp\php\php.ini
line extension=php_mongo.dll
Without further configuration, I see mongo extension in command line (C:\xampp\php\php.exe -i | findstr mongo
) but Apache complains about missing libsasl.dll
and mongo is missing in http://localhost/dashboard/phpinfo.php. Ok, what next?
C:\xampp\php\libsasl.dll
to C:\xampp\apache\bin\
, restart Apache and enjoy.This howto worked for me well. I hope it will help to resolve your issue.
Follow below steps to make Mongo work for PHP-5.6
extension=php_mongo.dll
// connect to mongodb
echo extension_loaded("mongo") ? "loaded\n" : "not loaded\n";
$m = new MongoClient("mongodb://127.0.0.1:27017");
echo "Connection to database successfully";
// select a database
$db = $m->testdb; // where testdb is already existing Database
echo "Database testdb selected";
Note : Check the "mongo" module is loaded or mot using phpinfo()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With