Sunday 1 September 2019

Error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing (FIXED

Hi,
I was installing PHP-5.5.26 on my CentOS-6, 32-bit, deployment server and got this error while running ‘./configure’.
I fixed it by installing libc-client-devel package with the following command:
#yum install libc-client-devel.i386
(or)
#yum install libc-client-*

Configure : error : cannot find MySQL header files under /usr (FIXED)

Hi,
As part of LAMP installation and configuration on my deployment server CentOS-6, I was configuring PHP with MySQL support using the following,
./configure –with-apxs2=/usr/local/apache2/bin/apxs –with-mysql

And I got the following error:

configure: error: Cannot find MySQL header files under /usr.
Note that the MySQL client library is not bundled anymore!
I fixed it by installing mysql-devel by issuing the following command:

# yum install mysql-devel
And checked the installation using,
# find / -name mysql.h