<?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>Free Technology Tutorials &#187; Reset password</title>
	<atom:link href="http://educhalk.org/blog/tag/reset-password/feed/" rel="self" type="application/rss+xml" />
	<link>http://educhalk.org/blog</link>
	<description>Technology Made Easy</description>
	<lastBuildDate>Wed, 16 May 2012 15:57:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-RC1-20950</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Resetting Your WordPress Password</title>
		<link>http://educhalk.org/blog/2009/10/resetting-your-wordpress-password/</link>
		<comments>http://educhalk.org/blog/2009/10/resetting-your-wordpress-password/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 18:44:42 +0000</pubDate>
		<dc:creator>figaro</dc:creator>
				<category><![CDATA[From WordPress Codex -- GPL]]></category>
		<category><![CDATA[Locked out of WP]]></category>
		<category><![CDATA[From WordPress Codex]]></category>
		<category><![CDATA[Released Under GPL]]></category>
		<category><![CDATA[Reset password]]></category>

		<guid isPermaLink="false">http://educhalk.org/blog/?p=446</guid>
		<description><![CDATA[TweetNote: The following is made available under GPL from http://codex.wordpress.org/GPL. It may be edited a little from its original form, but probably not a lot. There is no guarantee this information is accurate&#8230;use at your own risk. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; To change your password in WordPress v2.7 or later: 1. In the Admin Panel, go to USERS [...]
Related posts:<ol>
<li><a href='http://educhalk.org/blog/2009/09/easy-5-step-wordpress-install/' rel='bookmark' title='Easy 5-Step WordPress Install'>Easy 5-Step WordPress Install</a> <small>TweetNote: The following is made available under GPL from http://codex.wordpress.org/GPL....</small></li>
<li><a href='http://educhalk.org/blog/2009/10/common-wordpress-installation-problems-and-how-to-fix-them/' rel='bookmark' title='Common WordPress Installation Problems &#8212; And How to Fix Them!'>Common WordPress Installation Problems &#8212; And How to Fix Them!</a> <small>TweetNote: The following is made available under GPL from http://codex.wordpress.org/GPL....</small></li>
<li><a href='http://educhalk.org/blog/2009/10/overview-of-wordpress-2-8-database-tables/' rel='bookmark' title='Overview of WordPress 2.8 Database Tables'>Overview of WordPress 2.8 Database Tables</a> <small>TweetNote: The following is made available under GPL from http://codex.wordpress.org/GPL....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton446" class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Feduchalk.org%2Fblog%2F2009%2F10%2Fresetting-your-wordpress-password%2F&amp;text=Resetting%20Your%20WordPress%20Password&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Feduchalk.org%2Fblog%2F2009%2F10%2Fresetting-your-wordpress-password%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://educhalk.org/blog/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p><em>Note: The following is made available under GPL from http://codex.wordpress.org/GPL. It may be edited a little from its original form, but probably not a lot. There is no guarantee this information is accurate&#8230;use at your own risk.</em><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>To change your password in WordPress v2.7 or later:</strong></p>
<p>1. In the Admin Panel, go to USERS<br />
2. Click on your username in the list to edit<br />
3. In the Edit User screen, scroll down to the New Password section and type in a new password in the two boxes provided. The strength box will show how good (strong) your password is.<br />
4. Click the UPDATE USER button</p>
<p>Your new password takes effect immediately.</p>
<p><strong>Using the automatic emailer<br />
</strong><br />
If you know your username and the email account in your profile, you can use the &#8220;lost password&#8221; feature of WordPress.</p>
<p>* Go to your WordPress Login page (something like http://yoursite.com/wordpress/wp-admin.php)<br />
* Click on lost password<br />
* You will be taken to a page to put in some details. Enter your user name and the email address on file for that account.<br />
* Wait happily as your new password is emailed to you.<br />
* Once you get your new password, login and change it to something you can remember on your profile page.</p>
<p><strong>Through MySQL Command Line<br />
</strong><br />
1. Get an MD5 hash of your password.<br />
* Visit md5 Hash Generator, or&#8230;<br />
* Create a key with Python. or&#8230;<br />
* On Unix: echo -n &lt;password&gt; | md5sum<br />
2. &#8220;mysql -u root -p&#8221; (log in to MySQL)<br />
3. enter your mysql password<br />
4. &#8220;use (name-of-database)&#8221; (select WordPress database)<br />
5. &#8220;show tables;&#8221; (you&#8217;re looking for a table name with &#8220;users&#8221; at the end)<br />
6. &#8220;SELECT ID, user_login, user_pass FROM (name-of-table-you-found)&#8221; (this gives you an idea of what&#8217;s going on inside)<br />
7. &#8220;UPDATE (name-of-table-you-found) SET user_pass=&#8221;(MD5-string-you-made)&#8221; WHERE ID = (id#-of-account-you-are-reseting-password-for)&#8221; (actually changes the password)<br />
8. &#8220;SELECT ID, user_login, user_pass FROM (name-of-table-you-found)&#8221; (confirm that it was changed)<br />
9. (type Control-D, to exit mysql client)</p>
<p>Note if you have a recent version of MySQL (version 5.x?) you can have MySQL compute the MD5 hash for you.</p>
<p>1. Skip step 1. above.<br />
2. Do the following for step 7. instead.<br />
* &#8220;UPDATE (name-of-table-you-found) SET user_pass = MD5(&#8216;&#8221;(new-password)&#8221;&#8216;) WHERE ID = (id#-of-account-you-are-reseting-password-for)&#8221; (actually changes the password)</p>
<p><strong>Through phpMyAdmin</strong></p>
<p>See the following video:</p>
<p><a href="http://educhalk.org/blog/how-to-change-your-wordpress-blog-password-using-phpmyadmin/">http://educhalk.org/blog/how-to-change-your-wordpress-blog-password-using-phpmyadmin/</a></p>
<p>Related posts:<ol>
<li><a href='http://educhalk.org/blog/2009/09/easy-5-step-wordpress-install/' rel='bookmark' title='Easy 5-Step WordPress Install'>Easy 5-Step WordPress Install</a> <small>TweetNote: The following is made available under GPL from http://codex.wordpress.org/GPL....</small></li>
<li><a href='http://educhalk.org/blog/2009/10/common-wordpress-installation-problems-and-how-to-fix-them/' rel='bookmark' title='Common WordPress Installation Problems &#8212; And How to Fix Them!'>Common WordPress Installation Problems &#8212; And How to Fix Them!</a> <small>TweetNote: The following is made available under GPL from http://codex.wordpress.org/GPL....</small></li>
<li><a href='http://educhalk.org/blog/2009/10/overview-of-wordpress-2-8-database-tables/' rel='bookmark' title='Overview of WordPress 2.8 Database Tables'>Overview of WordPress 2.8 Database Tables</a> <small>TweetNote: The following is made available under GPL from http://codex.wordpress.org/GPL....</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://educhalk.org/blog/2009/10/resetting-your-wordpress-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

