Install ubuntu server with vagrant, follow steps at https://phoenixnap.com/kb/how-to-install-vagrant-on-ubuntu Copy and paste the following content of vagrant file here, then change IP address 192.168.1.99 to wished IP address. # -*- mode: ruby -*- # vi: set ft=ruby : # All Vagrant configuration is done below. The “2” in Vagrant.configure # configures the configuration version (we […]

When install Drupal with composer by command: composer create-project drupal/recommended-project ./drupal Then, these output is encountered: Installing drupal/recommended-project (9.0.3)     Failed to download drupal/recommended-project from dist: The zip extension and unzip command are both missing, skipping. Your command-line PHP is using multiple ini files. Run `php –ini` to show them.     Now trying […]

Make sure to upgrade Ubuntu’s repositories: sudo add-apt-repository ppa:ondrej/php # Press enter to confirm. sudo apt update Install 7.3 core apt install php7.3-bcmath php7.3-bz2 php7.3-curl php7.3-gd php7.3-intl php7.3-json php7.3-mbstring php7.3-readline php7.3-xml php7.3-zip Install 7.3 for website apt install php7.3-fpm apt install libapache2-mod-php7.3 Copy and paste, then run php -v to confirm PHP 7.3 (CLI) is […]