ubuntu下安装好LAMP后默认情况没有安装mysql_pdo扩展,以下是安装 步聚,在终端输入以下命令:
1、pecl search pdo
2、sudo pecl install pdo
当出现sh: phpize: command not found这些提示时先运行sudo apt-get install php5-dev
3、sudo pecl install pdo_mysql
当出现configure: error: Cannot find MySQL header files under
ERROR: `/tmp/pear/temp/PDO_MYSQL/configure' failed
提示时先运行
sudo apt-get install libmysqlclient15-dev
4、sudo gedit /etc/php5/apache2/php.ini
5、在最后面加入以下2行
extension = pdo.so
extension = pdo_mysql.so
6、重启APACHE
sudo /etc/init.d/apache2 restart
我做以上操作是因为用zend framework框加时连接数据库出现以下提示
Fatal error: Uncaught exception 'Zend_Db_Adapter_Exception' with message 'The mysql driver is not currently installed' in
Ubuntu下安装PDO:http://www.linuxdiyf.com/linux/15311.html
Ubuntu下的Mysql无法通过PDO连接:http://www.linuxdiyf.com/linux/14337.html