How to Reset admin password in Drupal?
How to Reset admin password in Drupal 7? Drupal 7 stores a salted sha512 hash. You can always use the user_hash_password(‘mypassword’) function (located in includes/password.inc) to make yourself…
Android Studio: “The emulator process for AVD Pixel_2_API_30 has terminated.”
I am just faced this issue in my windows machine. Nothing was worked. I am wasted my two days to solve this error but no result. Then…
Android Studio: “The emulator process for AVD Pixel_2_API_30 has terminated.”
I am just faced this issue in my windows machine. Nothing was worked. I am wasted my two days to solve this error but no result. Then…
The Blog List Are Given Below :-
1. JavaScript https://www.cmsgalaxy.com/blog/javascript/ 2. JavaScript Comments https://www.cmsgalaxy.com/blog/javascript-comments/ 3. JavaScript Variables and Types https://www.cmsgalaxy.com/blog/javascript-variables-and-types/ 4. JavaScript Arrays https://www.cmsgalaxy.com/blog/javascript-arrays/ 5. JavaScript Array Methods https://www.cmsgalaxy.com/blog/javascript-array-methods/ 6. JavaScript Operators https://www.cmsgalaxy.com/blog/javascript-operators/ 7….
Problem :- after deploy Laravel project only “/” route is working other route is not working on route.php file
Web page error like this :— Not Found The requested URL /yes was not found on this server. Additionally, a 404 Not Found error was encountered while…
How to create a form in React.js
In React.js, handling forms involves managing form input values, handling form submission, and performing validation. Here’s a basic guide on how to handle forms in React: Here’s…
What is widgets in Flutter?
Widgets: Each element on a screen of the Flutter app is a widget. The view of the screen completely depends upon the choice and sequence of the widgets…
Dart Programming Language
Dart is a programming language developed by Google. It’s primarily used for building web, mobile, and server-side applications. Here are some key features and aspects of Dart…
Start building Flutter Android apps on Windows
System requirements To install and run Flutter, your Windows environment must meet these requirements: Hardware requirements Your Windows Flutter development environment must meet the following minimal hardware…
What is Flutter?
Flutter is an open-source UI (user interface) toolkit developed by Google for building natively compiled mobile, web, and desktop applications from a single codebase. It allows you to create…
Handling API calls in React Application
Handling API calls in React.js typically involves using JavaScript’s fetch API or a third-party library like Axios to make HTTP requests to a server or external API….
Use of LocalStorage in React Application
In React.js, you can use the browser’s localStorage API to store data locally within the user’s browser. This allows you to persist data across sessions and page…
React Router
React Router is a popular library for routing in React applications. It provides a declarative way to handle navigation and define routes in your application, allowing you…
Rendering in React.js
Rendering in React.js refers to the process of converting React components into DOM elements and displaying them on the screen. Rendering occurs when React elements are created,…
componentDidMount, componentDidUpdate, and componentWillUnmount in React.js
Certainly! componentDidMount, componentDidUpdate, and componentWillUnmount are lifecycle methods in class components of React. They are used to perform certain actions at different stages of the component lifecycle….
useEffect, useRef, useCallback hooks in React.js
These are just a few examples of how you can use useEffect, useRef, and useCallback hooks in React to handle side effects, manage references, and optimize performance….
Hooks in React.js
In React.js, hooks are functions that enable functional components to use state and other React features without writing a class. They were introduced in React 16.8 as…
setState() in React.js
In React.js, the setState() method is used to update the state of a component. It’s a built-in method provided by React’s component class, and it’s the primary…
State in React.js
In React.js, state is a built-in feature that allows components to manage and store their own data. Unlike props, which are passed from parent to child components…
Props in React.js
In React.js, props (short for properties) are a way to pass data from a parent component to a child component. They are a fundamental part of React’s…
Import in React.js
In React.js, the import statement is used to bring functionalities from other modules into the current module. It’s a key part of modular JavaScript development and allows…
Components in React.js
In React.js, components are the building blocks used to create user interfaces. They encapsulate the logic and rendering of a portion of the UI, making it easier…
Exports in React.js
In React.js, named exports and default exports are used similarly to how they are used in regular JavaScript modules, but they’re particularly useful for exporting React components…
index.php page call outside of the public folder in Laravel project
Step 1 . Copy index.php in public folder Step 2. paste in Laravel project folder Step 3. Open server.php file Location :- vendor\laravel\framework\src\Illuminate\Foundation\resources\server.php Edit in line no….
Virtual DOM V/S Real DOM
The Virtual DOM and the Real DOM are both representations of the structure of a web page, but they differ in how they are implemented and updated,…
DOM(Document Object Model)
Virtual DOM The Virtual DOM (Document Object Model) is a concept used in React and other JavaScript libraries/frameworks to improve the performance of web applications. In traditional…
What is React
React is a JavaScript library for building user interfaces, particularly for web applications. It was developed by Facebook and released to the public in 2013. React is…
Event Handler in JavaScript
In JavaScript, an event handler is a function that is executed in response to a specific event occurring in the browser. Event handlers are commonly used to…
Events in JavaScript
In JavaScript, events are actions or occurrences that happen in the browser, typically as a result of user interaction or system triggers. Examples of events include clicking…