Best WordPress Calculator Plugins (Free and Paid)

Are you looking for a calculator plugin or cost estimation form for your WordPress website?There are many types of WordPress Calculator plugins to calculate prices, measurements, dates, form fields, and more.In this article, we have chosen some of the best calculator plugins for your WordPress site. Why use a calculator plugin in WordPress? If you're selling services online, calculators are a...

Dockerizing WordPress with Nginx and PHP-FPM on Ubuntu 20.04

Docker-Compose is a command line tool for defining and managing multi-container docker containers as if they were a single service. Compose is written in python and can be installed with the Python pip command. With compose, we can run multiple docker containers just with a single command. It allows you to create a container as a service, great for your...

Set Up Remote Development With VS Code in Your Browser

In this guide, I will be walking through VS Code-Server setup with DigitalOcean, as well as tweaks I have used to create a clean, simple workflow. Code Server runs Visual Studio Code on a remote server, which is accessible through the browser. Why Do I Need This? Consistent environment: With such a setup, you can code on your Chromebook, tablet, and laptop...

Setting up WordPress Coding Standards in VS Code

Adhering to a certain set of coding standards is important when it comes to writing good quality code. It makes your code easier to maintain and read not only for yourself but other developers as well. WordPress has its own set of coding standards and it is something you should to follow if you plan to contribute to Core, plugins...

How To Install Composer On Ubuntu 20.04 LTS

Dependency Management is one of the important aspects of programming software using re-usable packages, libraries, and modules. Almost all the popular programming languages are supported by dependency management tools to manage project dependencies. We can manage the project dependencies in PHP using Composer. It resolves all the project dependencies and installs the dependencies using the appropriate version based on...

How to namespace Bootstrap CSS in ubuntu 20

Get the files from GitHub: https://github.com/jonasjancarik/bootstrap-namespaced. Please note that this guide has not been updated since Bootstrap 4.0.0 (March 2018) so it’s probably outdated. If you encounter any problems, please let me know in the comments or on Twitter. There is arguably one problem with Bootstrap’s class names: if you want to use Bootstrap alongside other CSS, the simple names can...

Secured WordPress on LEMP Ubuntu 20 with Let’s Encrypt

This tutorial will teach you how to setup WordPress on your Ubuntu 20.04 server with a LEMP stack. WordPress on LEMP with Let’s Encrypt What is LEMP? This is an acronym that describes a Linux operating system, with an Nginx (pronounced like “Engine-X”) web server, a MySQL / MariaDB database server and the dynamic processing is handled by PHP. Linux Engine-X MySQL PHP What is Let’s Encrypt? Let’s Encrypt is a...

Best Landing Page WordPress Plugins (Free and Paid)

Do you have an online store? Do you offer any services online? Are you looking to increase the number of members subscribing to your service? Then, you must have heard of landing pages. If you haven’t, it is time to familiarize yourself with them. Read on to find out more about how to make landing pages an important part...

Setup Let’s Encrypt Wildcard SSL on Ubuntu 20.04 | 18.04

This brief tutorial shows students and new users how to generate free wildcard SSL/TLS certificates using Let’s Encrypt (Certbot) on Ubuntu 20.04 | 18.04 LTS. When you want to run you website over HTTPS, you’ll have to install SSL certificates. You can either pay for certificates from a certificate authority or get free ones from Let’s Encrypt. Let’s Encrypt is a...

How to Install Fail2ban on Ubuntu 20.04

What is Fail2ban? Fail2ban is an open-source security tool for protecting your servers against unauthorized access and brute force attack. It was written with Python, works by scanning log files for brute force login attempts in real-time and then block the source IP address using the Linux firewall. The Fail2ban is a security tool that designed to protect various services, including the SSH, FTP, OpenVPN,...