<?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: Reset a WordPress Password from phpMyAdmin</title>
	<atom:link href="http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin</link>
	<description>Design, Develop, and Grow</description>
	<lastBuildDate>Sun, 21 Mar 2010 19:46:27 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Shiv</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-182377</link>
		<dc:creator>Shiv</dc:creator>
		<pubDate>Fri, 15 Jan 2010 17:59:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-182377</guid>
		<description>Really Useful post for me, tried and did it successfully.</description>
		<content:encoded><![CDATA[<p>Really Useful post for me, tried and did it successfully.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prasanna Kumar</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-181998</link>
		<dc:creator>Prasanna Kumar</dc:creator>
		<pubDate>Tue, 22 Dec 2009 06:13:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-181998</guid>
		<description>Thanks for the tip.</description>
		<content:encoded><![CDATA[<p>Thanks for the tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: crivion</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-181985</link>
		<dc:creator>crivion</dc:creator>
		<pubDate>Mon, 21 Dec 2009 16:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-181985</guid>
		<description>Something new for me is that mysql/phpmyadmin knows how to md5()
I was  using various internet tools to encrypt words into md5 has untill now</description>
		<content:encoded><![CDATA[<p>Something new for me is that mysql/phpmyadmin knows how to md5()<br />
I was  using various internet tools to encrypt words into md5 has untill now</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nero</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-181729</link>
		<dc:creator>Nero</dc:creator>
		<pubDate>Thu, 26 Nov 2009 17:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-181729</guid>
		<description>Ah sorry i forgot the code tag

&lt;code&gt;
  require_once(&#039;wp-load.php&#039;);
  $wpdb-&gt;query(&quot;UPDATE &quot;.$table_prefix.&quot;users SET user_pass = &#039;&quot;.wp_hash_password($_REQUEST[&quot;new_pw&quot;]).&quot;&#039; WHERE user_login = &#039;&quot;.$_REQUEST[&quot;u_name&quot;].&quot;&#039;&quot;);&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Ah sorry i forgot the code tag</p>
<p><code><br />
  require_once('wp-load.php');<br />
  $wpdb-&gt;query("UPDATE ".$table_prefix."users SET user_pass = '".wp_hash_password($_REQUEST["new_pw"])."' WHERE user_login = '".$_REQUEST["u_name"]."'");</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nero</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-181728</link>
		<dc:creator>Nero</dc:creator>
		<pubDate>Thu, 26 Nov 2009 16:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-181728</guid>
		<description>Hi,

hm i change the pw with this litel code it works just fine.

Create a new php file with the following code  in your wp root. 
#########
query(&quot;UPDATE &quot;.$table_prefix.&quot;users SET user_pass = &#039;&quot;.wp_hash_password($_REQUEST[&quot;new_pw&quot;]).&quot;&#039; WHERE user_login = &#039;&quot;.$_REQUEST[&quot;u_name&quot;].&quot;&#039;&quot;);
?&gt;
#########

Now you only need to do a request to this file with a browser url like this.

http://YourDomain/wordpress/newpw.php?new_pw=YourPassword&amp;u_name=YourUser

But delete the file after your done ^_^

Sorry for my bad english i tried my best &gt;_&lt;</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>hm i change the pw with this litel code it works just fine.</p>
<p>Create a new php file with the following code  in your wp root.<br />
#########<br />
query(&#8220;UPDATE &#8220;.$table_prefix.&#8221;users SET user_pass = &#8216;&#8221;.wp_hash_password($_REQUEST["new_pw"]).&#8221;&#8216; WHERE user_login = &#8216;&#8221;.$_REQUEST["u_name"].&#8221;&#8216;&#8221;);<br />
?&gt;<br />
#########</p>
<p>Now you only need to do a request to this file with a browser url like this.</p>
<p><a href="http://YourDomain/wordpress/newpw.php?new_pw=YourPassword&amp;u_name=YourUser" rel="nofollow">http://YourDomain/wordpress/newpw.php?new_pw=YourPassword&amp;u_name=YourUser</a></p>
<p>But delete the file after your done ^_^</p>
<p>Sorry for my bad english i tried my best &gt;_&lt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 重设WordPress密码 &#171; Hello Word</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-181219</link>
		<dc:creator>重设WordPress密码 &#171; Hello Word</dc:creator>
		<pubDate>Fri, 09 Oct 2009 11:07:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-181219</guid>
		<description>[...] Reset a WordPress password from phpMyAdmin [...]</description>
		<content:encoded><![CDATA[<p>[...] Reset a WordPress password from phpMyAdmin [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonella</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-180790</link>
		<dc:creator>Antonella</dc:creator>
		<pubDate>Sun, 13 Sep 2009 15:19:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-180790</guid>
		<description>Thanks! This page saved me. I tried to figure the password reset using phpMyAdmin from from the help page on the Wordpress portal, but I think it&#039;s missing a step, or it wasn&#039;t that clear. With your instructions, I was able to change my password in 1 minute!</description>
		<content:encoded><![CDATA[<p>Thanks! This page saved me. I tried to figure the password reset using phpMyAdmin from from the help page on the Wordpress portal, but I think it&#8217;s missing a step, or it wasn&#8217;t that clear. With your instructions, I was able to change my password in 1 minute!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stotti</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-180707</link>
		<dc:creator>Stotti</dc:creator>
		<pubDate>Fri, 04 Sep 2009 21:16:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-180707</guid>
		<description>Hi Alex,

you&#039;re absolutely right. The hashing algorithm implemented in Wordpress is using a salt. So each hash differs from the other - even if the original message is the same. Coherent my Wordpress password generator (http://scriptserver.mainframe8.com/wordpress_password_hasher.php) is generating a different password hash each turn. Don&#039;t worry, every generated hash is valid for your password. :)
If you have further questions i&#039;ll be happy to answer them. But please ask them over at my blog (http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/) where i may recognize it faster. I&#039;ve seen your comment here just by coincidence. Thank you!

Best regards
- Stotti</description>
		<content:encoded><![CDATA[<p>Hi Alex,</p>
<p>you&#8217;re absolutely right. The hashing algorithm implemented in Wordpress is using a salt. So each hash differs from the other &#8211; even if the original message is the same. Coherent my Wordpress password generator (<a href="http://scriptserver.mainframe8.com/wordpress_password_hasher.php" rel="nofollow">http://scriptserver.mainframe8.com/wordpress_password_hasher.php</a>) is generating a different password hash each turn. Don&#8217;t worry, every generated hash is valid for your password. <img src='http://www.devlounge.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
If you have further questions i&#8217;ll be happy to answer them. But please ask them over at my blog (<a href="http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/" rel="nofollow">http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/</a>) where i may recognize it faster. I&#8217;ve seen your comment here just by coincidence. Thank you!</p>
<p>Best regards<br />
- Stotti</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Parshikov</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-180696</link>
		<dc:creator>Alex Parshikov</dc:creator>
		<pubDate>Fri, 04 Sep 2009 10:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-180696</guid>
		<description>Stotti,

Your effort is appreciated but the method doesn&#039;t work.  Could it be that the password is salted somehow?  I noticed that your generator gives a different hash from the one I see in my testing installation - for the same password string.  That&#039;s what lead me to think of the salt issue.

My test installation does have modified strings on following lines:

define(&#039;AUTH_KEY&#039;, &#039;put your unique phrase here&#039;); 
define(&#039;SECURE_AUTH_KEY&#039;, &#039;put your unique phrase here&#039;);
define(&#039;LOGGED_IN_KEY&#039;, &#039;put your unique phrase here&#039;); 

Is that the issue?

Thanks.
- Alex</description>
		<content:encoded><![CDATA[<p>Stotti,</p>
<p>Your effort is appreciated but the method doesn&#8217;t work.  Could it be that the password is salted somehow?  I noticed that your generator gives a different hash from the one I see in my testing installation &#8211; for the same password string.  That&#8217;s what lead me to think of the salt issue.</p>
<p>My test installation does have modified strings on following lines:</p>
<p>define(&#8216;AUTH_KEY&#8217;, &#8216;put your unique phrase here&#8217;);<br />
define(&#8216;SECURE_AUTH_KEY&#8217;, &#8216;put your unique phrase here&#8217;);<br />
define(&#8216;LOGGED_IN_KEY&#8217;, &#8216;put your unique phrase here&#8217;); </p>
<p>Is that the issue?</p>
<p>Thanks.<br />
- Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darren</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-180585</link>
		<dc:creator>Darren</dc:creator>
		<pubDate>Sat, 29 Aug 2009 12:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-180585</guid>
		<description>Thank You for posting this!  This helped!</description>
		<content:encoded><![CDATA[<p>Thank You for posting this!  This helped!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geeknoob&#8217;s Small Spot &#187; Wordpress + WAMP</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-180447</link>
		<dc:creator>Geeknoob&#8217;s Small Spot &#187; Wordpress + WAMP</dc:creator>
		<pubDate>Wed, 19 Aug 2009 04:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-180447</guid>
		<description>[...] own permalink URL) and eventually uploaded to our server.  I imported to the DB (via PHPMyAdmin), reset the WP admin password, and copied the files over.  Well, low and behold, it only worked in the &#8220;Default&#8221; [...]</description>
		<content:encoded><![CDATA[<p>[...] own permalink URL) and eventually uploaded to our server.  I imported to the DB (via PHPMyAdmin), reset the WP admin password, and copied the files over.  Well, low and behold, it only worked in the &#8220;Default&#8221; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stotti.blog()</title>
		<link>http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin/comment-page-1#comment-180283</link>
		<dc:creator>stotti.blog()</dc:creator>
		<pubDate>Thu, 06 Aug 2009 19:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin#comment-180283</guid>
		<description>&lt;strong&gt;New Wordpress password hasher tool...&lt;/strong&gt;

This time just a quick post as I am in a hurry. Ever wondered how to change your Wordpress password in case you have forgotten it? In early versions Wordpress used the MD5 hashing algorithm to &#8220;encrypt&#8221; the passwords of a user. Nowadays Wor...</description>
		<content:encoded><![CDATA[<p><strong>New Wordpress password hasher tool&#8230;</strong></p>
<p>This time just a quick post as I am in a hurry. Ever wondered how to change your Wordpress password in case you have forgotten it? In early versions Wordpress used the MD5 hashing algorithm to &#8220;encrypt&#8221; the passwords of a user. Nowadays Wor&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
