Search
 
SCRIPT & CODE EXAMPLE
 

PHP

install php 7.4 on ubuntu 20.04

sudo apt update
sudo apt install php7.4
sudo apt install php7.4-common php7.4-mysql php7.4-xml php7.4-xmlrpc php7.4-curl php7.4-gd php7.4-imagick php7.4-cli php7.4-dev php7.4-imap php7.4-mbstring php7.4-opcache php7.4-soap php7.4-zip php7.4-intl -y
Comment

php 7 to php 8 in ubuntu 20.04

sudo apt install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt update
sudo apt install php8.0
 #install common extension 
sudo apt install php8.0-common php8.0-mysql php8.0-xml php8.0-xmlrpc php8.0-curl php8.0-gd php8.0-imagick php8.0-cli php8.0-dev php8.0-imap php8.0-mbstring php8.0-opcache php8.0-soap php8.0-zip php8.0-intl -y
  sudo a2dismod php7.0
  sudo a2dismod php7.1
  sudo a2dismod php7.2
  sudo a2dismod php7.3
  sudo a2dismod php7.4
sudo a2enmod php8.0
sudo service apache2 restart
Comment

install php ubuntu 20.04

sudo apt install software-properties-common
sudo add-apt-repository ppa:ondrej/php

sudo apt update

sudo apt install -y php7.4
Comment

installing php version 8 in Ubuntu 20+

#Rn the command as sudo
			• apt install software-properties-common
            • apt update
            • apt install php8.0
Comment

install php7.2 ubuntu 20.04

php7 extensions installations
Comment

PREVIOUS NEXT
Code Example
Php :: php class comment 
Php :: phpunit check exception not thrown 
Php :: time dropdown in html 
Php :: Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/7.3.27 Server at localhost Port 80 
Php :: remove column laravel migration 
Php :: http://www.finalclap.com/faq/81-php-afficher-date-heure-francais 
Java :: java: cannot access javax.naming.Referenceable class file for javax.naming.Referenceable not found 
Java :: No Java files found that extend CordovaActivity. 
Java :: processing angle between two pvector 
Java :: how to loop javafx media player 
Java :: convert input stream to string java 
Java :: jsp import class 
Java :: how to check if a string contains only alphabets and numbers in java 
Java :: android studio lower case letters on a button 
Java :: java reflection get field value 
Java :: JFrame Exit on close Java 
Java :: How to solve the towers of Hanoi Java? 
Java :: gradle springboot run 
Java :: java delay 
Java :: array to map java1 
Java :: JFrame Exit oon close Java11 
Java :: javafx action event enter key 
Java :: firebase storage dependency 
Java :: edittext hint color 
Java :: how to load font in java 
Java :: textview set text bold programmatically 
Java :: java print stacktrace to file 
Java :: bit hacks java 
Java :: java ee schedule every 10 seconds 
Java :: java dictionary 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =