DEV Community

Tr.Ra
Tr.Ra

Posted on

1 1

Switch PHP version on linux

You can list all loaded Apache modules with apache2ctl -M

this method is work fine
you can ls /usr/bin/php* to see how many php version you have and use this command switch to it

update-alternatives --set php /usr/bin/php7.4
Enter fullscreen mode Exit fullscreen mode

this method sometime not work like u expected

$ sudo a2dismod php7.1
$ sudo a2enmod php5.6
$ sudo service apache2 restart
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Heroku

Build apps, not infrastructure.

Dealing with servers, hardware, and infrastructure can take up your valuable time. Discover the benefits of Heroku, the PaaS of choice for developers since 2007.

Visit Site

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay