<?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"
	>
<channel>
	<title>Comments on: Add a &#8220;remember me&#8221; checkbox to the login form</title>
	<atom:link href="http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/</link>
	<description></description>
	<pubDate>Sat, 30 Aug 2008 04:33:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Remember Me for logins : [ mkhairul.com ]</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-529943</link>
		<dc:creator>Remember Me for logins : [ mkhairul.com ]</dc:creator>
		<pubDate>Wed, 19 Sep 2007 04:48:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-529943</guid>
		<description>[...] Scriptygoddess - Add a remember me checkbox to the login form [...]</description>
		<content:encoded><![CDATA[<p>[...] Scriptygoddess - Add a remember me checkbox to the login form [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-13285</link>
		<dc:creator>james</dc:creator>
		<pubDate>Thu, 11 Nov 2004 22:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-13285</guid>
		<description>I am in the same boat as Tin.

I modified the code and nothing changed. Everything still works fine, but I am still permanently logged in even after I close my browser.

I am using worpress 1.2.1 

Any ideas?  It would be nice to see a full wp-login.php file from somebody who has managed to make it work.  

This would be great, if I could get it working.

Thanks!</description>
		<content:encoded><![CDATA[<p>I am in the same boat as Tin.</p>
<p>I modified the code and nothing changed. Everything still works fine, but I am still permanently logged in even after I close my browser.</p>
<p>I am using worpress 1.2.1 </p>
<p>Any ideas?  It would be nice to see a full wp-login.php file from somebody who has managed to make it work.  </p>
<p>This would be great, if I could get it working.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stacey</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-13192</link>
		<dc:creator>Stacey</dc:creator>
		<pubDate>Thu, 04 Nov 2004 13:18:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-13192</guid>
		<description>Is there a way to make a "remember me" option for comments?

For some reason it isn't working on my site.</description>
		<content:encoded><![CDATA[<p>Is there a way to make a &#8220;remember me&#8221; option for comments?</p>
<p>For some reason it isn&#8217;t working on my site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tin</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12371</link>
		<dc:creator>Tin</dc:creator>
		<pubDate>Mon, 16 Aug 2004 19:27:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12371</guid>
		<description>hi. for some reason this doesnt work for me. everything runs smoothly but when i close my browser and reopen it, i'm still logged in. i followed all your directions closely. do you have a wp-login.php already prepared so i can download? i'm wondering if i did something wrong with the modifications.</description>
		<content:encoded><![CDATA[<p>hi. for some reason this doesnt work for me. everything runs smoothly but when i close my browser and reopen it, i&#8217;m still logged in. i followed all your directions closely. do you have a wp-login.php already prepared so i can download? i&#8217;m wondering if i did something wrong with the modifications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil Stead</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12263</link>
		<dc:creator>Neil Stead</dc:creator>
		<pubDate>Fri, 30 Jul 2004 16:59:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12263</guid>
		<description>Just discovered that if a user changes their password, WP sets the cookie for the new password - so that it will always be remembered.

I think the easiest solution is to change the code in profile.php so that it just sets a session cookie - the user will have to log back in next time he comes to the site.

Replace:
setcookie('wordpresspass_'.$cookiehash, md5(md5($newuser_pass)), time() + 31536000, COOKIEPATH);

with

setcookie('wordpresspass_'.$cookiehash, md5(md5($newuser_pass)), NULL, COOKIEPATH);

There may be a more elegant way of doing this - by finding out the current expiry date of the cookie, for example, but I don't know how.

Neil.</description>
		<content:encoded><![CDATA[<p>Just discovered that if a user changes their password, WP sets the cookie for the new password - so that it will always be remembered.</p>
<p>I think the easiest solution is to change the code in profile.php so that it just sets a session cookie - the user will have to log back in next time he comes to the site.</p>
<p>Replace:<br />
setcookie(&#8217;wordpresspass_&#8217;.$cookiehash, md5(md5($newuser_pass)), time() + 31536000, COOKIEPATH);</p>
<p>with</p>
<p>setcookie(&#8217;wordpresspass_&#8217;.$cookiehash, md5(md5($newuser_pass)), NULL, COOKIEPATH);</p>
<p>There may be a more elegant way of doing this - by finding out the current expiry date of the cookie, for example, but I don&#8217;t know how.</p>
<p>Neil.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chuguo</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12154</link>
		<dc:creator>chuguo</dc:creator>
		<pubDate>Wed, 14 Jul 2004 14:04:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12154</guid>
		<description>thanks!</description>
		<content:encoded><![CDATA[<p>thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mama Write</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12094</link>
		<dc:creator>Mama Write</dc:creator>
		<pubDate>Thu, 08 Jul 2004 00:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12094</guid>
		<description>&lt;trackback /&gt;&lt;strong&gt;Various WordPress Links&lt;/strong&gt;
Rather than ping ScriptyGoddess multiple times and clog my sideblog with even more WordPress links, I decided to plop 'em all here. I'm going to give WordPress a try again on my course website, since there are various hacks that...</description>
		<content:encoded><![CDATA[<trackback /><strong>Various WordPress Links</strong><br />
Rather than ping ScriptyGoddess multiple times and clog my sideblog with even more WordPress links, I decided to plop &#8216;em all here. I&#8217;m going to give WordPress a try again on my course website, since there are various hacks that&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12079</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 07 Jul 2004 00:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-12079</guid>
		<description>I'm glad my comment about passing NULL could be useful.</description>
		<content:encoded><![CDATA[<p>I&#8217;m glad my comment about passing NULL could be useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Code Novice</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-11992</link>
		<dc:creator>Code Novice</dc:creator>
		<pubDate>Thu, 01 Jul 2004 20:10:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-11992</guid>
		<description>&lt;trackback /&gt;&lt;strong&gt;Bookmarks: MT, WP and Moneymaking Blogs&lt;/strong&gt;
Scriptygoddess continues to post numerous WP&#45;related fixer&#45;uppers with three new offerings:
Adding content to the spam list
Delete all comments via moderation
Add a &apos;remember me&apos; option on login page
David Raynes posted his latest MT ...</description>
		<content:encoded><![CDATA[<trackback /><strong>Bookmarks: MT, WP and Moneymaking Blogs</strong><br />
Scriptygoddess continues to post numerous WP&#45;related fixer&#45;uppers with three new offerings:<br />
Adding content to the spam list<br />
Delete all comments via moderation<br />
Add a &apos;remember me&apos; option on login page<br />
David Raynes posted his latest MT &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-11991</link>
		<dc:creator>david</dc:creator>
		<pubDate>Thu, 01 Jul 2004 19:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/07/01/add-a-remember-me-checkbox-to-the-login-form/#comment-11991</guid>
		<description>Aha I finely figured it out :)</description>
		<content:encoded><![CDATA[<p>Aha I finely figured it out <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.290 seconds -->
