PHP cannot find MongoDB driver

前端 未结 3 827
萌比男神i
萌比男神i 2020-12-20 06:12

On my Ubuntu 12.04 installation I install PHP5 (5.5) from the ondej package. Everything works ok with the PHP, Apache and MySQL, I also successfully install Mongo daemom and

3条回答
  •  轮回少年
    2020-12-20 06:58

    Install MongoDB PHP Driver:

    sudo apt-get install php5-dev php5-cli php-pear
    sudo pecl install mongo

    Install php5-mongo Pacakge:

    sudo apt-get install php5-mongo

    Open your php.ini file and add to it:

    extension=mongo.so

提交回复
热议问题