How to apply for Pan card online?
In this blog, we will see how to apply for Pan card online. You can easily submit your application online using TIN of the Income Tax Department. PAN stands for Permanent Account Number which is unique identification number issues by the income tax department of India. It helps to identify every taxpayer in India as […]
How to Install Android Apps in Windows 11
Android apps install in windows 11, You will need an Amazon account to download Android apps onto your Windows 11 device via the Microsoft Store app. Windows 11 PC must have hardware virtualization enabled. Windows 11 essentially runs Android in a virtual machine, which is why this is necessary.You can check if your PC has […]
How to update Photo in Aadhaar card
Let’s see how to update Photo in Aadhaar card. According to the Unique Identification Authority of India (UIDAI), a photograph must be provided when you apply for an Aadhaar Card. In case you want to update the photograph, you must visit the nearest Aadhaar Enrollment Center. You can check nearest center here. Below steps to […]
How to change address in Aadhaar card
In today’s post, let see how to change address in Aadhaar Card. Aadhaar card (also known as Unique Identification Number) which is one of the most important documents required for most official work in India. Its a unique 12 digit number.Besides address, aadhaar card contains several other details such as the person’s name, date of […]
Customer login programmatically in magento 2
Login programmatically in Magento 2 . You required only Customer id or Customer email to logged-in customer programmatically without going to the login page. Customer id or customer email require to load customer. You need to first get Customer object using CustomerFactory . Use Customer Object to customer session with setCustomerDataAsLoggedIn function. This method also […]
Magento 2 maintenance mode
Magento provides a maintenance mode, it’s used when taking database backup and others We can apply maintenance mode using command-line interface in this case connect SSH and go to Magento root dir. When uploading something on a live website then need to enable maintenance mode Maintenance mode enable command: bin/magento maintenance:enable Maintenance mode enable white […]
Step by step create PWA website
According to this article, we discuss how to create a PWA website. What is a PWA? 1. PWA stands for Progressive Web App 2. It is a modern web development approach including HTML, CSS, and JavaScript. It shows how to use service workers 3. PWA is a set of functionality. When implemented on a web […]
Trends Of Digital Marketing
Let’s discuss today, What is the trends of Digital Marketing. Nowadays, consumers are not simply introduced to the products or services freshly arrive in the market. There is a bunch of technological gadgets, social media channels and mobile platforms which keeps rotating around the user. Instead of physical appearance, consumers are now surrounded by a […]
How to reset Customer Password from Database in Magento 2
Magento 2 update customer password using the database:- Run/execute below query in database SET @email=’[email protected]’, @passwd=’asd123′, @salt=MD5(RAND()); UPDATE customer_entity SET password_hash = CONCAT(SHA2(CONCAT(@salt, @passwd), 256), ‘:’, @salt, ‘:1’) WHERE email = @email; Magento 2 update admin password using database:- Run/execute below query in database SET @salt = MD5(UNIX_TIMESTAMP()); UPDATE admin_user SET password = CONCAT(SHA2(CONCAT(@salt, ‘admin@1234#’), […]
How to get database detail in Magento 2
Today, I’m sharing to you the “How to edit Magento 2 Database Configuration file” tutorial. When installing or changing hosting for your Magento store, editing database configuration file is really important Go to your store core folder and open the env.php file under the app/etc folder. Find the next code, where database_name is actual database […]
Encrypt decrypt in php with salt
OpenSSL functions to use encrypt decrypt in php with salt below code Encrypt Method $privateKey = ‘AA74CDCC2BBRT935136HH7B63C27’; // user define key $secretKey = ‘5fgf5HJ5g27’; // user define secret key $encryptMethod = “AES-256-CBC”; $string = ‘IB12345’; // user define value $key = hash(‘sha256’, $privateKey); $ivalue = substr(hash(‘sha256’, $secretKey), 0, 16); // sha256 is hash_hmac_algo $result = […]
Add Recaptcha in Custom From Magento 2.4
This post is related to add Google Recaptcha to Custom Form in Magento 2.4.X Module Name: Integerbyte_MyRecaptcha Files List: app/code/Integerbyte/MyRecaptcha/registration.php app/code/Integerbyte/MyRecaptcha/etc/module.xml app/code/Integerbyte/MyRecaptcha/etc/adminhtml/system.xml app/code/Integerbyte/MyRecaptcha/etc/config.xml app/code/Integerbyte/MyRecaptcha/etc/frontend/routes.xml app/code/Integerbyte/MyRecaptcha/etc/frontend/events.xml app/code/Integerbyte/MyRecaptcha/Observer/RecapchaObserver.php app/code/Integerbyte/MyRecaptcha/Controller/Index/Index.php app/code/Integerbyte/MyRecaptcha/Controller/Index/Save.php app/code/Integerbyte/MyRecaptcha/view/frontend/layout/myrecaptcha_index_index.xml app/code/Integerbyte/MyRecaptcha/view/frontend/templates/form.phtml 1. Module Registarion file app/code/Integerbyte/MyRecaptcha/registration.php <?php \Magento\Framework\Component\ComponentRegistrar::register( \Magento\Framework\Component\ComponentRegistrar::MODULE, ‘Integerbyte_MyRecaptcha’, __DIR__ ); 2. Create module.xml file app/code/Integerbyte/MyRecaptcha/etc/module.xml <?xml version=”1.0″?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:Module/etc/module.xsd”> <module name=”Integerbyte_MyRecaptcha” setup_version=”1.0.0″> </module> […]