Questions tagged «password»

9
CE1.9.1请确保用户注册期间密码匹配问题
我在CE1.9.1中遇到此问题。 当用户注册时(无论是在结帐期间还是从“创建帐户”链接中都无关紧要),即使密码重新正确输入,用户仍然会收到密码不匹配错误。 表单验证并不表示不匹配,但是一旦用户单击“注册”,它将返回不匹配错误。 chrome控制台没有错误... 我发现了这一点:“请确保您的密码匹配”-使用“新注册”结帐时出现密码错误 但是我不相信这是同样的错误。 我需要尽快修复,非常感谢您的帮助!

5
Magento 2:如何从数据库中重置客户密码
它是数据库中客户密码的哈希值。因此,MD5和Sha1无法正常工作。 UPDATE `customer_entity` SET `password` = MD5('test123') WHERE `email` = 'X@X.com'; 那么如何使用数据库查询来更新密码。可能是MD5(Sha1('test123'))吗? Magento如何通过代码进行操作。去vendor\magento\module-customer\Console\Command\UpgradeHashAlgorithmCommand.php protected function execute(InputInterface $input, OutputInterface $output) { $this->collection = $this->customerCollectionFactory->create(); $this->collection->addAttributeToSelect('*'); $customerCollection = $this->collection->getItems(); /** @var $customer Customer */ foreach ($customerCollection as $customer) { $customer->load($customer->getId()); if (!$this->encryptor->validateHashVersion($customer->getPasswordHash())) { list($hash, $salt, $version) = explode(Encryptor::DELIMITER, $customer->getPasswordHash(), 3); $version .= …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.