<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"

	>
<channel>
	<title>Comments on: How to Make the WordPress Login Cookie Last Longer Than Two Weeks</title>
	<atom:link href="/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/feed/" rel="self" type="application/rss+xml" />
	<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/</link>
	<description>Tips and tricks to get technology to work for you, by Michael Boyd Clark</description>
	<lastBuildDate>Sat, 20 Feb 2016 14:14:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Manster</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-22508</link>
		<dc:creator><![CDATA[Manster]]></dc:creator>
		<pubDate>Fri, 06 Jan 2012 17:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-22508</guid>
		<description><![CDATA[On wordpress 3.3.1 you will have to go to line 643 under pluggable.php]]></description>
		<content:encoded><![CDATA[<p>On wordpress 3.3.1 you will have to go to line 643 under pluggable.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-21409</link>
		<dc:creator><![CDATA[Rich]]></dc:creator>
		<pubDate>Mon, 07 Nov 2011 16:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-21409</guid>
		<description><![CDATA[Great! this has been bugging me for ages.  Thanks!]]></description>
		<content:encoded><![CDATA[<p>Great! this has been bugging me for ages.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Clark</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-18938</link>
		<dc:creator><![CDATA[Michael Clark]]></dc:creator>
		<pubDate>Tue, 12 Jul 2011 17:08:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-18938</guid>
		<description><![CDATA[Josh, Sure you could make the expiration value fairly short. But if you make it too short, you won&#039;t be able to do anything since you&#039;ll always have to be logging in. And yes, it is a universal setting for all users. You could replace the code (I wonder if it has plugin hooks in WP 3.2) so that admin users are longer than authors. Realistically though, you&#039;re probably better off leaving the login cookie at two weeks. Or maybe adding in additional security, such as limiting IP addresses that can log in, or simply logging what users are doing.]]></description>
		<content:encoded><![CDATA[<p>Josh, Sure you could make the expiration value fairly short. But if you make it too short, you won&#8217;t be able to do anything since you&#8217;ll always have to be logging in. And yes, it is a universal setting for all users. You could replace the code (I wonder if it has plugin hooks in WP 3.2) so that admin users are longer than authors. Realistically though, you&#8217;re probably better off leaving the login cookie at two weeks. Or maybe adding in additional security, such as limiting IP addresses that can log in, or simply logging what users are doing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-18932</link>
		<dc:creator><![CDATA[Josh]]></dc:creator>
		<pubDate>Tue, 12 Jul 2011 15:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-18932</guid>
		<description><![CDATA[Is it possible that this could work in the other direction?  And is this a universal setting for all users, or can specific user timeout periods be laid out in this file?]]></description>
		<content:encoded><![CDATA[<p>Is it possible that this could work in the other direction?  And is this a universal setting for all users, or can specific user timeout periods be laid out in this file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Clark</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-18610</link>
		<dc:creator><![CDATA[Michael Clark]]></dc:creator>
		<pubDate>Thu, 23 Jun 2011 12:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-18610</guid>
		<description><![CDATA[I&#039;d guess you may be able to write a plugin that would change the login cookie. I&#039;ve never played with manipulating cookies before, nor have I  looked in the hooks that are available within WordPress for cookie manipulation. Sorry I can&#039;t be of more help. You&#039;re right though, it may be possible. To be honest though, I don&#039;t quite understand what problem you&#039;d be addressing by doing this. What&#039;s wrong with requiring a new login?]]></description>
		<content:encoded><![CDATA[<p>I&#8217;d guess you may be able to write a plugin that would change the login cookie. I&#8217;ve never played with manipulating cookies before, nor have I  looked in the hooks that are available within WordPress for cookie manipulation. Sorry I can&#8217;t be of more help. You&#8217;re right though, it may be possible. To be honest though, I don&#8217;t quite understand what problem you&#8217;d be addressing by doing this. What&#8217;s wrong with requiring a new login?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-18608</link>
		<dc:creator><![CDATA[Jake]]></dc:creator>
		<pubDate>Thu, 23 Jun 2011 05:00:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-18608</guid>
		<description><![CDATA[Hi Michael, I was thinking that if i could read the cookie, store it&#039;s contents in a variable, delete the existing cookie, and set a new cookie with details from the variable and with an extended expiry date, it may work? Right now, I&#039;m trying to figure out how to read the contents of the cookie, and get them to echo out just to see what it puts out. Is there a function i need to call or is all the cookie information stored in a variable already?]]></description>
		<content:encoded><![CDATA[<p>Hi Michael, I was thinking that if i could read the cookie, store it&#8217;s contents in a variable, delete the existing cookie, and set a new cookie with details from the variable and with an extended expiry date, it may work? Right now, I&#8217;m trying to figure out how to read the contents of the cookie, and get them to echo out just to see what it puts out. Is there a function i need to call or is all the cookie information stored in a variable already?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Clark</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-18607</link>
		<dc:creator><![CDATA[Michael Clark]]></dc:creator>
		<pubDate>Thu, 23 Jun 2011 04:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-18607</guid>
		<description><![CDATA[Hi Jake, No, that is not possible. It&#039;s just the way that cookies work. If you look at your cookies in your browser you&#039;ll see the expiration date. I don&#039; know how each browser stores that information. It might be possible to manually tweak the expiration date of a cookie, but that&#039;s a hassle.

It would be a major security problem if a web site could manipulate cookies without having to set them again. And if you are extending the amount of time a WordPress login cookie is valid for, you should want your user to have to login with their username and password.]]></description>
		<content:encoded><![CDATA[<p>Hi Jake, No, that is not possible. It&#8217;s just the way that cookies work. If you look at your cookies in your browser you&#8217;ll see the expiration date. I don&#8217; know how each browser stores that information. It might be possible to manually tweak the expiration date of a cookie, but that&#8217;s a hassle.</p>
<p>It would be a major security problem if a web site could manipulate cookies without having to set them again. And if you are extending the amount of time a WordPress login cookie is valid for, you should want your user to have to login with their username and password.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-18606</link>
		<dc:creator><![CDATA[Jake]]></dc:creator>
		<pubDate>Thu, 23 Jun 2011 04:10:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-18606</guid>
		<description><![CDATA[Is there anyway to extend the expiry date in the cookie without having to get the user to log back in?]]></description>
		<content:encoded><![CDATA[<p>Is there anyway to extend the expiry date in the cookie without having to get the user to log back in?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joy</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-18558</link>
		<dc:creator><![CDATA[Joy]]></dc:creator>
		<pubDate>Wed, 08 Jun 2011 20:39:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-18558</guid>
		<description><![CDATA[This is a great tip.  It is definitely annoying to have to re-login so often.  Did the recent update to Wordpress (version 3+) address this issue.  I simply save/store my passwords on the PC so it&#039;s easy to just log back in when it prompts you, but I&#039;m glad to now know that I can adjust the setting to delay &quot;timeouts&quot;.]]></description>
		<content:encoded><![CDATA[<p>This is a great tip.  It is definitely annoying to have to re-login so often.  Did the recent update to WordPress (version 3+) address this issue.  I simply save/store my passwords on the PC so it&#8217;s easy to just log back in when it prompts you, but I&#8217;m glad to now know that I can adjust the setting to delay &#8220;timeouts&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Merna J</title>
		<link>/2008/06/30/how-to-make-the-wordpress-login-cookie-last-longer-than-two-weeks/comment-page-1/#comment-18535</link>
		<dc:creator><![CDATA[Merna J]]></dc:creator>
		<pubDate>Sat, 04 Jun 2011 08:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.planetmike.com/?p=729#comment-18535</guid>
		<description><![CDATA[Great article, thanks!

Many will find this a security issue, It however depends on your blogs popularity and damage it can be done if someone unauthorized gets access. Not that many strangers will actually sit in front of your private computer. There is one bad thing about it tho, if you have a unique password for your WordPress admins page, you will most likely forget it in a while if you haven&#039;t been asked to type it in.

Merna J
Gothenburg, Sweden]]></description>
		<content:encoded><![CDATA[<p>Great article, thanks!</p>
<p>Many will find this a security issue, It however depends on your blogs popularity and damage it can be done if someone unauthorized gets access. Not that many strangers will actually sit in front of your private computer. There is one bad thing about it tho, if you have a unique password for your WordPress admins page, you will most likely forget it in a while if you haven&#8217;t been asked to type it in.</p>
<p>Merna J<br />
Gothenburg, Sweden</p>
]]></content:encoded>
	</item>
</channel>
</rss>
