We use cookies to make your experience better. To comply with the new e-Privacy directive, we need to ask for your consent to set the cookies. Learn more.
Solution of problems
-
November 29, 2023
Magento, as an e-commerce platform, provides extensive capabilities for managing products, including features for importing and exporting products. However, there are instances where the process of importing Downloadable products may lead to errors in attribute management. In this article, we will discuss a patch for the
Downloadable.php
file that addresses the issue of saving the redundant 'links_purchased_separately' attribute. Additionally, we will talk about a temporary solution for the problem where the "Links can be purchased separately" option always remains enabled after importing Downloadable products due to a Magento bug.Step 1: Describing the Problem
After importing Downloadable products into Magento, an issue may arise with the "Links can be purchased separately" option. Due to a Magento bug, this option will always be enabled, even if the corresponding attributes ('links_purchased_separately' or 'purchased_separately') are absent in the input
-
October 27, 2022
If after updating Magento (Adobe Commerce) to version 2.4.4 and higher your customers receive order emails without a list of products, then the solution below should help you solve your problem.
First of all, you need to check your email templates for "New Order" and "New Order for Guest".
If they contain such a code{{layout handle="sales_email_order_items" order=$order area="frontend"}}
then change the selected part in it as shown below
{{layout handle="sales_email_order_items" order_id=$order_id area="frontend"}}
-
October 21, 2022
If you noticed that your images have not appeared on your Magento2 site you can check the log file. There you can see the error below
imagecolorsforindex(): Argument #2 ($color) is out of range#0
/vendor/magento/framework/Image/Adapter/Gd2.php(347): imagecolorsforindex()
This error happens because the PHP library GD2 for PHP 8.1 has a bug.
For fixing this issue you should run the command below
bin/magento config:set dev/image/default_adapter IMAGEMAGICK
-
October 14, 2022
If you can't log in to the admin panel, but no error is shown, then you may have a problem with the session size.
Below is one solution to this problem.
-
July 20, 2022
Given
The site is working on Adobe Commerce (Magento) 2.
Site loads by HTTPS (SSL).
There is an ERR_TOO_MANY_REDIRECTS error on your server. -
June 24, 2022
If you have the error as in the title of this page this solution can help you.
In our case, this error happened when we synchronize live DB in dev DB.
The solution
Before anything action, you must make backup your DB
-
August 25, 2021
If you get this error when running bin / magento setup: upgrade command
Unable to apply data patch Magento\Paypal\Setup\Patch\Data\UpdateBmltoPayLater for module Magento_Paypal.
Original exception message: Notice:
Undefined offset: 1 in /vendor/magento/module-paypal/Setup/Patch/Data/UpdateBmltoPayLater.php on line 138
then you need to execute the following command in the Database
DELETE FROM `core_config_data` WHERE path="payment/paypal_express_bml/active";
-
February 26, 2021If after running the command php bin / magento setup: di: compile your proxy class was not created, then a possible reason may be that your di.xml has line breaks in the "argument" field.