In my shop login and register its not working:
http://makishoc.nextmp.net/customer/account/login/
http://makishoc.nextmp.net/customer/account/create/
I’m sure that forms have input “form_key” with
<input type="hidden" name="form_key" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
And my cookie configuration it’s like this:
Has anyone seen this problem before and can point me to the error?
2
Answers
I think you need to add this code in form_key
<?php echo $this->getBlockHtml('formkey') ?>
There are two errors which need to be corrected:
1) You have lastname required in the create account section which is hidden. Either display that field or remove required from database.
2) Also you have “Associate to website” field which is required.
Please solve these error and you will able to create account and in the same way you will also be able to login.
Thanks