WHAT IS FAVICON IN MAGENTO 2 WEBSITE? Favicon is short for “favorite icon,” which is a small icon on the tab of each browser page and in the address bar in some browsers. The standard sizes of the favicon are 16×16 pixels or 32 x 32 pixels. For Magento e-commerce websites, only the favicons saved
Magento 2 Tutorials
How To Change Logo In Magento 2? (5 minutes)
Magento 2 allows us to change logo appearing in website header, transactional emails and invoice at ease. In this tutorial, we will show you how to change logo for all of these positions. The reason why we can’t use the same logo for all places is that the sizes of the logo for each of
How To Clear Cache In Magento 2? (3 minutes)
As you might know, in order to enhance the site performance and make it work correctly, we have to utilize Magento’s cache management system – clear cache regularly. When do we need to clear cache? – We will have to clear cache when there is notice appearing at the top of the admin panel and
How To Fix Deadlock Error When Reindexing All In Magento 2?
PROBLEM: Magento Version: 2.1.9 Mode: Production Indexing Mode: Update on save Total Products: 18k Total Customers: 54k Total Orders: 18k After the developer tried to re-indexing, the exception.log file was generated including the following error in this file. Meanwhile, the server was stuck and needed restarting. Then, the site can run as usual. “PDOException: SQLSTATE[40001]:
How To Protect Original Product Images In Magento 2?
PROBLEM: The developer enables the watermark function of Magento 2, but the original product images are still accessible from URL without the watermark. For example: Cached image URL with the watermark: /pub/media/catalog/product/cache/df484df48ez74849c15sd4f7780/f/f/dsf-8f48d4f.jpg The original image URL without the watermark: /pub/media/catalog/product/f/f/dsf-8f48d4f.jpg Therefore, if someone who removes /cache/df484df48ez74849c15sd4f7780/ from URL can still access to the original photo without
[Fix It Series] Magento 2 Error: Custom Links in Admin Menu CE 2.1.8
PROBLEM: The developer creates a new module. Although the module is successfully installed and enabled, when clicking on the link on the admin menu it goes to the Dashboard. Here is the structure of the files in app/code/dfprojects: In System –> User Roles the entries
Magento 2 Tutorials – From A to Z For Beginners
This is a special blog post that sums up all of our Magento 2 tutorial up to now. Regardless of being a “new player” or an experienced Magento developer, you will find this resources valuable! How To Create Order Programmatically in Magento 2 (in 5 minutes) In this Magento 2 tutorial, we will show you
How To Configure Admin Security and Admin Captcha In Magento 2? (10 minutes)
In this Magento 2 tutorial, we will show you several steps of admin security and admin CAPTCHA configuration in Magento 2. HOW TO CONFIGURE ADMIN SECURITY IN MAGENTO 2? To begin with, Magento 2 allows you to set up the length of inactive keyboard before expiring session and require username and password to be case-sensitive
How To Set Up Currencies In Magento 2? (10 minutes)
In this Magento 2 tutorial, we will show you several steps of currencies configuration in Magento 2 (including defining the accepted currencies and displayed ones). HOW TO SET UP CURRENCIES IN MAGENTO 2? Step 1: Go the admin panel, navigate to STORES and choose Configuration (under Settings) (Admin Panel => STORES => Configuration) Expand the GENERAL field
[Fix It Series] Magento 2 Error: getLastRealOrderId Doesn’t Work After Checkout With Enabled Page Cache
PROBLEM: Creating a payment gateway module in order to redirect to the gateway page after checkout. However, while page cache is enabled the method for getting last real order id returns null (it is used to get order id from session). So, how to use the module without disabling page cache? SOLUTIONS: There are 2