Manual
PHP Manual

Installation

This » PECL extension is not bundled with PHP. Information for installing this PECL extension may be found in the manual chapter titled Installation of PECL extensions. Additional information such as new releases, downloads, source files, maintainer information, and a CHANGELOG, can be located here: » http://pecl.php.net/package/mongo.

Installing on *NIX

Run:


$ sudo pecl install mongo

Add the following line to your php.ini file:


extension=mongo.so

If pecl runs out of memory, make sure memory_limit in php.ini is set to at least 32M.

Manual Installation

For driver developers and people interested in the latest bugfixes, you can compile the driver from the latest source on » Github. Go to Github and click the "download" button. Then run:


$ tar zxvf mongodb-mongodb-php-driver-<commit_id>.tar.gz
$ cd mongodb-mongodb-php-driver-<commit_id>
$ phpize
$ ./configure
$ sudo make install

Make the following changes to php.ini:

OS X

If your system is unable to find autoconf, you'll need to install Xcode (available on your installation DVD).

If you are using XAMPP, you may be able to compile the driver with the following command:


sudo /Applications/XAMPP/xamppfiles/bin/pecl install mongo

If you are using MAMP (or XAMPP and the above command does not work), precompiled binaries are available from » Github (download the latest one with "osx" in the name that matches your version of PHP). Extract mongo.so from the archive and add it to MAMP or XAMPP's extension directory. Add


      extension=mongo.so

to the php.ini file being used and restart the server.

Gentoo

Gentoo has a package for the PHP driver called dev-php5/mongo, which can be installed with:


$ sudo emerge -va dev-php5/mongo

If you use PECL, you may get an error that libtool is the wrong version. Compiling from source you'll need to run aclocal and autoconf.


$ phpize && aclocal && autoconf && ./configure && make && make install

Fedora

If you don't want to modify php.ini directly, you can create a separate mongo.ini file. Within the /etc/php.d directory, create a subdirectory named mongo (or something else you like). In the mongo directory, create a mongo.ini file. Put the following in your mongo.ini file:


extension=mongo.so

; any other mongo options you'd like (see the Runtime Configuration section) 

Installing on Windows

Precompiled binaries for each release are available from » Github for a variety of combinations of versions, thread safety, and VC libraries. Unzip the archive and put php_mongo.dll in your PHP extension directory ("ext" by default).

The latest (non-release) code is compiled into Windows binaries on every commit. The zip consists of a .zip with php_mongo.dll and a version.txt. Please keep the version.txt around so that if you have a question or problem, you can give the developers the exact version you're using. (The number is long and nonsensical, but it will make sense to the developers!)

To get the latest bug fixes (and possibly bugs), download the binary corresponding to the PHP you have installed:

Add the following line to your php.ini file:


extension=php_mongo.dll

Third-Party Installation Instructions

A number of people have created excellent tutorials on installing the PHP driver.


Manual
PHP Manual