Hey,
I recently migrated from 1.9 to 2.2, and after some tries I found a way to import only what I need (customers and orders), so I thought, but the checkout stopped working for some reason, I can't see any errors in the logs so I'm a bit lost in what I'm looking for.
What can happened for this to happen?
Thanks
Solved! Go to Solution.
I found what it was, the migration messed up with customer_form_attribute table, just made back to what it was all became good.
Thanks
Hi @rui_silva1,
Have you checked the Magento log files in var/log folder?
Change to developer mode:
bin/magento deploy:mode:set developer
Also you can uncomment below line from app/bootstrap.php
ini_set('display_errors', 1);
I hope it will help you to find out the error.
Thanks for the reply @Vimal Kumar ;
It's already in developer mode and I checked both system log and exception log, none of them have an error.
The checkout just redirects to cart without any errors. In the mean time I was checking all requests, with are a lot in the checkout and saw that the shipping address is giving country ID as null, the migration may have messed up that tables or something.
Thanks