What should I do if the mongodb php extension does not exist?

藏色散人
Release: 2023-03-17 11:34:01
Original
1837 people have browsed it

The solution to the problem that the mongodb php extension does not exist: 1. Execute the "$ sudo pecl install mongo" command in Linux to install the MongoDB PHP extension driver; 2. In the window, download the php mongodb driver binary package, and then Just configure "extension=php_mongo.dll" in the "php.ini" file.

What should I do if the mongodb php extension does not exist?

The operating environment of this tutorial: Windows 7 system, PHP version 8.1, Dell G3 computer.

What should I do if the mongodb php extension is not available?

This tutorial will introduce you to how to install the MongoDB extension on Linux and window platforms.

Install the MongoDB PHP extension on Linux

Install on the terminal

You can execute the following command in Linux to install the MongoDB PHP extension driver

$ sudo pecl install mongo
Copy after login

Using the pecl installation command of php must ensure that the network connection is available and root permissions are available.

If you want to compile the extension driver from source code. You have to manually compile the source package. The good thing about this is that the latest bug fixes are included in the source package.

You can download the MongoDB PHP driver package on Github. Visit the github website and search for "mongo php driver" (download address: https://github.com/mongodb/mongo-php-driver), download the source code package, and then execute the following command:

$ tar zxvf mongodb-mongodb-php-driver-.tar.gz $ cd mongodb-mongodb-php-driver- $ phpize $ ./configure $ sudo make install
Copy after login

If you PHP is compiled by yourself, the installation method is as follows (assuming it is compiled in the /usr/local/php directory):

$ tar zxvf mongodb-mongodb-php-driver-.tar.gz $ cd mongodb-mongodb-php-driver- $ /usr/local/php/bin/phpize $ ./configure --with-php-config=/usr/local/php/bin/php-config $ sudo make install
Copy after login

After executing the above command, you need to modify the php.ini file, in php.ini Add mongo configuration to the file, the configuration is as follows:

extension=mongo.so

Note: You need to specify the path of the extension_dir configuration item.

Installing MongoDB PHP extension on window

Github has provided a precompiled php mongodb driver binary package for the window platform (download address: https://s3 .amazonaws.com/drivers.mongodb.org/php/index.html), you can download the version corresponding to your php, but you need to pay attention to the following issues:

VC6 runs on the Apache server

'Thread safe' (thread safe) is PHP that runs on Apache as a module. If you run PHP in CGI mode, please select non-thread safe mode ('non-thread safe').

VC9 is running on the IIS server.

After downloading the binary package you need, unzip the compressed package and add the 'php_mongo.dll' file to your PHP extension directory (ext). The ext directory is usually in the ext directory under the PHP installation directory.

Open the php configuration file php.ini and add the following configuration:

extension=php_mongo.dll
Copy after login

Restart the server.

Access phpinfo through the browser. If the installation is successful, you will see the following information:

What should I do if the mongodb php extension does not exist?

Recommended learning: "PHP Video Tutorial

The above is the detailed content of What should I do if the mongodb php extension does not exist?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!