php手动加载模块遇到的问题总结

问题一、

加载mysql模块和gd模块时运行/usr/local/php/bin/php -v

出现如下错误(只贴出gd错误,mysql错误提示是一样的):

PHP Warning:  PHP Startup: Invalid library (maybe not a PHP library) '/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/gd.so' in Unknown on line 0

 

Warning: PHP Startup: Invalid library (maybe not a PHP library) '/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/gd.so' in Unknown on line 0

 

很纠结搞了很久没有搞好,最后phpinfo查看时,发现GD和mysql模块已经加载过了,因此,个人解决可能是php安装时已经加载mysql模块了。

 

 

问题二、加载mysql模块无法编译

报错信息如下:

checking if debug is enabled... no

checkingif zts is enabled... no

checkingfor re2c... re2c

checkingfor re2c version... 0.13.5 (ok)

checkingfor gawk... gawk

checkingfor MySQL support... yes, shared

checkingfor specified location of the MySQL UNIX socket... no

checkingfor the location of libz... no

configure:error: Cannot find MySQL header files under yes.

Notethat the MySQL client library is not bundled anymore!

 

解决办法:

./configure with-php-config=/usr/local/php/bin/php-config  --with-mysql=/usr/local/mysql/


你可能感兴趣的:(网站开发)