Posts

Showing posts from February 16, 2019

Fouquières-lès-Béthune

Image
An Fouquières-lès-Béthune amo in usa ka komyun ha departamento han Pas-de-Calais ngan ha rehiyon han Nord-Pas-de-Calais ha nasod han Fransya. k h l Mga komyun ha departamento han Pas-de-Calais Ablain-Saint-Nazaire  · Ablainzevelle  · Acheville  · Achicourt  · Achiet-le-Grand  · Achiet-le-Petit  · Acq  · Acquin-Westbécourt  · Adinfer  · Affringues  · Agnez-lès-Duisans  · Agnières  · Agny  · Aire-sur-la-Lys  · Airon-Notre-Dame  · Airon-Saint-Vaast  · Aix-en-Ergny  · Aix-en-Issart  · Aix-Noulette  · Alembon  · Alette  · Alincthun  · Allouagne  · Alquines  · Ambleteuse  · Ambricourt  · Ambrines  · Ames  · Amettes  · Amplier  · Andres  · Angres  · Annay  · Annequin  · Annezin  · Anvin  · Anzin-Saint-Aubin  · Ardres  · Arleux-en-Gohelle  · Arques  · Arras  · Athies  · Les Attaques  · Attin  · Aubigny-en-Artois  · Aubin-Saint-Vaast  · Aubrometz  · Auchel  · Auchy-au-Bois  · Auchy

Fontaine-l'Étalon

Image
An Fontaine-l'Étalon amo in usa ka komyun ha departamento han Pas-de-Calais ngan ha rehiyon han Nord-Pas-de-Calais ha nasod han Fransya. k h l Mga komyun ha departamento han Pas-de-Calais Ablain-Saint-Nazaire  · Ablainzevelle  · Acheville  · Achicourt  · Achiet-le-Grand  · Achiet-le-Petit  · Acq  · Acquin-Westbécourt  · Adinfer  · Affringues  · Agnez-lès-Duisans  · Agnières  · Agny  · Aire-sur-la-Lys  · Airon-Notre-Dame  · Airon-Saint-Vaast  · Aix-en-Ergny  · Aix-en-Issart  · Aix-Noulette  · Alembon  · Alette  · Alincthun  · Allouagne  · Alquines  · Ambleteuse  · Ambricourt  · Ambrines  · Ames  · Amettes  · Amplier  · Andres  · Angres  · Annay  · Annequin  · Annezin  · Anvin  · Anzin-Saint-Aubin  · Ardres  · Arleux-en-Gohelle  · Arques  · Arras  · Athies  · Les Attaques  · Attin  · Aubigny-en-Artois  · Aubin-Saint-Vaast  · Aubrometz  · Auchel  · Auchy-au-Bois  · Auchy-

Magento 2: How to reset Customer Password from Database

Image
12 10 It's hash for customer password in DB. So MD5 & Sha1 is not working. UPDATE `customer_entity` SET `password` = MD5('test123') WHERE `email` = 'X@X.com'; So how to update password using database query. May be MD5(Sha1('test123')) ? How Magento is doing via code. go to vendormagentomodule-customerConsoleCommandUpgradeHashAlgorithmCommand.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 (!