Skip to content
  • Homepage
  • HTML
  • CSS
  • Symfony
  • PHP
  • How to
  • Contact
  • Donate

Teach Developer

Articles, Guides & Tips

How to Search Recently Modified Files in Linux

Posted on September 3, 2022September 17, 2022

This post will help you to find recently modified files in Linux via the command line. The find command works with, defining duration in Minutes or Days. The minutes are defined with -mmin and the day’s value can be defined with -mtime You can also define the search criteria to find files modified within or before the specified…

Read More “How to Search Recently Modified Files in Linux” »

How to, Linux

CSS

Posted on March 4, 2022July 11, 2022 3 Comments on CSS

What is CSS ? CSS for Cascading Style Sheets CSS describes how HTML elements are to be displayed on the screen, on paper, or in other media CSS saves a lot of work. It can control the layout of multiple web pages all at once External stylesheets are stored in CSS files Syntax CSS is…

Read More “CSS” »

CSS

How to install Git on Linux

Posted on September 1, 2022September 17, 2022

Linux is a popular and as well as widely used operating system. The installation of Git on Linux is quite simpler when compared to other platforms. However, one has to use the right package manager for Linux distribution.We will proceed with this tutorial to see how to install and set up Git on various distributions…

Read More “How to install Git on Linux” »

How to, Linux

Understanding State in React Components

Posted on July 29, 2022July 29, 2022 No Comments on Understanding State in React Components

A difference between state and props is that while the data stored by props are fixed throughout their lifetime, state store data that can be changed over time. This change can be in response to user actions, network responses, or anything. Also, while props are set by the parent component, state is changed internally by the component itself. A component’s state should be considered private data. This…

Read More “Understanding State in React Components” »

React

How to check the PHP version

Posted on July 25, 2022July 25, 2022 No Comments on How to check the PHP version

Newer PHP versions come with more features and improvements while deprecating some obsolete features. Old PHP codes might not work with more recent PHP versions and vice versa. It is, therefore, essential to use the correct PHP version for your code. You can check the PHP version on your system by running the php command from the command line. There are also some PHP functions that you can use…

Read More “How to check the PHP version” »

How to, PHP, Tips

How to Install a WordPress Plugin for Beginners

Posted on August 2, 2022August 2, 2022 No Comments on How to Install a WordPress Plugin for Beginners

WordPress plugins are used to enable addon features to the web application developed in WordPress. Many features do not come with the WordPress core by default. So, if we need to extend the functionality of the WordPress application, then we need to use the plugins. There are many plugins available in the market for WordPress…

Read More “How to Install a WordPress Plugin for Beginners” »

Wordpress

How to Change SSH Port in Linux

Posted on September 9, 2022September 17, 2022

SSH (Secure Shell) is the most popular protocol for connecting remote Linux systems. Changing the SSH port will provide you with an extra layer of security. The new port will be a little harder to identify for hackers. Change SSH Port in Linux Changing the SSH port is a straightforward process in Linux systems. Any…

Read More “How to Change SSH Port in Linux” »

How to, Linux, SSH

Difference between var, let, and const in JavaScript

Posted on July 14, 2022July 24, 2022 No Comments on Difference between var, let, and const in JavaScript

A lot of shiny new features came out with ES2015 (ES6). And now, since it’s 2020, it’s assumed that a lot of JavaScript developers have become familiar with and have started using these features. While this assumption might be partially true, it’s still possible that some of these features remain a mystery to some devs….

Read More “Difference between var, let, and const in JavaScript” »

JavaScript, Jquery, React

How to Recover Deleted WhatsApp Messages

Posted on September 18, 2022

Recover Deleted Messages From Google Drive & iCloud For Android For Android users, one of the best ways to restore your deleted WhatsApp messages is to restore your backup from Google Drive. But It is only possible if you have set your backup option ON in App. If you have not set a backup option…

Read More “How to Recover Deleted WhatsApp Messages” »

How to, Tips

How to create the first Git Repository

Posted on September 1, 2022September 17, 2022

Welcome to the tutorial on Git. Here you will learn how to Create a Repository, and how to clone or copy other repositories. A Repository is a project that is tracked and managed by Git. Thus, Git tracks changes by storing snapshots of project versions in a .git file. Git Config There is a need…

Read More “How to create the first Git Repository” »

Git, How to

How to use the Local Storage in Javascript

Posted on July 26, 2022July 26, 2022 No Comments on How to use the Local Storage in Javascript

