<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"	>
<channel>
	<title>Comments on: New Wordpress password hasher tool</title>
	<atom:link href="http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/</link>
	<description>technology, code poetry and utter drivels - temporarily plain white.</description>
	<lastBuildDate>Wed, 10 Feb 2010 03:41:50 +0100</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Need to reset a Wordpress password in database? &#124; Wordpress Tips and Tricks!</title>
		<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/comment-page-1/#comment-17104</link>
		<dc:creator>Need to reset a Wordpress password in database? &#124; Wordpress Tips and Tricks!</dc:creator>
		<pubDate>Tue, 02 Feb 2010 09:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=477#comment-17104</guid>
		<description>[...] the other day, comes in handy if you need to reset a wordpress password in database. Check out the &#8220;New Wordpress password hasher tool&#8221;. It used to be md5() but that has changed. When you move and alter Wordpress blogs you sometime [...]</description>
		<content:encoded><![CDATA[<p>[...] the other day, comes in handy if you need to reset a wordpress password in database. Check out the &#8220;New Wordpress password hasher tool&#8221;. It used to be md5() but that has changed. When you move and alter Wordpress blogs you sometime [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stotti</title>
		<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/comment-page-1/#comment-16460</link>
		<dc:creator>stotti</dc:creator>
		<pubDate>Mon, 17 Aug 2009 16:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=477#comment-16460</guid>
		<description>I&#039;m glad to help, Alan. Thanks for your feedback!</description>
		<content:encoded><![CDATA[<p>I&#8217;m glad to help, Alan. Thanks for your feedback!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/comment-page-1/#comment-16459</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Mon, 17 Aug 2009 16:03:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=477#comment-16459</guid>
		<description>Thanks for implementing this for the rest of us, it worked great. :)</description>
		<content:encoded><![CDATA[<p>Thanks for implementing this for the rest of us, it worked great. <img src='http://www.stottmeister.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stotti</title>
		<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/comment-page-1/#comment-16449</link>
		<dc:creator>stotti</dc:creator>
		<pubDate>Fri, 31 Jul 2009 13:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=477#comment-16449</guid>
		<description>Did this help you, Dipesh?

Does someone else have a comment on this? Tell us how you would do it!</description>
		<content:encoded><![CDATA[<p>Did this help you, Dipesh?</p>
<p>Does someone else have a comment on this? Tell us how you would do it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stotti</title>
		<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/comment-page-1/#comment-16447</link>
		<dc:creator>stotti</dc:creator>
		<pubDate>Thu, 30 Jul 2009 21:10:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=477#comment-16447</guid>
		<description>Hi Dipesh,

thanks for your comment.

So you want to migrate the users of Wordpress to Joomla (continously perhaps). Unluckily you cannot convert the Wordpress users&#039; passwords to their plaintext values and then reencode them by MD5 for Joomla. They are hashed, so you&#039;ve got bad luck there. Of course you could try to crack them but they&#039;re salt-hashed so there is less chance you could achieve that.

BUT: you could adopt the PHPASS algorithm for use in Joomla! That should not be that hard. So you can simply change 1) the password hashing in the Joomla registration process and 2) the password check of Joomla.
Then migrate all passwords from Wordpress to Joomla and you&#039;re done.


Plan B: convert the password hashing for Wordpress from PHPASS back to MD5 and you save yourself from the hassle of changing Joomla code. But you must live with less security of your Wordpress installation then.</description>
		<content:encoded><![CDATA[<p>Hi Dipesh,</p>
<p>thanks for your comment.</p>
<p>So you want to migrate the users of Wordpress to Joomla (continously perhaps). Unluckily you cannot convert the Wordpress users&#8217; passwords to their plaintext values and then reencode them by MD5 for Joomla. They are hashed, so you&#8217;ve got bad luck there. Of course you could try to crack them but they&#8217;re salt-hashed so there is less chance you could achieve that.</p>
<p>BUT: you could adopt the PHPASS algorithm for use in Joomla! That should not be that hard. So you can simply change 1) the password hashing in the Joomla registration process and 2) the password check of Joomla.<br />
Then migrate all passwords from Wordpress to Joomla and you&#8217;re done.</p>
<p>Plan B: convert the password hashing for Wordpress from PHPASS back to MD5 and you save yourself from the hassle of changing Joomla code. But you must live with less security of your Wordpress installation then.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dipesh</title>
		<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/comment-page-1/#comment-16446</link>
		<dc:creator>Dipesh</dc:creator>
		<pubDate>Thu, 30 Jul 2009 17:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=477#comment-16446</guid>
		<description>Hi,

I want to convert add all the wordpress user to joomla so that they can use their same username and password when they login to new joomla site, so i am getting PHPASS password from wp_users table so how do i convert that to MD5 hash so that i can enter it in joomla user table.

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I want to convert add all the wordpress user to joomla so that they can use their same username and password when they login to new joomla site, so i am getting PHPASS password from wp_users table so how do i convert that to MD5 hash so that i can enter it in joomla user table.</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AnnaHopn</title>
		<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/comment-page-1/#comment-16435</link>
		<dc:creator>AnnaHopn</dc:creator>
		<pubDate>Fri, 03 Jul 2009 15:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=477#comment-16435</guid>
		<description>Greatings, Super post, Need to mark it on Digg
 AnnaHopn</description>
		<content:encoded><![CDATA[<p>Greatings, Super post, Need to mark it on Digg<br />
 AnnaHopn</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MyClickSense.com &#187; New Wordpress password hasher tool // stotti.blog()</title>
		<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/comment-page-1/#comment-16433</link>
		<dc:creator>MyClickSense.com &#187; New Wordpress password hasher tool // stotti.blog()</dc:creator>
		<pubDate>Wed, 01 Jul 2009 12:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=477#comment-16433</guid>
		<description>[...] View post: New Wordpress password hasher tool // stotti.blog() [...]</description>
		<content:encoded><![CDATA[<p>[...] View post: New Wordpress password hasher tool // stotti.blog() [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: XkiD &#124; New Wordpress password hasher tool &#124; blog.xkid.ro</title>
		<link>http://www.stottmeister.com/blog/2009/06/30/new-wordpress-password-hasher-tool/comment-page-1/#comment-16430</link>
		<dc:creator>XkiD &#124; New Wordpress password hasher tool &#124; blog.xkid.ro</dc:creator>
		<pubDate>Tue, 30 Jun 2009 21:26:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=477#comment-16430</guid>
		<description>[...] more from the original source: New Wordpress password hasher tool      Posted in PHP &#124;  Tags: a-new-password, a-quick-post, change-your, encode-it-using, [...]</description>
		<content:encoded><![CDATA[<p>[...] more from the original source: New Wordpress password hasher tool      Posted in PHP |  Tags: a-new-password, a-quick-post, change-your, encode-it-using, [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
