Install Apache2, PHP 7.2 and MariaDB 10.5 on Debian 11 Rumi, February 18, 2023 First, update all the packages of the system by below-mentioned command: sudo apt update After updating packages, now install the dependencies required by the below-mentioned command: sudo apt install software-properties-common ca-certificates lsb-release apt-transport-https Enable SURY Repository The following step is to integrate the SURY repository into our system. SURY is… Continue Reading
Install PHP 7.4 / 7.3 / 7.2 / 7.1 on Debian 10 / Debian 9 Rumi, October 26, 2020October 26, 2020 Add PHP Repository SURY, a third-party repository which offers PHP 7.4 / 7.3 / 7.2 / 7.1 for Debian operating system. By default, Debian 10 ships PHP v7.3. So, you can either install PHP v7.3 from Debian repository or SURY repository. Skip this section if you want to install PHP… Continue Reading
Install LAMP on CentOS 7 with PHP 5.4/7.0/7.1/7.2/7.3/7.4 Rumi, October 26, 2020 Preliminary Note In this tutorial, I use the hostname server1.example.com with the IP p 192.168.0.100. These settings might differ for you, so you have to replace them where appropriate. I will add the EPEL repo here to install latest phpMyAdmin as follows: rpm –import /etc/pki/rpm-gpg/RPM-GPG-KEY* yum -y install epel-release To edit files on… Continue Reading
Install PHP 7 on CentOS 7 Rumi, May 24, 2020 Enabling Remi repository PHP 7.x packages are available in several different repositories. We’ll use the Remi repository which provides newer versions of various software packages including PHP. The Remi repository depends on the EPEL repository. Run the following commands to enable both EPEL and Remi repositories: sudo yum install epel-release yum-utils sudo yum… Continue Reading
Install PHP 7.2 on Debian 9 Rumi, December 8, 2019 Before you start with the installation of PHP 7.2 on your Debian VPS, make sure that you have full root access to it. Connect to the server via SSH and upgrade all the system software to the latest version available. You can do this by running the following commands in… Continue Reading
Upgrade PHP version to 7.2 from 7.0 on Ubuntu 16.04 Rumi, February 9, 2019 Check your PHP version installed Before we start, we can simply type the following command to check the existing PHP version installed on the server. $ php -v If you installed Ubuntu 16.04 LTS, you will get PHP 7.0.30 installed on your server by running installation script from VestaCP. In… Continue Reading