HOW TO SETUP COOKIE IN PHP Date : 31/01/2019 Introduction A cookie is a small file, that stores in the user computer, used to keep track of information, such as username or else, the site can retrieve when the user visits the website next time. Setting up cookie using PHP… Continue Reading HOW TO SETUP COOKIE IN PHP

HOW TO REMOVE THE ENTIRE MAIL QUEUE IN MANUAL WAY DATE: 29/01/2019 Execution steps to remove the entire mail queue in a manual way. The manual way to remove the entire queue is as follows Step 1: Change directory to spool Execute the following command line in your terminal Step… Continue Reading HOW TO REMOVE THE ENTIRE MAIL QUEUE IN MANUAL WAY

How to enable the mongo Database authentication method Date: 09/01/2020 Introduction Having an authentication for a database can not be a choice. Some may find it not necessary when it confined only use the database locally. It’s incredibly important to set up authentication if you are only using it locally.… Continue Reading How to enable the mongo Database authentication method

PHP warning: Module ‘ssh2’ already loaded in Unknown on line 0 Date : 07-Jan-2020 Hello! Sometimes when working on the server , you may get the php warning message as “Module ‘ssh2’ already loaded in Unknown on line 0”. This warning means that something is not right with your php… Continue Reading PHP warning: Module ‘ssh2’ already loaded in Unknown on line 0

Keystone js deployment on Ubuntu 16.04/18.04 Date : 07-Jan-2020 Let us see how to deploy Keystone js on Ubuntu 16.04/18.04 Step 1: Install Nginx webserver Install nginx webserver in your Ubuntu machine using the following command. apt-get install nginx Post installation, you can check the status of the webserver using… Continue Reading Keystone js deployment on Ubuntu 16.04/18.04

What is Design pattern and how to implement them Date: 19/12/2019 Introduction The article is will not explain something about a specific language. So other than the code block, I will talk about design patterns. Design patterns are crafting the communication between bunches of code. In OOPS, you can scale,… Continue Reading What is Design pattern and how to implement them

How to use shift and unshift method in javascript Date: 12/12/2019 Introduction: In this article, we will explain how to use shift() and unshift() to add and remove the elements from the array in javascript. shift() used to remove the first element of the array. unshift() is used to add… Continue Reading How to use shift and unshift method in javascript

Download and setup installatron on cPanel/WHM Date published: 11-12-2019 Hello!! In this article, let us see how to download and install setup installatron on cPanel/WHM. Step 1: Install installatron Execute the below commands from the SSH root command prompt Choose the appropriate commands for the packages accordingly. For any type of server,… Continue Reading Download and setup installatron on cPanel/WHM

How to remove & install oracle java [Jdk] in ubuntu 16.0.4 Date published: 07-12-2019 Java is a very popular programming language for a system web application, software development, Android development and so on. Therefore, we need to install the Java Development Kit [JDK] and Java Runtime Environment [JRE] to configure… Continue Reading How to remove & install oracle java [Jdk] in ubuntu 16.0.4

HOW TO PASS TWO OR MORE LISTS IN FOR LOOP USING PYTHON Date: 07/12/2019 Introduction Python has global built-ins that are handy for a regular problem. Specifically, I will explain zip() in this article. Let’s take an example from Avengers, Have to match the list of Avengers characters with the… Continue Reading HOW TO PASS TWO OR MORE LISTS IN FOR LOOP USING PYTHON