1. ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --enable-track-vars 时出错:
checking lex output file root... ./configure: line 2418: lex: command not found
configure: error: cannot find output from lex; giving up
解决方法:
在安装盘里找到flex安装包rpm
安装 flex
2. 重新config,出现以下错误:
checking libxml2 install dir... no
configure:error:xml2-config not found. Please check your libxml2 installation.
解决方法:
安装 libxml2-dev
3
Warning: dl(): Unable to load dynamic library "/usr/lib/php4/mysql.so" - libmysqlclient.so.10: cannot open shared object file: No such file or directory in /usr/www//test.php on line 9
function test output
解决方法:
找到MySQL-shared-compat包
# rpm -ivh MySQL-shared-compat-4.1.7-0.i386.rpm
4 warning: Function registration failed - duplicate name - mysql_connect in /usr/www/test.php on line 9
解决方法:
把test.php中的 dl("mysql.so") 注释掉,重新测试
Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client in /usr/www/inc.php on line 7
以root登录到mysql执行语句:update user set password=OLD_PASSWORD("password") where user="root"; 就行啦。
具体描述见以下帖子:
http://dev.mysql.com/doc/mysql/en/Old_client.html