Hi Mall,
We have managed to transfer the images from our Magento 1 store our Magento 2 site; however, many of the thumbnail images do not appear in the product catalog list, as they are marked as hidden for some reason. When we go into the product and remove the hidden checkbox the image still do not appear on the frontend of the Magento 2 site and do not appear in the backend on the product catalog list.
Do you have any suggestions or solutions why this happening?
Thank you in advance for any help you may provide.
Guy
3 answers
Hi Guy Stewart,
Do you have any suggestions or solutions why this happening?
That occurred because your images were marked as Excluded in your Magento 1 which causes conflict with the new rule of Magento 2.
Our tool migrates all your images settings on as-is basis and did not make any change to related settings.
If you wish to activate those images in Magento 2, you can run the following SQL in your Magento 2 database:
UPDATE `YOUR_DATABASE_NAME`.`catalog_product_entity_media_gallery` SET `disabled` = '0';
UPDATE `YOUR_DATABASE_NAME`.`catalog_product_entity_media_gallery_value` SET `disabled` = '0';
Let me know how it goes then.
Regards,
Mall.
Hi Guy Stewart,
So, let’s provide me the admin and SSH credentials of your Magento2.
I will check further and help you out.
Regards,
Mall.
Hi Guy Stewart,
Is it possible to “re-run” a Migration Step from the command line or is it only possible to re-run a step via the admin area in the Magento 2 backend. we prefer to re-run via SSH? If so, how do we re-run the step via the command line -- do we just type: php bin/ubdatamigration run --step=5 --limit=200Will that re-run from the last imported record?Guy
Yes, you can use that command line to delta migration for each step. It will run data migration from last imported record.
Regards,
Mall.
Nothing works - please can you have a look at the database?
Guy