我目前正在使用PHP 5.5.1运行Apache 2.4服务器,它通过mod_wsgi连接到Django(如果重要的话)。这一切都在Oracle Linux上运行。在这个设置中,我试图使用mysqli和方法mysqli_connect
。但是,我正面临着我的mysqli设置问题。我使用了以下网站:MySQLi Setup。但是,即使在运行./configure --with-mysqli=/usr/bin/mysqlconfig
和./configure --with-mysqli
之后,我仍然没有在我的phpinfo()测试站点中看到mysqli部分。我已经在两者之后运行make和make install并且它运行良好。
此外,当我尝试以下命令./configure --with-mysql=/usr/bin/mysql_config --with-mysqli=mysqlnd
时,出现以下错误:configure: error: Cannot find MySQL header files under /usr/bin/mysql_config. Note that the MySQL client library is not bundled anymore!
除此之外,我已取消注释extension=php_mysqli.dll
行。
现在,我知道我需要做什么,这是为了获取MySQL客户端库并允许通过php访问它。但是,我不确定如何做到这一点,我发现的许多问题和答案都没有用。
感谢任何帮助。感谢。