


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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version
Chinese version, very easy to use

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Atom editor mac version download
The most popular open source editor
