pdo sqlite could not find driver… php file not processing

前端 未结 4 1027
-上瘾入骨i
-上瘾入骨i 2020-12-03 10:37

Hi i\'m received the could not find driver error when trying to connect to sqlite via a php file. I\'ve set permission to 777... PHP Version 5.2.16, i have

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-03 11:14

    On archlinux i had to do two things:

    first install php-sqlite

    pacman -S php-sqlite
    

    after that in my php.ini file for me in /etc/php/php.ini i had to uncomment this line:

    ;extension=pdo_sqlite.so
    

    by removing semicolon.

    Dont forget to restart server.

提交回复
热议问题