This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# switch php version | |
# All at Once - Switching from PHP 7.4 to 8.0 | |
sudo a2dismod php7.4 && sudo a2enmod php8.0 && sudo service apache2 restart | |
sudo update-alternatives --config php | |
[Choose appropriate number] for php8.0 (Generally is 6) |
OlderNewer