<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://briansnelson.com/index.php?action=history&amp;feed=atom&amp;title=How_to_Reset_Magento_Password</id>
		<title>How to Reset Magento Password - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://briansnelson.com/index.php?action=history&amp;feed=atom&amp;title=How_to_Reset_Magento_Password"/>
		<link rel="alternate" type="text/html" href="https://briansnelson.com/index.php?title=How_to_Reset_Magento_Password&amp;action=history"/>
		<updated>2026-06-04T04:06:27Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>https://briansnelson.com/index.php?title=How_to_Reset_Magento_Password&amp;diff=33&amp;oldid=prev</id>
		<title>Brian: Created page with &quot;==How to Reset your Magento User Password==  Everyone at one point or another has forget a password, lot of people also forget their Magento passwords.  So you will need to re...&quot;</title>
		<link rel="alternate" type="text/html" href="https://briansnelson.com/index.php?title=How_to_Reset_Magento_Password&amp;diff=33&amp;oldid=prev"/>
				<updated>2013-03-25T20:02:29Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;==How to Reset your Magento User Password==  Everyone at one point or another has forget a password, lot of people also forget their Magento passwords.  So you will need to re...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==How to Reset your Magento User Password==&lt;br /&gt;
&lt;br /&gt;
Everyone at one point or another has forget a password, lot of people also forget their Magento passwords.&lt;br /&gt;
&lt;br /&gt;
So you will need to reset your password from within your database base&lt;br /&gt;
&lt;br /&gt;
First figure out what database you are using, by checking your local.xml file.&lt;br /&gt;
&lt;br /&gt;
 grep -i 'dbname' app/etc/local.xml&lt;br /&gt;
&lt;br /&gt;
resulting in&lt;br /&gt;
 &amp;lt;dbname&amp;gt;&amp;lt;![CDATA[magento]]&amp;gt;&amp;lt;/dbname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So the database is magento in this example:&lt;br /&gt;
&lt;br /&gt;
Now login to your database server and run:&lt;br /&gt;
&lt;br /&gt;
 use magento;&lt;br /&gt;
&lt;br /&gt;
Now lets search for the username you need to update&lt;br /&gt;
&lt;br /&gt;
 SELECT username FROM admin_user;&lt;br /&gt;
&lt;br /&gt;
Let say the admin_user was 'admin'&lt;br /&gt;
&lt;br /&gt;
 UPDATE admin_user SET password=CONCAT(MD5('qXpassword'), ':qX') WHERE username='admin';&lt;br /&gt;
&lt;br /&gt;
Now you password will be updated.&lt;/div&gt;</summary>
		<author><name>Brian</name></author>	</entry>

	</feed>