LoginSignup
4
5

More than 5 years have passed since last update.

php pdo_mysql インストール

Last updated at Posted at 2013-07-22
#pecl install pdo_mysql

checking for mysql_config... not found
configure: error: Cannot find MySQL header files under
ERROR: `/tmp/pear/temp/PDO_MYSQL/configure' failed

⇒headerファイルがないのでインストールできなかった。

ソースをダウンロード
$pecl download pdo_mysql
cd PDO_MYSQL-1.0.2
$ ./configure --with-pdo-mysql=shared,/usr/local/mysql
make 
make test
su 
make install
pdo_mysql.soが出来る
/usr/local/lib/php/extensions/no-debug-zts-20090626/
php.iniを修正
extension=pdo_mysql.so

phpinfo()のPDOにmysqlが表示されていればOK

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5