Our Clients

31Aug

Create Virtual Host that can be access locally for wordpress development. Create Directory sudo mkdir /var/www/wordpress.local Create test html file sudo nano /var/www/wordpress.local/index.html Add code to test fie <html> <head><title>wordpress.local</title></head> <body>wordpress.local</body> </html> Apache comes with a default virtaul host file call 000-default.conf. We will use that as a template. sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/wordpress.local.conf Open virtual […]Continue Reading

22Jun

sudo apt install -y php-json php-mbstring Install phpMyAdmin phpMyAdmin package is not yet available in Debian repository for Debian 10. So, we need to download the tar package from the official website. wget https://files.phpmyadmin.net/phpMyAdmin/4.9.0.1/phpMyAdmin-4.9.0.1-all-languages.tar.gz Extract the phpMyAdmin tarball using the following command. tar -zxvf phpMyAdmin-4.9.0.1-all-languages.tar.gz Move the phpMyAdmin set up to the desired location. sudo […]Continue Reading

11Apr