A Beginner’s Guide to Learning JavaScript

JavaScript is one of the most popular and powerful programming languages used for web development. If you’re just starting to learn it, don’t worry! In this article, we’ll guide you through the basics in a simple and easy-to-understand way. What is JavaScript? JavaScript is a programming language that helps make websites interactive. It allows you […]

Getting Started with Redux in React.js

Redux is a popular library for managing application state in JavaScript apps, and it works seamlessly with React.js. It helps you keep your app’s state predictable and organized, especially as your app grows larger. Let’s walk through how to use Redux in React in a simple and approachable way. 1. What Is Redux? Think of […]

How to see the exact IP Address when using cloudflare?

Hi everyone, When you are using Cloudflare it will mask the Client Ip address, So cloudflare provide us variable that help to find the actual IP address of users. Check below to code the variable of Cloudflare Ip address. If you are using PHP, then you can do use the below code to get the […]

Configuration setting for .conf file in apache

Hello everyone, You are here it means you stuck in your server setting, so please add this code in your /etc/apache2/sites-available/ directory for configuring your domain to your server. After saving this file with nano command, or whatever your using, just enable your site by using below code. Now just reload your apache, by using below command. Now check […]

What is Redux in React JS?

Redux is a state management library that is often used with React Js. It provides a centralized store for the application state and allows for easy management of the state through actions and reducers. In this tutorial, you will understand the working of Redux state management. Here is a simple example of how you might […]

How to connect Flask application to MySQL? – Python Web Development

Before starting, Hope you are aware basics of Flask if not Please visit Flask Web Development Tutorial. Now Here I am putting the following steps that we use to connect Flask to MySql:- Above code is used to create the initial connection with MySQL. Now the next step is to configure the MySQL Connection Cursor. […]

How to Install Let’s encrypt free SSL on Ubuntu step-by-step process?

Let’s Encrypt provides a free Valid SSL Certificate to enable encrypted HTTPS on our web servers. In this tutorial, we use Certbot to install a free SSL certificate for Apache on Ubuntu and will set up this certificate to renew automatically. Before we start to install Let’s encrypt we first need to install Certbot. Press […]

How to create Remember me function in PHP with CodeIgniter?

Hi Guys, In this tutorial I am going to create Remember me function in PHP with Cookie, Remember me function is used to save user password and username when user click on checkbox Remember me. Before starting use CI Cookie Helper in your project. Now use set_cookie method to set the value in Cookie. Above […]

How to connect MongoDB with PHP CodeIgniter.

Before starting the coding part, we will first install the MongoDB PHP extension, So here is the step for installing and enabling the MongoDB extension in your WampServer – Here I am using WampServer, If you are using other servers like Xamp, it is somehow similar to Wamp. Now come to your Project and install […]

How to block file download outside from Website using .htaccess

Hi all! Below is the code, I am sharing for restricting and blocking the file download from outside of your website. You can put the below code in .htaccess file to restrict the access. This code will block & restrict the access of your file’s access outside from your website. If you want to block […]