How to implement a server running two php versions at the same time

王林
Release: 2023-02-28 17:42:01
Original
6276 people have browsed it

How to implement a server running two php versions at the same time

It is assumed that you have installed Apache, created virtual hosts for both projects, and added the necessary php PPA. Let's call the projects site56.local for php5.6 and site70.local for php7.0 and install php5.6-fpm and php7.0-fpm by running.

sudo apt-get install php5.6-fpm
sudo apt-get install php7.0-fpm
Copy after login

Free video tutorial recommendation: php video tutorial

Create two files under /usr/lib/cgi-bin/ (to be honest I don’t know if it is still requires this step) and save.

sudo nano /usr/lib/cgi-bin/php56-fcgi
sudo nano /usr/lib/cgi-bin/php70-fcgi
Copy after login

Open the php56 conf file "/etc/apache2/conf-available/php5.6-fpm.conf" to add this configuration and save it.

Now enable the new apache configuration

sudo a2enconf php5.6-fpm
Copy after login

If you have php5.6 and php5.7 installed, make sure to disable these two and restart apache

sudo a2dismod php5.6 php7.0
sudo systemctl restart apache2
Copy after login

before you You should create a .htacces file on the project running on php7.0 and add this handler

AddHandler php70-fcgi .php
Copy after login

Now, create a phpinfo file on both projects , if you see this, then congratulations!

PS: Make sure htaccess is enabled in apache2.conf or httpd.conf

site56.local / phpinfo.php的
site70.local / phpinfo.php的
Copy after login

Recommended related article tutorials: php tutorial

The above is the detailed content of How to implement a server running two php versions at the same time. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template