Home > Article > Backend Development > 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
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
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
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
before you You should create a .htacces
file on the project running on php7.0 and add this handler
AddHandler php70-fcgi .php
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的
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!