Magento2 – Order Items Not Adding from Admin After Upgrade

adminmagento2orderssales-order

Create a new order from the Admin panel for a particular customer. Magento default functionality is not working

When I add a new product and update to the shopping cart option then the page refresh but the product does not add to the Item order.

There is no error in the console.

Logfile has below error:

Broken reference: the 'page.menu' tries to reorder itself towards 'header', but their parents are different: 'page.wrapper' and 'content' respectively. [] []

enter image description here

Best Answer

I was having the same issue in magento 2.3.7-p1. In logs, it was showing this error:

main.WARNING: Session size of 370635 exceeded allowed session max size of 256000. [] []

To fix this, run below command:

php bin/magento config:set system/security/max_session_size_admin 0

After cache flush, I was able to add products to shopping cart from admin order create page.

Related Topic