Category

Magento

Category

https://youtu.be/dMwVPKJHeXY You can follow these step vendor/magento/theme-frontend-blank/web/css/email.less vendor/magento/theme-frontend-blank/web/css/email-inline.less into: app/design/frontend/YOUR_VENDOR/YOUR_THEME/web/css/ and removed this line from both files ‘@import ‘source/_theme.less’. Cause by doing this we are separating theme css and email css. Last run the following commands: php bin/magento maintenance:enable rm -rf var/cache/* var/page_cache/* var/di/* var/generation/* var/view_preprocessed/* generated/* pub/static/* php -d memory_limit=12G bin/magento setup:upgrade php -d memory_limit=12G bin/magento setup:di:compile php -d memory_limit=12G bin/magento setup:static-content:deploy -f php bin/magento c:f php bin/magento c:c chmod -R 0777 var/ generated/ pub/static…

Steps to Remove Index.php from a URL in Magento 2: Log in to Admin panelNavigate to Stores > Configuration > General > WebExpand the Search Engine Optimization sectionSet “yes” to Use Web Server Rewrites option.Further, expand the Base URLs (Secure) sectionSet “yes” to Use Secure URLs on Storefront

I try to remove All Administrators’s Rule. then I done Below thing to get All Admin user’s Role. Note:- use mysqldump to back up your databases before doing anything further Table :- authorization_rule Step-2: truncate Table using truncate command truncate authorization_rule Step 3) This insert Data into authorization_rule INSERT INTO authorization_rule (rule_id, role_id, resource_id, privileges, permission) VALUES (1, 1, ‘Magento_Backend::all’, NULL, ‘allow’); Step-4: Run below Magento Command php bin/magetno set:up; php bin/magetno s:s:d -f ;…

Here we going to learn about how to flush a Cache using command line in Magento 2. you can check bellow command. In Magento 2 has 12 type of cache by default. here we going to learn about 5 simple command follow all step. 1. To flush Magento 2 cache Go to Magento root directoryType:php bin/magento cache:clean and php bin/magento cache:flushFinish! Go to your Magento store and check result. 2. Go inside of your project directory using…

You can run command inside of project folder php bin/magento info:adminuri Output: Admin URI: /admin Check Admin path inside of app/etc/env.php file Do you know? You can get admin path without access to app/etc/env.php file. ‘backend’ => array ( ‘frontName’ => ‘admin’, ),

Here we going setup Magento 2.4.1 On mac operating system. you can follow step by step. https://www.youtube.com/watch?v=_XLxBliS0jU Web services Requirements Apache 2.2 or 2.4 Nginx 1.x Database Engine Requirements MySQL 5.7 MariaDB 5.6, 5.7 PHP Requirements >= 7.4 Elasticsearch >= 7.7 Composer >= 1.x Step 1: Install MAMP 1. Here we need to download MAMP in our machine just click on the link for download MAMP in our machine 2. Once you successfully downloaded MAMP…