Tag: Ubuntu

26 May 2020

Upgrading to PHP 7.4.6 (cli) from 7.3.18

Using the site’s Health page under tools, make note of the Versions of PHP on the info tab. Using SSH Using “php -v” allows you to check the current version For general updates use: sudo apt update sudo apt upgrade -y PHP Upgrade: php -v […]

11 January 2021

How to Setup DHCP Server and Client on CentOS and Ubuntu

In this article, we will explain how to configure a DHCP server in CentOS and Ubuntu Linux distributions to assign IP address automatically to a client machine. Installing DHCP Server in CentOS and Ubuntu The DCHP server package is available in the official repositories of mainstream Linux distributions, installing is quite […]

17 October 2020

How to install Imagick for PHP 7 in Ubuntu 16.04

Imagick is the most famous PHP extension to create and modify images using the ImageMagick library. It’s known on other platforms due to its difficult installation process, however in Ubuntu, installing it is pretty easy thanks to the php-imagick package that installs ImageMagick and Imagick […]

27 June 2020

How to Manually Upgrade phpMyAdmin | DevAnswers.co

  Source: How to Manually Upgrade phpMyAdmin | DevAnswers.co Since the release of Ubuntu 18.04 and other Linux distros, many people have been having compatibility issues with PHP 7.2 and phpMyAdmin 4.6 and above. In this article we will manually download and install the latest […]

30 April 2020

Hosting Multiple Domains with Vhost

In SSH: cd /etc/apache2/sites-available/ sudo cp 000-default.conf newdomain.com.conf sudo nano newdomain.com.conf Update accordingly <VirtualHost *:80 *:443> ServerName newdomian.com ServerAlias www.newdomain.com ServerAdmin admin@newdomain.com  DocumentRoot /var/www/newdomain.com/html Use CTRL+X, Y, ENTER when done cd /var/www/ sudo mkdir newdomain.com cd newdomain.com sudo mkdir html sudo echo “<html><head><title>Hello</title></head><body><h1>Test Page for newdomain</h1></body></html>” […]

7 May 2021

Connect to phpMyAdmin

Access PhpMyAdmin On Linux And MacOS To access the application using your Web browser, create an SSH tunnel, as described below. Open a new terminal window on your local system (for example, using “Finder -> Applications -> Utilities -> Terminal” in macOS or the Dash […]