I update Magento 2.2.6 to 2.3.1 and I have this error in which I didn't find any information :
temando.CRITICAL: "accountId" is required. Enter and try again. {"exeption": "[object] (Magento\Framework\Exception\InputException(code: 0): \"accountId\" is required. Enter and try again. at /var/www/site/magento/vendor/magento/framework/Exception/InputException.php:91"}[]
I did find anything about this mistake, do someone had it and solved it ?
Thank you in advance.
Solved! Go to Solution.
Hi @sylvain_michel,
This issue due to temando_shipping module. You can disable it first.
php bin/magento module:disable Temando_Shipping
If still you are getting error then you can remove from vendor folder as well. After upgrade it will auto populated again with new version.
I hope it will help you!
Hi @sylvain_michel,
This issue due to temando_shipping module. You can disable it first.
php bin/magento module:disable Temando_Shipping
If still you are getting error then you can remove from vendor folder as well. After upgrade it will auto populated again with new version.
I hope it will help you!
Thank you but unfortunatly this extension is required (in config.php is setted at 1 so it was used in magento 2.2 version)
Hello @sylvain_michel,
Please try to update your composer by :
composer update
Then execute following commands
rm -rf generated/*
bin/magento setup:di:compile
bin/magento cache:flush
bin/magento setup:static-content:deploy
I hope this will work for you.
If this helps you, please accept it as solution and give kudos.
Regards.
Hello @Sarvagya Pandey ,
Thank you but I already done that, It didn't work.
With magento this even become automatic to do those step as it is a machine to generate bugs
hello @Sarvagya Pandey ,
in the class store-front a customer view is used
@Sarvagya Pandey
Was using flatrate shipping, but we uninstalled this extension and make ourself the modules, now it working. But thank you for your help.