Php installation: 1. configure -- prefixusrlocalphp -- with-apxs2homeapachebinapxs -- with-zlib-dir -- with-libxml-dirusrlocallibxml2 -- with-gd -- with-freetype -- solve the problem that occurs during php installation
Php installation:
1. /configure -- prefix =/usr/local/php -- with-apxs2 =/home/apache/bin/apxs -- with-zlib-dir -- with-libxml-dir =/usr/local/ libxml2/-- with-gd -- with-freetype -- with-jpeg -- with-png -- enable-mbstring -- with-mysql =/usr/local/mysql/-- with-mysqli =/ usr/local/mysql/bin/mysql_config -- enable-gd-native-ttf -- with-gettext =/usr/local/gettext/-- enable-magic-quotes -- enable-sockets
Gd Library is required for images supported by php
Because the operating system comes with the gd png jpeg library, you cannot specify the dir to use the format -- with-jpeg.
2. the following error occurs during make install:
Installing php sapi module: apache2handler
/Usr/share/apache2/build/instdso. sh SH_LIBTOOL = '/usr/share/apr-1.0/build/libtool 'libphp5.la/usr/lib/apache2/modules
/Usr/share/apr-1.0/build/libtool -- mode = install cp libphp5.la/usr/lib/apache2/modules/
Libtool: install: cp. libs/libphp5.so/usr/lib/apache2/modules/libphp5.so
Libtool: install: cp. libs/libphp5.lai/usr/lib/apache2/modules/libphp5.la
Libtool: install: warning: remember to run 'libtool -- finish/home/SCC/php-5.2.13/Libs'
Chmod 644/usr/lib/apache2/modules/libphp5.so
Apxs: Error: Activation failed for custom/etc/apache2/httpd. conf file ..
Apxs: Error: At least one 'loadmodule' directive already has to exist ..
Make: *** [install-sapi] Error 1
In fact, httpd. conf already exists. I don't know why the above error occurs. I used the following method to back up httpd. conf first.
Then create another httpd. conf
Content
# LoadModule directive to aid module installations
# LoadModule dummy_module/usr/lib/apache2/modules/mod_dummy.so
In this way, the installation is successful.
3. after php is installed, it is found that php does not support jpeg, but -- with-jpeg has been added in the above configuration process, and libjpeg rpm is also installed, but it is always not supported, so you have to reinstall the jpeg Library
Download ikev6
Ftp://ftp.sunfreeware.com/pub/freeware/SOURCES/jpeg-6b.tar.gz
Compile and install:./configure -- prefix =/usr/local/jpeg -- enable-shared
Then install php
/Configure -- prefix =/usr/local/php -- with-apxs2 =/home/apache/bin/apxs -- with-zlib-dir -- with-libxml-dir =/usr/local/ libxml2/-- with-gd -- with-freetype -- with-jpeg-dir =/usr/local/jpeg -- with-png -- enable-mbstring -- with-mysql =/usr/local /mysql/-- with-mysqli =/usr/local/mysql/bin/mysql_config -- enable-gd-native-ttf -- with-gettext =/usr/local/gettext/-- enable -magic-quotes -- enable-sockets
Recompile and install to support jpeg