Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to compile PHP in LAMP

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article is about how to compile PHP in LAMP. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

1. [root@KAKA php-5.3.27] # / configure-- prefix=/usr/local/php-- with-apxs2=/usr/local/apache2/bin/apxs-- with-config-file-path=/usr/local/php/etc-- with-mysql=/usr/local/mysql-- with-libxml-dir-- with-gd-- with-jpeg-dir-- with-png-dir-- with-freetype-dir-- with-iconv-dir-- with-zlib-dir- -with-bz2-with-openssl-- with-mcrypt-- enable-soap-- enable-gd-native-ttf-- enable-mbstring-- enable-sockets-- enable-exif-- disable-ipv6

2. $echo $?

0

3. $make

4. $echo $?

0

5.$ make install

6. $echo $?

0

Complete

1. / configure first install the dependency package according to the parameter options:

Yum install-y libxml2-devel openssl openssl-devel bzip2 bzip2-devel libpng libpng-devel freetype freetype-devel libjpeg libjpeg-devel

2. [root@yaho php-5.3.27] # yum install-y libtool-ltdl libtool-ltdl-devel # solved the problem that the lltdl file could not be found

3. Install encryption module: libmcrypt

Wget http://nchc.dl.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz

$tar zxf libmcrypt

$cd libmcrypt

$. / configure

Prompt that C++ library is missing.

$yum install-ygcc-c++

$make & & make install

$cd.. # go back to the PHP directory

Thank you for reading! This is the end of this article on "how to compile PHP in LAMP". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report