<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Redstage Magento Blog &#187; admin</title>
	<atom:link href="http://www.redstage.com/magento/blog/tag/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redstage.com/magento/blog</link>
	<description>Tips, Tricks &#38; News about Magento E-commerce</description>
	<lastBuildDate>Thu, 13 Oct 2011 22:27:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Magento &#8211; How to Reset the Admin Password</title>
		<link>http://www.redstage.com/magento/blog/2010/03/11/magento-how-to-reset-the-admin-password/</link>
		<comments>http://www.redstage.com/magento/blog/2010/03/11/magento-how-to-reset-the-admin-password/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 18:15:12 +0000</pubDate>
		<dc:creator>Antonio David</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[admin_user]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=172</guid>
		<description><![CDATA[You are locked out of your Magento site&#8217;s Admin Panel.  You&#8217;ve tried every username/password combination you know and have searched your entire computer (inside and out) for a file or sticky note to no avail.  Don&#8217;t worry, all is not lost &#8212; that is, assuming you have access and permission to browse and modify the [...]]]></description>
			<content:encoded><![CDATA[<div id='dd_left'><ul><li class='li_vertical'><iframe src='http://api.tweetmeme.com/button.js?url=http://www.redstage.com/magento/blog/2010/03/11/magento-how-to-reset-the-admin-password/&amp;source=&amp;style=normal' height='61' width='50' frameborder='0' scrolling='no'></iframe></li></ul></div><p>You are locked out of your Magento site&#8217;s Admin Panel.  You&#8217;ve tried every username/password combination you know and have searched your entire computer (inside and out) for a file or sticky note to no avail.  Don&#8217;t worry, all is not lost &#8212; that is, assuming you have access and permission to browse and modify the database.</p>
<p>Access to the database is typically done through:
<ul>
<li>phpMyAdmin &#8211; a 3rd party utility that usually comes packaged with hosting accounts (whether dedicated, shared, cloud, etc.)</li>
<li>SSH &#8211; a command-line interface</li>
</ul>
<p>Let&#8217;s say for example we&#8217;ve lost the password for the account with username: <strong>testadmin</strong>.</p>
<h3><strong>Using phpMyAdmin</strong></h3>
<p>1. In the left-hand column, click on the table called &#8220;<strong>admin_user</strong>&#8220;.</p>
<p><img src="http://www.redstage.com/magento/blog/article-images/reset-admin-password-phpMyAdmin-1-open-table.jpg" alt="Open admin_user Table" /></p>
<p>2. Click the &#8220;<strong>Browse</strong>&#8221; tab found at the top (horizontal) menu.</p>
<p><img src="http://www.redstage.com/magento/blog/article-images/reset-admin-password-phpMyAdmin-2-browse-table.jpg" alt="Browse table" /></p>
<p>3. Locate the account you wish to modify (<strong>testuser </strong>in this example), and click on the &#8220;<strong>Edit</strong>&#8221; icon (to the left of &#8220;Delete&#8221; and looks like a <strong>pencil</strong>)</p>
<p><img src="http://www.redstage.com/magento/blog/article-images/reset-admin-password-phpMyAdmin-3-locate-account.jpg" alt="Locate account" /></p>
<p>4. Locate the &#8220;password&#8221; row.  Select &#8220;<strong>MD5</strong>&#8221; from the dropdown menu and <strong>type in the new password</strong>.</p>
<p><img src="http://www.redstage.com/magento/blog/article-images/reset-admin-password-phpMyAdmin-4-change-password.jpg" alt="Select MD5 and type new password" /></p>
<p>5. Scroll to the bottom and click &#8220;Go&#8221; &#8212; and you should be all set!</p>
<h3><strong>Using SSH</strong></h3>
<p>1. Log in to the mysql&gt; prompt using:</p>
<pre style="padding-left: 30px;margin-bottom:15px">mysql -u [dbUsername] -p[dbPassword] -h[dbHost] [databaseName]</pre>
<p style="padding-left: 30px">For more information on this, see: <a href="http://www.aota.net/PHP_and_MySQL/telnet2mySQL.php4">Accessing MySQL via SSH</a></p>
<p>2. You should now see that your command prompt now looks like:</p>
<pre style="padding-left: 30px;margin-bottom:15px"><strong>mysql&gt;</strong></pre>
<p>3. Enter the command:</p>
<pre style="padding-left: 30px;margin-bottom:15px">UPDATE admin_user SET password = MD5('OurNewPassword') WHERE username = 'testuser';</pre>
<p>4. Hit Enter on your keyboard and you are done.</p>
<!-- Powered by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/ -->]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2010/03/11/magento-how-to-reset-the-admin-password/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

