Similar Posts
How To Reset Root Password On CentOS 7
The way to reset the root password on centos7 is totally different to Centos 6. Let me show you how to reset root password in CentOS 7. 1 – In the boot grub menu select option to edit. 2 – Select Option to edit (e). 3 – Go to the line of Linux 16 and…
Add a WordPress Admin User to the Database via PHP
As a developer, you will occasionally need to create a new administrative user in the database to gain access to the site. Typically, this is necessary when you are provided with an export of a WordPress database, but you aren’t provided with the login credentials for the admin user. Sure, you can gain access via…
About WHOIS Lookup
What is a WHOIS Database? The WHOIS database contains the listing of all registered domains on the internet. You can do a WHOIS lookup to access various details related to a domain like registration date, expiry date, domain ID, name of registrar, contact information, server name and more. The WHOIS database is available to the…
How To Install Linux, Nginx, MySQL, PHP (LEMP) stack On CentOS 7
Step 1 — Installing Nginx In order to display web pages to our site visitors, we are going to employ Nginx, a high-performance web server. To get the latest Nginx version, we’ll first install the EPEL repository, which contains additional software for the CentOS 7 operating system. To add the CentOS 7 EPEL repository, run…
How to Add Google reCAPTCHA to a PHP Form with Example?
In this guide, we will integrate the Google reCAPTCHA in the PHP contact form. Utilizing this Google reCAPTCHA code, we can validate the human users and protect the form of submission from bots. Integrating Google reCAPTCHA is recommended because It is an effective and efficient way of validating the user against bots. As we know…
Find Files and Directories in CentOS
Find Files and Directories in CentOS The find command helps you locate files and folders on your hard disk. There are additional parameters that can be passed to the command that help you find files and folders in multiple ways. Find by filename, modified time, find files and folders. Basic syntax find /path/to/search -option1 -option2…