php连接数据库提示could not find driver 问题解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php连接数据库提示could not find driver 问题解决相关的知识,希望对你有一定的参考价值。

使用命令可以链接,编写个php连接mysql的测试页面也是可以连接的,但php程序就是无法连接,报一下错误:

could not find driver

提示:未找到驱动


解决方法:

  1. cd /usr/src/php-5.5.38/ext/pdo_mysql

  2. phpize

  3. ./configure --with-php-config=/usr/local/php5/bin/php-config

  4. make

  5. make install

此时将会生成模块(pdo_mysql.so),路径会打印到屏幕上,将路径加模块一同写入到php.ini

  6. vim /usr/local/php/php.ini

    extension=/usr/local/php5/lib/php/extensions/no-debug-non-zts-20121212/pdo_mysql.so

  7. 重启服务:/etc/init.d/httpd restart

本文出自 “向往技术的小白” 博客,请务必保留此出处http://lesliecheung.blog.51cto.com/12622169/1974259

以上是关于php连接数据库提示could not find driver 问题解决的主要内容,如果未能解决你的问题,请参考以下文章

linux php5.6 提示 could not find driver

Laravel —— could not find driver

php7连接 sqlserver踩过的坑,could not find driver解决方式

我用jlink v8连接TQ2440,找不到cpu,提示Could not find supported cpu core on JTAG chain,板子一直响

解决Ubuntu下PHP报错could not find driver - 面板phpinfo中PDO drivers > no value的问题

java 执行可执行文件时提示“could not find or load main class ”的问题