<?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 for devel.kostdoktorn.se</title>
	<atom:link href="http://devel.kostdoktorn.se/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://devel.kostdoktorn.se</link>
	<description>Wordpress odds and ends</description>
	<lastBuildDate>Wed, 10 Mar 2010 19:09:16 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Cache Translation Object by Viktvaktarna</title>
		<link>http://devel.kostdoktorn.se/cache-translation-object/comment-page-1#comment-44</link>
		<dc:creator>Viktvaktarna</dc:creator>
		<pubDate>Wed, 10 Mar 2010 19:09:16 +0000</pubDate>
		<guid isPermaLink="false">http://devel.kostdoktorn.se/?page_id=21#comment-44</guid>
		<description>Fin sida, hittade den på Bing. Har gjort ett bokmärke och kommer att komma tillbaka. :)</description>
		<content:encoded><![CDATA[<p>Fin sida, hittade den på Bing. Har gjort ett bokmärke och kommer att komma tillbaka. <img src='http://devel.kostdoktorn.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cache Translation Object by Sofia Norén</title>
		<link>http://devel.kostdoktorn.se/cache-translation-object/comment-page-1#comment-42</link>
		<dc:creator>Sofia Norén</dc:creator>
		<pubDate>Mon, 08 Mar 2010 10:48:29 +0000</pubDate>
		<guid isPermaLink="false">http://devel.kostdoktorn.se/?page_id=21#comment-42</guid>
		<description>Hit kommer jag definitivt att komma tillbaka.</description>
		<content:encoded><![CDATA[<p>Hit kommer jag definitivt att komma tillbaka.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The WordPress Localization Performance Battle by Controlled Labs White Flood</title>
		<link>http://devel.kostdoktorn.se/the-wordpress-localization-performance-battle/comment-page-1#comment-41</link>
		<dc:creator>Controlled Labs White Flood</dc:creator>
		<pubDate>Wed, 03 Mar 2010 09:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://devel.kostdoktorn.se/?p=19#comment-41</guid>
		<description>Hey, thanks for the tip! The site I have here is my first one based off of Wordpress but it&#039;s taking me a while to really figure it all out... I can&#039;t keep all these options, plugins, and themes straight! But I&#039;ll get it down it sooner or later, or so I hope. I guess it shouldn&#039;t take this long to setup next time either. Anyway, nice blog - I&#039;m subscribed to your RSS feed now so I&#039;ll be checking in regularly!</description>
		<content:encoded><![CDATA[<p>Hey, thanks for the tip! The site I have here is my first one based off of Wordpress but it's taking me a while to really figure it all out... I can't keep all these options, plugins, and themes straight! But I'll get it down it sooner or later, or so I hope. I guess it shouldn't take this long to setup next time either. Anyway, nice blog - I'm subscribed to your RSS feed now so I'll be checking in regularly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limit Login Attempts by Erik</title>
		<link>http://devel.kostdoktorn.se/limit-login-attempts/comment-page-1#comment-40</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Sun, 28 Feb 2010 02:04:59 +0000</pubDate>
		<guid isPermaLink="false">http://devel-test.kostdoktorn.se/?page_id=3#comment-40</guid>
		<description>Hey, 
I use wordpress mu(2.9.1.1) and I just spent some time reworking the plugin(1.4.1) to be more MU friendly. I will mention that this plugin works FANTASTICLY with wordpress mu 2.9.1.1.... Other Mu users may find this usefull... A couple things...

first, I set the variables at the top of the plugins .php file i wanted to be global. The file is very well noted by the author, OMG thank you! Very easy to control what variables the plugin activates with thanks to great coding and thoughtful notation.

Then I changed the function that mails lockout notification to the administrator, so that it will email the super site admin(me) rather than that particular sub blogs admin.. what i did was modify the get_option in line394 to say:
@wp_mail(get_site_option(&#039;admin_email&#039;), $subject, $message);


Then, i changed the code where it constructs the plugins dashboard submenu. I changed it so that it would show under the site admin menu instead of settings. that way only the super site admin can see it and not the sub blog administrators. I changed Line 607 to:
add_submenu_page(&#039;wpmu-admin.php&#039;, &#039;Limit Login Attempts&#039;, &#039;Limit Login Attempts&#039;, 10, &#039;limit-login-attempts&#039;, &#039;limit_login_option_page&#039;);

Then I used the plugin manager to auto-activate the plugin for all users sitewide.. that way any newly generated blogs will automatically activate the plugin with the settings I want, and having moved the menu, users cant modify them.

It is important to note, that if the plugins menu is accessable to your users, they can deactivate the plugin. Rather than attempt to solve this, i will just hope that my users are not that stupid.

hope this helps...

oh, the settings I changed to my likeing were; 
login attempts moved to 5,
lockout time decreased to 15 min.
lockout log settings changed to &#039;log, email&#039;
and notify email after 1 lockout</description>
		<content:encoded><![CDATA[<p>Hey,<br />
I use wordpress mu(2.9.1.1) and I just spent some time reworking the plugin(1.4.1) to be more MU friendly. I will mention that this plugin works FANTASTICLY with wordpress mu 2.9.1.1.... Other Mu users may find this usefull... A couple things...</p>
<p>first, I set the variables at the top of the plugins .php file i wanted to be global. The file is very well noted by the author, OMG thank you! Very easy to control what variables the plugin activates with thanks to great coding and thoughtful notation.</p>
<p>Then I changed the function that mails lockout notification to the administrator, so that it will email the super site admin(me) rather than that particular sub blogs admin.. what i did was modify the get_option in line394 to say:<br />
@wp_mail(get_site_option('admin_email'), $subject, $message);</p>
<p>Then, i changed the code where it constructs the plugins dashboard submenu. I changed it so that it would show under the site admin menu instead of settings. that way only the super site admin can see it and not the sub blog administrators. I changed Line 607 to:<br />
add_submenu_page('wpmu-admin.php', 'Limit Login Attempts', 'Limit Login Attempts', 10, 'limit-login-attempts', 'limit_login_option_page');</p>
<p>Then I used the plugin manager to auto-activate the plugin for all users sitewide.. that way any newly generated blogs will automatically activate the plugin with the settings I want, and having moved the menu, users cant modify them.</p>
<p>It is important to note, that if the plugins menu is accessable to your users, they can deactivate the plugin. Rather than attempt to solve this, i will just hope that my users are not that stupid.</p>
<p>hope this helps...</p>
<p>oh, the settings I changed to my likeing were;<br />
login attempts moved to 5,<br />
lockout time decreased to 15 min.<br />
lockout log settings changed to 'log, email'<br />
and notify email after 1 lockout</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limit Login Attempts by Alla Taomoto</title>
		<link>http://devel.kostdoktorn.se/limit-login-attempts/comment-page-1#comment-39</link>
		<dc:creator>Alla Taomoto</dc:creator>
		<pubDate>Mon, 22 Feb 2010 13:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://devel-test.kostdoktorn.se/?page_id=3#comment-39</guid>
		<description>Though I would&#039;ve loved it much more if you added a relevant video or at least pictures to back up the explanation, I still thought that your write-up quite helpful. It&#039;s usually hard to make a complicated matter seem very easy. I enjoy your weblog and will sign up to your feed so I will not miss anything. Fantastic content</description>
		<content:encoded><![CDATA[<p>Though I would've loved it much more if you added a relevant video or at least pictures to back up the explanation, I still thought that your write-up quite helpful. It's usually hard to make a complicated matter seem very easy. I enjoy your weblog and will sign up to your feed so I will not miss anything. Fantastic content</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limit Login Attempts 2.0beta3 by to-do list</title>
		<link>http://devel.kostdoktorn.se/limit-login-attempts-2-0beta3/comment-page-1#comment-38</link>
		<dc:creator>to-do list</dc:creator>
		<pubDate>Wed, 17 Feb 2010 00:39:02 +0000</pubDate>
		<guid isPermaLink="false">http://devel-test.kostdoktorn.se/?p=9#comment-38</guid>
		<description>Please, can you PM me and tell me few more thinks about this, I am really fan of your blog...</description>
		<content:encoded><![CDATA[<p>Please, can you PM me and tell me few more thinks about this, I am really fan of your blog...</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limit Login Attempts by realesegame</title>
		<link>http://devel.kostdoktorn.se/limit-login-attempts/comment-page-1#comment-37</link>
		<dc:creator>realesegame</dc:creator>
		<pubDate>Fri, 12 Feb 2010 21:49:54 +0000</pubDate>
		<guid isPermaLink="false">http://devel-test.kostdoktorn.se/?page_id=3#comment-37</guid>
		<description>How in work rhis plugin in wordpress 2.9.1?</description>
		<content:encoded><![CDATA[<p>How in work rhis plugin in wordpress 2.9.1?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cache Translation Object v1.2 by Ellen19Bb</title>
		<link>http://devel.kostdoktorn.se/cache-translation-object-v1-2/comment-page-1#comment-36</link>
		<dc:creator>Ellen19Bb</dc:creator>
		<pubDate>Mon, 08 Feb 2010 13:15:45 +0000</pubDate>
		<guid isPermaLink="false">http://devel.kostdoktorn.se/?p=43#comment-36</guid>
		<description>I guess that you really do a great contribution writing your good thought. Now the essay writing services would be able to take it for creating the &lt;a href=&quot;http://quality-papers.com/topics/sociology_essays&quot; rel=&quot;nofollow&quot;&gt;sociology essays writing&lt;/a&gt;. Thus students would buy custom essays easier.</description>
		<content:encoded><![CDATA[<p>I guess that you really do a great contribution writing your good thought. Now the essay writing services would be able to take it for creating the <a href="http://quality-papers.com/topics/sociology_essays" rel="nofollow">sociology essays writing</a>. Thus students would buy custom essays easier.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limit Login Attempts by Daniel Kamp</title>
		<link>http://devel.kostdoktorn.se/limit-login-attempts/comment-page-1#comment-35</link>
		<dc:creator>Daniel Kamp</dc:creator>
		<pubDate>Wed, 20 Jan 2010 09:40:30 +0000</pubDate>
		<guid isPermaLink="false">http://devel-test.kostdoktorn.se/?page_id=3#comment-35</guid>
		<description>Very cool Plugin ! Thanks!</description>
		<content:encoded><![CDATA[<p>Very cool Plugin ! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limit Login Attempts by ds281</title>
		<link>http://devel.kostdoktorn.se/limit-login-attempts/comment-page-1#comment-34</link>
		<dc:creator>ds281</dc:creator>
		<pubDate>Wed, 13 Jan 2010 20:04:11 +0000</pubDate>
		<guid isPermaLink="false">http://devel-test.kostdoktorn.se/?page_id=3#comment-34</guid>
		<description>Would love better support for MU if possible!  Loving what this plugin provides so far on the main blog!  Thanks for your work.</description>
		<content:encoded><![CDATA[<p>Would love better support for MU if possible!  Loving what this plugin provides so far on the main blog!  Thanks for your work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
