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

The method of installing php5.4 in linux

2025-04-12 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

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

Editor to share with you how to install php5.4 in linux. I hope you will gain a lot after reading this article. Let's discuss it together.

How to install linux php5.4: first download and extract the PHP;, then configure the installation PHP;, then edit the "httpd.conf" file to invoke the PHP module; finally, parse the specific extension into PHP, and start the Apache service test.

Install PHP 5.4.3 under Linux (with Apache as WebServer)

Download PHP

Official download: http://www.php.net/downloads.php

Install PHP

First, make sure that Apache supports the PHP module when compiling and installing

Decompress PHP

Shell > sudo tar zxvf php-5.4.3.tar.gz / opt/sources

Stop the Apache service

Shell > sudo service httpd stop

Configure and install PHP

Shell > cd / opt/sources/php-5.4.3shell > sudo. / configure-- with-apxs2=/usr/local/apache2/bin/apxs-- with-mysqlshell > sudo makeshell > sudo make install

Configure php.ini

Shell > sudo cp php.ini-development / usr/local/lib/php.ini

Edit the httpd.conf file to invoke the PHP module. The path to the right of the LoadModule expression must point to the PHP in the system. The above make install command may have done this, but be sure to check.

LoadModule php5_module modules/libphp5.so

Tell Apache to resolve a specific extension to PHP, for example, to have Apache parse the extension .php into PHP. Edit httpd.conf

SetHandler application/x-httpd-php

Just start the Apache service test in the usual way.

After reading this article, I believe you have a certain understanding of the method of php5.4 installation in linux, want to know more about it, welcome to follow the industry information channel, thank you for reading!

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

Servers

Wechat

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

12
Report