This article discusses what local storage is and the JavaScript methods that we can use to manipulate it. What is Local Storage? Local storage is a web storage object that is available in a user’s browser. It allows JavaScript browsers to store and access data right in the browser. Basic CRUD operations (create, read, update…

Read More “How to use the Local Storage in Javascript” »

JavaScript, Jquery

Enable or Disable SSH Root Login Access in Linux

Posted on September 12, 2022September 17, 2022

SSH Root user login access is enabled in any system by default. Or we are asked while installing a system. that you have to enable or disable ssh root user login access. And you never know how to enable and disable ssh root user login access. So in this tutorial, we will show you how…

Read More “Enable or Disable SSH Root Login Access in Linux” »

How to, Linux, SSH

How to add two-factor authentication (2FA) to WordPress using the Google Authenticator plugin.

Posted on August 2, 2022August 2, 2022 No Comments on How to add two-factor authentication (2FA) to WordPress using the Google Authenticator plugin.

WordPress two-factor authentication (2FA) is a more simple work than you imagine. You can improve the security of your website by adding WordPress two-factor authentication. If you are worried about brute-force attacks and hacking, then you should instantly go for 2FA. The essential step in protecting your WordPress setup is adding a two-factor authentication system. If the…

Read More “How to add two-factor authentication (2FA) to WordPress using the Google Authenticator plugin.” »

Wordpress

Difference Between Git and GitHub

Posted on September 1, 2022September 17, 2022

Git and GitHub are the same and serve the same purpose, but this is not the case. Git is a version control system used to manage different versions of our project whereas GitHub is a Git repository hosting service. Git- Git is a very popular version control system used to manage projects. However, a version…

Read More “Difference Between Git and GitHub” »

Git

Destructuring Assignment in ES6- Arrays

Posted on August 6, 2022August 6, 2022 No Comments on Destructuring Assignment in ES6- Arrays

Destructuring assignment is a nice feature that comes with ES6. Destructuring is a JavaScript expression that makes it possible to unpack values from an array or properties from an object into separate variables. That is, we can extract data from arrays and objects and assign it to variables. Why is this necessary? Imagine if we…

Read More “Destructuring Assignment in ES6- Arrays” »

JavaScript, React

How to Delete Unused Database Tables in WordPress

Posted on September 14, 2022September 17, 2022

Use the following steps to remove or delete unused tables from database in WordPress using plugins garbage collector: Step 1 – Add Plugins Garbage Collector Step 2 – Active Plugins Garbage Collector Step 3 – Search Unused Tables From Database Step 4 – Remove or Delete Unused Tables Step 1 – Add Plugins Garbage Collector…

Read More “How to Delete Unused Database Tables in WordPress” »

Wordpress, How to

How to change password in the CodeIgniter framework

Posted on September 17, 2022September 17, 2022

How to send forgot password in CodeIgniter framework PHP. Here we using 2 files to insert data in MySQL: Forms.php Path: codeIgniter\application\controllers\Forms.php forgot_pass.php Path: codeIgniter\application\views\change_pass.php Forms.php (Controller) <?php class Forms extends CI_Controller { public function __construct() { parent::__construct(); $this->load->database(); $this->load->library(‘session’); $this->load->helper(‘url’); $this->load->model(‘Hello_model’); } public function forgot_pass() { if($this->input->post(‘forgot_pass’)) { $email=$this->input->post(’email’); $que=$this->db->query(“select pass,email from user_login where email=’$email'”); $row=$que->row();…

Read More “How to change password in the CodeIgniter framework” »

Codeigniter, How to

How to remove index.php from URL in CodeIgniter 4

Posted on July 21, 2022July 24, 2022 5 Comments on How to remove index.php from URL in CodeIgniter 4

CodeIgniter 4 projects, you’ll notice that the URL has an extra argument. It is index.php in your project URL. So, if you don’t want this extra dimension you can remove it. This will create a clean URL for your website. There are several ways to remove this index.php in CodeIgniter 4. You can create a…

Read More “How to remove index.php from URL in CodeIgniter 4” »

Codeigniter, HTML, PHP

How to Convert PHP CSV to JSON

Posted on June 10, 2023June 10, 2023

JSON format is a widely used format when dealing with API development. Most of the existing API responses are in JSON format. Converting CSV content to JSON format in PHP is easy. In this article, we will look at various methods of achieving this conversion. The above quick example in PHP converts the CSV file…

Read More “How to Convert PHP CSV to JSON” »

PHP, Top Tutorials

How to Define Global Variables for Twig Templates in Symfony 6

Posted on May 21, 2023May 21, 2023

Sometimes we may need to inject the same variable in all the Twig templates. It can be done on each controller by passing a variable to template. However, it is not a good solution. This tutorial shows how to define global variables for Twig templates in Symfony 6 application. Global variables for Twig templates can…

Read More “How to Define Global Variables for Twig Templates in Symfony 6” »

Symfony

Categories

  • Codeigniter (3)
  • CSS (11)
  • eCommerce (1)
  • Framework (1)
  • Git (3)
  • How to (43)
  • HTML (5)
  • JavaScript (15)
  • Jquery (7)
  • Laravel (1)
  • Linux (4)
  • Magento-2 (1)
  • Node js (4)
  • Others (2)
  • PHP (11)
  • React (13)
  • Server (1)
  • SSH (3)
  • Symfony (6)
  • Tips (16)
  • Top Tutorials (10)
  • Ubuntu (3)
  • Vue (1)
  • Wordpress (7)

Latest Posts

  • What is SSH in Linux?
  • How to Delete Files in Ubuntu Command Line
  • How to Deploy a React application on a cPanel
  • How to use events listeners and Event Subscriber in Symfony
  • How to Convert PHP CSV to JSON

WEEKLY TAGS

AJAX (1) Codeigniter (1) Javascript (11) JQuery (1) PHP (16) Programming (1) React (3) Symfony (1)

Random Post

CSS
How to use events listeners and Event Subscriber in Symfony
Dealing with deprecations
How to fix getFullyear() is not a function with JavaScript?
How do sum values from an array of key-value pairs in JavaScript?

Quick Navigation

  • About
  • Contact
  • Privacy Policy

© Teach Developer 2021. All rights reserved