Soumitra Kayal

System Administrator | Wordpress Expert | Web Developer

To install ONLYOFFICE Docs on Ubuntu 20.04, you can follow these steps: Add the ONLYOFFICE repository to your system: Copy code echo "deb http://download.onlyoffice.com/repo/debian squeeze main" | sudo tee/etc/apt/sources.list.d/onlyoffice.list Install the public GPG key: Copy code sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys CB2DE8E5 Update the package index: Copy code sudo apt update Install ONLYOFFICE Docs: Copy code sudo apt install onlyoffice-documentserver After the installation is complete, open your web browser and go to...

Read More

Add the Remi repository to your system: Copy code sudo yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm sudo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm Enable the Remi repository for PHP 7.4: Copy code sudo yum-config-manager --enable remi-php74 Install PHP 7.4: Copy code sudo yum install php If you have any PHP modules installed, you will need to reinstall them for PHP 7.4. You can do this by running the following command: Copy code sudo yum install <module-name> Replace <module-name> with...

Read More

Check PHP version before upgrading php -v or php --version Command to install the EPEL repository configuration package: yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm Command to install the Remi repository configuration package: yum install https://rpms.remirepo.net/enterprise/remi-release-7.rpm Command to install the yum-utils package (for the yum-config-manager command): yum install yum-utils Command to enable the repository: yum-config-manager --disable 'remi-php*' yum-config-manager --enable remi-php74 You can check the list of the enabled repositories: yum repolist If an old version is...

Read More