PHP 7 RC3: How to install missing MySQL PDO

后端 未结 12 874
暗喜
暗喜 2020-12-04 11:54

I am trying to setup webserver with PHP 7 RC3 + Nginx on Ubuntu 14.04 (for test purposes).

I installed Ubuntu in Vagrant using

12条回答
  •  萌比男神i
    2020-12-04 12:44

    1. download the source code of php 7 and extract it.
    2. open your terminal
    3. swim to the ext/mysqli directory
    4. use commands:

      phpize

      ./configure

      make

      make install (as root)

    5. enable extension=mysqli.so in your php.ini file
    6. done!

    This worked for me

提交回复
热议问题