Magento 2.3: ‘We Can’t Save the Customer’ Error After Migration

controllerscustomermagento2

I have migrated store from Magento 1.7.0.2 to Magento 2.3.
When i Create the customer it shows me error "We can't save the customer."

I have checked log file and i can see log, "Class Magento\Eav\Model\Attribute\Data\Label does not exist".
I have checked this path, and Label.php does not exist.
Can you guys please help me?!!

Is there any issue related to customer attribute?
How can i debug and fix this issue?

Thanks,

Best Answer

Yes,I am not sure about it. but it is clear that the issue is happening for some custom attribute.

Some of the attribute's frontend_input field value is label and that is wrong.magento does not have this type of frontend_input type field.

So, you have to find that attribute, first goto database and then eav_attribute goto run below code:

SELECT * FROM eav_attribute where frontend_input = 'label'

You have to delete those attributes .But its means you willbe lost value of this field of catalog product/category/customer entity

Related Topic