“Zresetuj hasło administratora Magento 2” Kod odpowiedzi

Utwórz hasło administracyjne w Magento 2

bin/magento admin:user:create --admin-user="admin2" --admin-password="admin123" --admin-email="[email protected]" --admin-firstname="Amin" --admin-lastname="Admin"
Amused Aardvark

Zresetuj hasło administratora w Magento 2

bin/magento admin:user:create --admin-user="admin" --admin-password="admin123" --admin-email="[email protected]" --admin-firstname="Amin" --admin-lastname="Admin"
Alexandru Olari

Zresetuj hasło administratora Magento 2

UPDATE admin_user SET password = CONCAT(SHA2('xxxxxxxYourNewPassword', 256), ':xxxxxxx:1') WHERE username = 'admin';

The xxxxxxx character sequence is a cryptographic salt, it is saved in app\etc\env.php file

<?php
...
  'crypt' => [
      'key' => 'f323fedda15153db7783e4610137a581'
  ],
...
?>
Busy Baboon

Odpowiedzi podobne do “Zresetuj hasło administratora Magento 2”

Pytania podobne do “Zresetuj hasło administratora Magento 2”

Więcej pokrewnych odpowiedzi na “Zresetuj hasło administratora Magento 2” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu