<?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: Howto Reset The Admin Password in Django</title>
	<atom:link href="http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/feed" rel="self" type="application/rss+xml" />
	<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html</link>
	<description>Stuff that catches a Passionate Programmer's Eye</description>
	<lastBuildDate>Tue, 16 Mar 2010 15:30:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ehemminger Dot Org &#187; Blog Archive &#187; links for 2010-02-28</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-136405</link>
		<dc:creator>Ehemminger Dot Org &#187; Blog Archive &#187; links for 2010-02-28</dc:creator>
		<pubDate>Mon, 01 Mar 2010 08:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-136405</guid>
		<description>[...] Howto Reset The Admin Password in Django &#124; Coder&#039;s Eye (tags: django) [...]</description>
		<content:encoded><![CDATA[<p>[...] Howto Reset The Admin Password in Django | Coder&#39;s Eye (tags: django) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: billschen</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-136389</link>
		<dc:creator>billschen</dc:creator>
		<pubDate>Tue, 22 Dec 2009 07:41:13 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-136389</guid>
		<description>thank you very much! it&#039;s helpful!</description>
		<content:encoded><![CDATA[<p>thank you very much! it&#8217;s helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pascal</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-136385</link>
		<dc:creator>Pascal</dc:creator>
		<pubDate>Wed, 02 Dec 2009 16:02:50 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-136385</guid>
		<description>Rorys example worked for me. Thank you</description>
		<content:encoded><![CDATA[<p>Rorys example worked for me. Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafa</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-136372</link>
		<dc:creator>Rafa</dc:creator>
		<pubDate>Mon, 24 Aug 2009 09:31:54 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-136372</guid>
		<description>rorys, thanks for your contribution, it worked for me. thanks bruce too :)</description>
		<content:encoded><![CDATA[<p>rorys, thanks for your contribution, it worked for me. thanks bruce too <img src='http://coderseye.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rorys</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-136364</link>
		<dc:creator>rorys</dc:creator>
		<pubDate>Thu, 02 Jul 2009 16:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-136364</guid>
		<description>This didn&#039;t work for me as described above, but did work if I did the following:

&gt;&gt;&gt; from django.contrib.auth.models import User
&gt;&gt;&gt; users = User.objects.all()
&gt;&gt;&gt; u = users[0]
&gt;&gt;&gt; u.set_password(&#039;whatever&#039;)
&gt;&gt;&gt; u.save()

Perhaps this is an issue with the newest version of Django? Not sure. but hopefully that will be helpful to someone else.

thx</description>
		<content:encoded><![CDATA[<p>This didn&#8217;t work for me as described above, but did work if I did the following:</p>
<p>&gt;&gt;&gt; from django.contrib.auth.models import User<br />
&gt;&gt;&gt; users = User.objects.all()<br />
&gt;&gt;&gt; u = users[0]<br />
&gt;&gt;&gt; u.set_password(&#8216;whatever&#8217;)<br />
&gt;&gt;&gt; u.save()</p>
<p>Perhaps this is an issue with the newest version of Django? Not sure. but hopefully that will be helpful to someone else.</p>
<p>thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trailblazer</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-111014</link>
		<dc:creator>trailblazer</dc:creator>
		<pubDate>Sat, 25 Oct 2008 06:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-111014</guid>
		<description>thanks a lot. I&#039;m new to django. I&#039;ve created site set some silly password and forgot. I didn&#039;t even remember I&#039;ve created something like super user. It was only when I read from second tutorial on django site that I came to know about it.</description>
		<content:encoded><![CDATA[<p>thanks a lot. I&#8217;m new to django. I&#8217;ve created site set some silly password and forgot. I didn&#8217;t even remember I&#8217;ve created something like super user. It was only when I read from second tutorial on django site that I came to know about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerard</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-79655</link>
		<dc:creator>Gerard</dc:creator>
		<pubDate>Fri, 15 Aug 2008 15:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-79655</guid>
		<description>Cudo&#039;s!!!!

Is this useful or what! I mean am I stupid or what .. ;-)

Regards,

Gerard</description>
		<content:encoded><![CDATA[<p>Cudo&#8217;s!!!!</p>
<p>Is this useful or what! I mean am I stupid or what .. <img src='http://coderseye.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Regards,</p>
<p>Gerard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed W</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-63823</link>
		<dc:creator>Ed W</dc:creator>
		<pubDate>Sat, 24 May 2008 00:25:27 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-63823</guid>
		<description>You are a godsend!  That worked and it saved my bacon.
Well, at least it saved me from having to painfully re-install
the app.  (Installing the app was PAINFUL.)</description>
		<content:encoded><![CDATA[<p>You are a godsend!  That worked and it saved my bacon.<br />
Well, at least it saved me from having to painfully re-install<br />
the app.  (Installing the app was PAINFUL.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unixmonkey</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-56908</link>
		<dc:creator>Unixmonkey</dc:creator>
		<pubDate>Fri, 18 Apr 2008 17:08:49 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-56908</guid>
		<description>Saved me the hassle of firing up another django app, setting the admin password, and copying over the sha1 hash from one database to another.

Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Saved me the hassle of firing up another django app, setting the admin password, and copying over the sha1 hash from one database to another.</p>
<p>Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Chapman</title>
		<link>http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html/comment-page-1#comment-41653</link>
		<dc:creator>Ben Chapman</dc:creator>
		<pubDate>Thu, 14 Feb 2008 15:20:32 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/howto-reset-the-admin-password-in-django.html#comment-41653</guid>
		<description>Thanks! Worked perfectly.</description>
		<content:encoded><![CDATA[<p>Thanks! Worked perfectly.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->