Horje
upgrade php 8 ubuntu 20.04 Code Example
upgrade php 8 ubuntu 20.04
# php -v (default PHP version)

# From PHP 8.0 to PHP 7.4:
sudo a2dismod php8.0
sudo a2enmod php7.4
sudo update-alternatives --set php /usr/bin/php7.4
sudo service apache2 restart

# From PHP 7.4 to PHP 8.0:
sudo a2dismod php7.4
sudo a2enmod php8.0
sudo update-alternatives --set php /usr/bin/php8.0
sudo service apache2 restart




Shell

Related
store ls into array bash Code Example store ls into array bash Code Example
react/rctbridge.h' file not found Code Example react/rctbridge.h' file not found Code Example
how to clean pod in react native Code Example how to clean pod in react native Code Example
add-apt-repository Code Example add-apt-repository Code Example
install font awesome Code Example install font awesome Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10