Magento – New user registration Showing error ” We Can’t save the customer “

customermagento2register

Hello i am new on the magento 2 . suddenly i got the error when new user come on the site and try to register after filling information it is showing error as " We Can't save the customer " . i am not able to understand why this is happening suddenly on my website. please let me know and suggest me any relevant answer for this query . my webSite Url is http://54.67.81.223/viewsonicstore

Best Answer

Go to core/mage/customer/controller/AccountController.php and find function named createPostAction(). In that function add

die($e->getMessage());

Just after catch (Exception $e) {. You can see what the problem is..

Don't forget to remove the additional line when problem will be fixed.

Related Topic