LNMP stands for Linux, Nginx, MySQL and PHP. In this this article we will show you how to set up working Nginx server to host your websites on your VPS with CentOS 7 version. […]
Category: Cpanel
How to find out top processes by memory usage in Linux
As a Linux administrator,You might be curious about how much memory your running processes are using.In this article we’ll show you some commands that can sort out top processes by memory usage on your Linux system. […]
How to install FAIL2BAN on CentOS
This article will guide you how to install Fail2Ban on CentOS so that you can protect your server from Brute force attacks, previously we have discuss about some basic configs for CentOS. But sometimes that is not enough as brute force attacks may occur occasionally. Fail2ban scan log files for selected entries then bans IPs […]
Clear or Remove Last Login information in Linux
If you are Linux user and you want to know how to clear all login information in Linux, so in this article we will learn how to clear or remove the last login information on a Linux server from the command line. […]
How to Redirect Visitors to Maintenance Page Using .htaccess
Sometimes, you may want to put your site into maintenance mode so that you can do required up-dates like modifying themes, including custom features, repairing corrupted files. […]
How to Get a List of All WordPress Post URLs
For some reasons you might need to get a list of WordPress post URLs to work with. But WordPress doesn’t have any local function to record all the publish, web page and customized post URLs. […]
How to download entire WordPress media library
Recently one of our reader ask me how he can download entire WordPress media library as he wants to keep a copy of backup of media library on his local system. Though you can always have full backup of your entire WordPress site. […]
How to personalize WordPress Login Page
If you want to build a customized sign in web page for your WordPress site, Then In this article, we will demonstrate you how to personalize WordPress login web page without any use of HTML or CSS. […]
How to Block a WordPress User without Deleting Their Account
Sometimes you want to block a person from signing into WordPress. Easily you can achieve this by removing the user account. However that will move all content written by this user to another user. What if we informed you that you can prevent a person without removing their account? In this article, we will show […]
How to Disable root Login in phpMyAdmin ?
In this guide we will show you how to restrict root login through phpMyAdmin.For this you have to edit phpMyAdmin configuration file config.inc.php and update following parameters: cd /usr/share/phpmyadmin # nano config.inc.php $cfg[‘Servers’][$i][‘auth_type’] = ‘cookie’; $cfg[‘Servers’][$i][‘AllowRoot’] = FALSE; If there is no config.inc.php file available, You can create it by copying config.sample.inc.php file at same location. # […]