how to enable sqlite3 for php?

前端 未结 15 822
野性不改
野性不改 2020-11-28 03:53

I am trying to install sqlite3 for PHP in Ubuntu.

I install apt-get php5-sqlite3 and edited php.ini to include sqlite3 extension.

W

15条回答
  •  情深已故
    2020-11-28 04:04

    The accepted answer is not complete without the remainder of instructions (paraphrased below) from the forum thread linked to:

    cd /etc/php5/conf.d
    
    cat > sqlite3.ini
    # configuration for php SQLite3 module
    extension=sqlite3.so
    ^D
    
    sudo /etc/init.d/apache2 restart
    

提交回复
热议问题