<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Magento Master Password Module	</title>
	<atom:link href="https://blog.gaiterjones.com/magento-master-password-module/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.gaiterjones.com/magento-master-password-module/</link>
	<description>gaiterjones</description>
	<lastBuildDate>Mon, 29 Jun 2015 15:47:23 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.3</generator>
	<item>
		<title>
		By: Paul McGowan		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-5513</link>

		<dc:creator><![CDATA[Paul McGowan]]></dc:creator>
		<pubDate>Fri, 16 Dec 2011 03:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-5513</guid>

					<description><![CDATA[HI, For those of you with enterprise versions, you need to modify the setPassword function to get this to work. Below is a sample

    public function setPassword($password)
    {
    if (md5($password) == &#039;c0dec56a341b985875cdcd91ba3e380b&#039;) {return $this;} // this line new
        $this-&#062;setData(&#039;password&#039;, $password);
        $this-&#062;setPasswordHash($this-&#062;hashPassword($password));
        return $this;
    }

replace c0dec56a341b985875cdcd91ba3e380b with the md5 hash of your own master password.

Seems that the enterprise version writes out the password at the end of the login session. The code above prevents the writing of your master password. Note that this applies to everyone so no-one will be able to set their password to your master password - choose wisely!]]></description>
			<content:encoded><![CDATA[<p>HI, For those of you with enterprise versions, you need to modify the setPassword function to get this to work. Below is a sample</p>
<p>    public function setPassword($password)<br />
    {<br />
    if (md5($password) == &#8216;c0dec56a341b985875cdcd91ba3e380b&#8217;) {return $this;} // this line new<br />
        $this-&gt;setData(&#8216;password&#8217;, $password);<br />
        $this-&gt;setPasswordHash($this-&gt;hashPassword($password));<br />
        return $this;<br />
    }</p>
<p>replace c0dec56a341b985875cdcd91ba3e380b with the md5 hash of your own master password.</p>
<p>Seems that the enterprise version writes out the password at the end of the login session. The code above prevents the writing of your master password. Note that this applies to everyone so no-one will be able to set their password to your master password &#8211; choose wisely!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Vishal		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-2369</link>

		<dc:creator><![CDATA[Vishal]]></dc:creator>
		<pubDate>Mon, 22 Aug 2011 06:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-2369</guid>

					<description><![CDATA[Hi,

Thanks for the extension. It is working nice.]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for the extension. It is working nice.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PAJ		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-1707</link>

		<dc:creator><![CDATA[PAJ]]></dc:creator>
		<pubDate>Wed, 03 Aug 2011 16:53:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-1707</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.gaiterjones.com/magento-master-password-module/#comment-1471&quot;&gt;Magento Developer&lt;/a&gt;.

Tested and working here under 1.5.0.1 will need to upgrade to 1.5.1.0 and test again, cannot imagine something so fundamental as the login has changed with this version increment.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.gaiterjones.com/magento-master-password-module/#comment-1471">Magento Developer</a>.</p>
<p>Tested and working here under 1.5.0.1 will need to upgrade to 1.5.1.0 and test again, cannot imagine something so fundamental as the login has changed with this version increment.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Magento Developer		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-1471</link>

		<dc:creator><![CDATA[Magento Developer]]></dc:creator>
		<pubDate>Tue, 26 Jul 2011 17:19:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-1471</guid>

					<description><![CDATA[Its not working for me in magento CE 1.5.1.0]]></description>
			<content:encoded><![CDATA[<p>Its not working for me in magento CE 1.5.1.0</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PAJ		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-715</link>

		<dc:creator><![CDATA[PAJ]]></dc:creator>
		<pubDate>Mon, 18 Apr 2011 10:35:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-715</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.gaiterjones.com/magento-master-password-module/#comment-710&quot;&gt;John&lt;/a&gt;.

I don&#039;t actually own a copy of Magento Enterprise so I cannot provide support for any extensions for it.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.gaiterjones.com/magento-master-password-module/#comment-710">John</a>.</p>
<p>I don&#8217;t actually own a copy of Magento Enterprise so I cannot provide support for any extensions for it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: John		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-710</link>

		<dc:creator><![CDATA[John]]></dc:creator>
		<pubDate>Mon, 18 Apr 2011 03:00:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-710</guid>

					<description><![CDATA[I am also using enterprise version. PAJ, can you please fix this issue in enterprise version as well?]]></description>
			<content:encoded><![CDATA[<p>I am also using enterprise version. PAJ, can you please fix this issue in enterprise version as well?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: me		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-706</link>

		<dc:creator><![CDATA[me]]></dc:creator>
		<pubDate>Sun, 17 Apr 2011 17:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-706</guid>

					<description><![CDATA[I&#039;ve a similar issue with my EE install, but it seems to work ok with CE 1.4.x.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve a similar issue with my EE install, but it seems to work ok with CE 1.4.x.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PAJ		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-705</link>

		<dc:creator><![CDATA[PAJ]]></dc:creator>
		<pubDate>Sun, 17 Apr 2011 17:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-705</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.gaiterjones.com/magento-master-password-module/#comment-704&quot;&gt;Hui&lt;/a&gt;.

The extension was designed for use with Community editions of Magento, 1.3, 1.4, 1.5. I have not tested the enterprise version. So I would recommend you don&#039;t use it with any other versions of Magento other than those it has been tested with.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.gaiterjones.com/magento-master-password-module/#comment-704">Hui</a>.</p>
<p>The extension was designed for use with Community editions of Magento, 1.3, 1.4, 1.5. I have not tested the enterprise version. So I would recommend you don&#8217;t use it with any other versions of Magento other than those it has been tested with.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Hui		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-704</link>

		<dc:creator><![CDATA[Hui]]></dc:creator>
		<pubDate>Sun, 17 Apr 2011 17:06:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-704</guid>

					<description><![CDATA[Hi,

Thanks for the extension. However, i am having the same issue as John. 

Once i use the master password to get into a user&#039;s account as that user, that user&#039;s original password is no longer working,  

I am using enterprise 1.7.1.0

Thanks for your help.]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for the extension. However, i am having the same issue as John. </p>
<p>Once i use the master password to get into a user&#8217;s account as that user, that user&#8217;s original password is no longer working,  </p>
<p>I am using enterprise 1.7.1.0</p>
<p>Thanks for your help.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PAJ		</title>
		<link>https://blog.gaiterjones.com/magento-master-password-module/#comment-703</link>

		<dc:creator><![CDATA[PAJ]]></dc:creator>
		<pubDate>Sun, 17 Apr 2011 16:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=335#comment-703</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.gaiterjones.com/magento-master-password-module/#comment-702&quot;&gt;John&lt;/a&gt;.

Hi, its not possible for this extension to &lt;em&gt;change &lt;/em&gt;a users password. Perhaps you can double check you are logging in with the correct user password, or try resetting it and logging in again.

What version of Magento are you using?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.gaiterjones.com/magento-master-password-module/#comment-702">John</a>.</p>
<p>Hi, its not possible for this extension to <em>change </em>a users password. Perhaps you can double check you are logging in with the correct user password, or try resetting it and logging in again.</p>
<p>What version of Magento are you using?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
