Introduction: osTicket is a free and open source ticketing system for Linux. It is written in PHP and uses MySQL/MariaDB as a database backend. It also supports MySQL and PostgreSQL. osTicket is a helpdesk solution suitable for organizations of all sizes. It is excellent for managing your customer inquiries created… Continue Reading How to install osTicket on ubuntu 20.04

Prerequisite User with Sudo privileges, Ubuntu version 20.04. Procedure Login to the Ubuntu server & follow the below steps to Configure Apache with PHP-FPM handler. Ensure that all the packages you have installed on your server are up to date, by running the following command you can find it. $… Continue Reading How to Configure Apache with PHP-FPM handler in ubuntu 20.04

How To Install the Apache Web Server on Ubuntu 18.04 Date-31-05-2020 STEP 1: Update and Upgrade the apt tool to ensure we are working with the latest. sudo apt update STEP 2:  Install Apache and select Y when prompted. sudo apt install apache2 STEP 3: Before testing Apache, it’s necessary to modify… Continue Reading How To Install the Apache Web Server on Ubuntu 18.04

Remove server name from Apache headers:- It is essential to remove Apache server header to hide Apache server information and protect your website from malicious attackers. Here’s how to remove server name from Apache response header using htaccess. You can use it to hide the Apache version and server type… Continue Reading Hide server details and disable TLSV1.0 and TLSV1.1

How to solve “404 Not Found” error while accessing subpages on website. Date: 17-01-2021 Step 1: You need to enable Apache2 rewrite module by using below command.# sudo a2enmod rewrite Step 2: Restart Apache2.# sudo systemctl restart apache2 Step 3: Add the below details in your website Apache (etc/apache2/sites-available) configuration… Continue Reading How to solve “404 Not Found” error while accessing subpages on website.

How to solve the Website internal server error from the following apache error log”Invalid command ‘Header’ perhaps misspelled or defined by a module not included in the server configuration” Date: 16-12-2020 Step 1: You are getting above error due to header module is not enabled in Apache on Ubuntu. You… Continue Reading How to solve the Website internal server error from the following apache error log”Invalid command ‘Header’ perhaps misspelled or defined by a module not included in the server configuration”

How to install Let’s Encrypt with Apache on CentOS 7 Date: 24.04.2020 Introduction: Let’s Encrypt is a free and open-source certificate authority (CA) that allows obtaining and installing certificates through simple, automated commands. It provides a valid SSL certificate for your domain without any cost. Let’s Encrypt certificates are valid… Continue Reading How to install Let’s Encrypt with Apache on CentOS 7

How to enable HTTP2 support in Apache Date posted: 25/09/2019 Objective:- HTTP/2 is a major revision of the HTTP network protocol used by the World Wide Web. It was derived from the earlier experimental SPDY protocol, originally developed by Google. HTTP/2 was developed by the Hypertext Transfer Protocol working group… Continue Reading How to enable HTTP2 support in Apache

Create apache Virtual Hosts In Ubuntu DATE POSTED: 06/03/2019 In this post we will explain how to create the virtual hosts in ubuntu. What is: Apache? Apache is the most important used web server software in the world because it is an open source software. This web server developed and… Continue Reading Create apache Virtual Hosts In Ubuntu

Enable mod_filter in Apache on CentOS Date posted : 13/02/2019 Generally Apache installation comes with filter module. But its not enabled by default. When you try to use this specific module directive in your website configuration, it won’t work. You will see errors like below. Solution:- Add the following line… Continue Reading Enable mod_filter in Apache on CentOS