How to install LAMP Stack on kali linux
A LAMP Stack is a set of open-source software that can be used to create websites and web applications. LAMP is an acronym, and these stacks typically consist of: Install…
How to install mcrypt for PHP 7.2 and PHP 7.3 on Centos 7(cPanel)
Mcrypt installation process Install epel-release repo if you do not already have it installed # yum install epel-release Install libmycrpt and libmcrypt-devel rpms needed for the PHP extensions. # yum…
How To Validate The Implementation Of Cache For Site Analyzer
Site Analyzer vs mod_pagespeed I will explain to you how to manage to validate ” the implementation of cache ” by the Site Analyzer tool . Whether you use mod_pagespeed or not on apache in version 2.X. It is…
Apache – You don’t have permission to access on this server error
When you have installed an Apache server , the following message may appear on your browser if you try to access a page: <p> 403 Forbidden You don't have permission to access /…
Htaccess tips and tricks
Block IP: <RequireAll> Require all granted Require not ip 1.2.3.4 </RequireAll> Force www, or non www, redirect. #Force www: RewriteEngine on RewriteCond %{HTTP_HOST} ^example.com [NC] RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]#Force www: #Force…
How to Install Mod_Pagespeed on Centos?
mod_pagespeed is an open-source Apache module created by Google to help Make the Web Faster by rewriting web pages to reduce latency and bandwidth. Please follow below instructions to install…
How To Configure Django With Apache In CentOS 7
Django is a Python-based free and open-source web framework that can be used for developing dynamic websites and web applications. In this article, we will explain the procedures to configure…