
<?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 ButlerBlog</title>
	<atom:link href="http://butlerblog.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://butlerblog.com</link>
	<description>chad butler&#039;s weblog</description>
	<lastBuildDate>Mon, 20 Feb 2012 12:31:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on WP-Members&#153;  FAQs by aybeniz</title>
		<link>http://butlerblog.com/wp-members/wp-members-faqs/comment-page-5/#comment-34672</link>
		<dc:creator>aybeniz</dc:creator>
		<pubDate>Mon, 20 Feb 2012 12:31:15 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/?page_id=1076#comment-34672</guid>
		<description>Thank you very much for your reply. I have upgraded to WP-Members 2.7.2 and the problem is solved.</description>
		<content:encoded><![CDATA[<p>Thank you very much for your reply. I have upgraded to WP-Members 2.7.2 and the problem is solved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-Members&#153;  by Luc</title>
		<link>http://butlerblog.com/wp-members/comment-page-9/#comment-34591</link>
		<dc:creator>Luc</dc:creator>
		<pubDate>Sun, 19 Feb 2012 21:10:33 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/wp-members/#comment-34591</guid>
		<description>Hi Chad
Thanks a lot for the quick answer. It indeed seems to be a compatibility problem with another plugin. I made a fresh wp install with the wp members plugin and all works fine now. I&#039;ll add the other plugins one by one and then I&#039;ll see when problems will arise. I&#039;ve got the &quot;user role editor&quot; plugin running. Wp members works fine with that one...
Thanks and cheers</description>
		<content:encoded><![CDATA[<p>Hi Chad<br />
Thanks a lot for the quick answer. It indeed seems to be a compatibility problem with another plugin. I made a fresh wp install with the wp members plugin and all works fine now. I&#8217;ll add the other plugins one by one and then I&#8217;ll see when problems will arise. I&#8217;ve got the &#8220;user role editor&#8221; plugin running. Wp members works fine with that one&#8230;<br />
Thanks and cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-Members&#153;  2.7.2 Bug Fix Release by Chad</title>
		<link>http://butlerblog.com/2012/02/17/wp-members-2-7-2-bug-fix-release/comment-page-1/#comment-34590</link>
		<dc:creator>Chad</dc:creator>
		<pubDate>Sun, 19 Feb 2012 21:04:10 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/?p=1980#comment-34590</guid>
		<description>Hi Richard - I looked at it in IE, FF, and Chrome and I&#039;m not seeing the problem.  Could you email me a screenshot and indicate which plugin version and what WP version?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Richard &#8211; I looked at it in IE, FF, and Chrome and I&#8217;m not seeing the problem.  Could you email me a screenshot and indicate which plugin version and what WP version?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-Members&#153;  FAQs by Chad</title>
		<link>http://butlerblog.com/wp-members/wp-members-faqs/comment-page-5/#comment-34589</link>
		<dc:creator>Chad</dc:creator>
		<pubDate>Sun, 19 Feb 2012 21:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/?page_id=1076#comment-34589</guid>
		<description>It is never a good idea to be editing plugin files directly.  Obviously, in some instances, you might have to if a plugin is not longer supported.  But it is generally a very bad idea to get into this habit.  If you make a direct change to a file in a plugin, that change will be overwritten when you upgrade the plugin.  When upgrades are available, it is a good rule of thumb to upgrade. (NOTE: it is also a good rule to test an upgrade in a testing environment before upgrading a live site.)  When a plugin is upgraded it is generally fixing something.

What version of the plugin are you using?  The problem you are describing was &lt;a href=&quot;http://butlerblog.com/2012/02/15/bugs-and-other-things/&quot; rel=&quot;nofollow&quot;&gt;limited to the 2.7.1 release&lt;/a&gt; and was &lt;a href=&quot;http://butlerblog.com/2012/02/17/wp-members-2-7-2-bug-fix-release/&quot; rel=&quot;nofollow&quot;&gt;fixed in 2.7.2.&lt;/a&gt;  So if you are using 2.7.1, you just need to upgrade.  If you are using 2.7.2, you need to let me know so we can look into why this is a problem.

I do like your solution and although the fix is already in place, it&#039;s similar to a direction that I considered.  I may still change it completely.  However, the problem isn&#039;t exactly because &quot;if the check box is unchecked; it sends the value=&quot;0&quot;.&quot;  It actually sends and empty value &#039;&#039;.  In php, comparison operators can be a little tricky.  The problem is that using &quot;is equal to&quot;, &#039;&#039; == 0 is true.  But these are not identical because 0 is an integer and &#039;&#039; is not.  So I probably should have used the comparison operator &quot;is identical to&quot; or ===.  This would have been false because &#039;&#039; === 0 is false as they are not of the same type (unlike &#039;&#039; == 0, where type does not matter).  Hope that makes sense.</description>
		<content:encoded><![CDATA[<p>It is never a good idea to be editing plugin files directly.  Obviously, in some instances, you might have to if a plugin is not longer supported.  But it is generally a very bad idea to get into this habit.  If you make a direct change to a file in a plugin, that change will be overwritten when you upgrade the plugin.  When upgrades are available, it is a good rule of thumb to upgrade. (NOTE: it is also a good rule to test an upgrade in a testing environment before upgrading a live site.)  When a plugin is upgraded it is generally fixing something.</p>
<p>What version of the plugin are you using?  The problem you are describing was <a href="http://butlerblog.com/2012/02/15/bugs-and-other-things/" rel="nofollow">limited to the 2.7.1 release</a> and was <a href="http://butlerblog.com/2012/02/17/wp-members-2-7-2-bug-fix-release/" rel="nofollow">fixed in 2.7.2.</a>  So if you are using 2.7.1, you just need to upgrade.  If you are using 2.7.2, you need to let me know so we can look into why this is a problem.</p>
<p>I do like your solution and although the fix is already in place, it&#8217;s similar to a direction that I considered.  I may still change it completely.  However, the problem isn&#8217;t exactly because &#8220;if the check box is unchecked; it sends the value=&#8221;0&#8243;.&#8221;  It actually sends and empty value &#8221;.  In php, comparison operators can be a little tricky.  The problem is that using &#8220;is equal to&#8221;, &#8221; == 0 is true.  But these are not identical because 0 is an integer and &#8221; is not.  So I probably should have used the comparison operator &#8220;is identical to&#8221; or ===.  This would have been false because &#8221; === 0 is false as they are not of the same type (unlike &#8221; == 0, where type does not matter).  Hope that makes sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-Members&#153;  2.7.2 Bug Fix Release by Richard</title>
		<link>http://butlerblog.com/2012/02/17/wp-members-2-7-2-bug-fix-release/comment-page-1/#comment-34571</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Sun, 19 Feb 2012 16:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/?p=1980#comment-34571</guid>
		<description>Hi Chad,

Not sure if you remember, but I discussed a text parser issue in another thread back in Oct 2011. If you look at the &#039;forgot password&#039; and &#039;new user&#039; texts here you&#039;ll see what I mean:
http://www.mildnervillorna.se/?page_id=37

At least you&#039;ll see it if you&#039;re using IE9, it doesn&#039;t appear in Chrome and Firefox. Anyway, last time the problem went away when I upgraded to WP-members version 2.6.4. 

Now, I recently moved some of my webs to a different web hotel and then the problem reappeared. Didn&#039;t change anything, just moved the web. I&#039;ve now upgraded to latest version of WP and WP-members, but as you can see the problem is still there.

Any ideas?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Chad,</p>
<p>Not sure if you remember, but I discussed a text parser issue in another thread back in Oct 2011. If you look at the &#8216;forgot password&#8217; and &#8216;new user&#8217; texts here you&#8217;ll see what I mean:<br />
<a href="http://www.mildnervillorna.se/?page_id=37" rel="nofollow">http://www.mildnervillorna.se/?page_id=37</a></p>
<p>At least you&#8217;ll see it if you&#8217;re using IE9, it doesn&#8217;t appear in Chrome and Firefox. Anyway, last time the problem went away when I upgraded to WP-members version 2.6.4. </p>
<p>Now, I recently moved some of my webs to a different web hotel and then the problem reappeared. Didn&#8217;t change anything, just moved the web. I&#8217;ve now upgraded to latest version of WP and WP-members, but as you can see the problem is still there.</p>
<p>Any ideas?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-Members&#153;  FAQs by aybeniz</title>
		<link>http://butlerblog.com/wp-members/wp-members-faqs/comment-page-5/#comment-34559</link>
		<dc:creator>aybeniz</dc:creator>
		<pubDate>Sun, 19 Feb 2012 12:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/?page_id=1076#comment-34559</guid>
		<description>Hi, thank you very much for the WP-Members plug-in. I plan to use it for a site to display primium content only for the members. While learning the plug-in,  i checked  &quot;Holds new registrations for admin approval&quot; option at Manage Options. But then whenever i tried to edit a user and update User, without checking the check box &quot;Deactivate this user?&quot; option turned to &quot;Reactivate this user?&quot; and &quot;Activated?&quot; area of the user turned to &quot;No&quot;. I looked at the file wp-members-admin.php. I found out that if the check box is unchecked; it sends the value=&quot;0&quot; which is the value which has to be send when &quot;Deactivate this user?&quot; is checked.  So &quot;Deactivate this user?&quot; always sends the checked value whether it&#039;s checked or not. To fix this i have made 2  little changes at wp-members-admin.php
					$label  = __( &#039;Deactivate this user?&#039;, &#039;wp-members&#039; );
					$action = 2;  //$action = 1; to$action = 2; at line 118
					break;
and
elseif( $wpmem_activate_user == 2 ) {//$wpmem_activate_user == 1 to $wpmem_activate_user == 2 at line 168
			wpmem_a_deactivate_user( $user_id );
		}
I didn&#039;t define anything for the case $wpmem_activate_user == 0 because if the check box is unchecked everyting should stay the way it was.
I tested it carefully and it works very well now. Since i am very new to php and WordPress, i am not sure if i did something wrong. But i like to think as long as it&#039;s work it should be fine. Maybe there is a better way to fix this but unfortunatelly i could not figure it out by myself  :) If there is a better way, i would like to know about it and correct my code.</description>
		<content:encoded><![CDATA[<p>Hi, thank you very much for the WP-Members plug-in. I plan to use it for a site to display primium content only for the members. While learning the plug-in,  i checked  &#8220;Holds new registrations for admin approval&#8221; option at Manage Options. But then whenever i tried to edit a user and update User, without checking the check box &#8220;Deactivate this user?&#8221; option turned to &#8220;Reactivate this user?&#8221; and &#8220;Activated?&#8221; area of the user turned to &#8220;No&#8221;. I looked at the file wp-members-admin.php. I found out that if the check box is unchecked; it sends the value=&#8221;0&#8243; which is the value which has to be send when &#8220;Deactivate this user?&#8221; is checked.  So &#8220;Deactivate this user?&#8221; always sends the checked value whether it&#8217;s checked or not. To fix this i have made 2  little changes at wp-members-admin.php<br />
					$label  = __( &#8216;Deactivate this user?&#8217;, &#8216;wp-members&#8217; );<br />
					$action = 2;  //$action = 1; to$action = 2; at line 118<br />
					break;<br />
and<br />
elseif( $wpmem_activate_user == 2 ) {//$wpmem_activate_user == 1 to $wpmem_activate_user == 2 at line 168<br />
			wpmem_a_deactivate_user( $user_id );<br />
		}<br />
I didn&#8217;t define anything for the case $wpmem_activate_user == 0 because if the check box is unchecked everyting should stay the way it was.<br />
I tested it carefully and it works very well now. Since i am very new to php and WordPress, i am not sure if i did something wrong. But i like to think as long as it&#8217;s work it should be fine. Maybe there is a better way to fix this but unfortunatelly i could not figure it out by myself  <img src='http://butlerblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  If there is a better way, i would like to know about it and correct my code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-Members&#153;  Translations by Doriano Maria</title>
		<link>http://butlerblog.com/wp-members/wp-members-translations/comment-page-2/#comment-34520</link>
		<dc:creator>Doriano Maria</dc:creator>
		<pubDate>Sat, 18 Feb 2012 21:37:16 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/?page_id=1393#comment-34520</guid>
		<description>Italian 2.7.1. works also in 2.7.2 
  Regards           
                         Doriano.</description>
		<content:encoded><![CDATA[<p>Italian 2.7.1. works also in 2.7.2<br />
  Regards<br />
                         Doriano.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-Members&#153;  Translations by Doriano Maria</title>
		<link>http://butlerblog.com/wp-members/wp-members-translations/comment-page-2/#comment-34519</link>
		<dc:creator>Doriano Maria</dc:creator>
		<pubDate>Sat, 18 Feb 2012 21:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/?page_id=1393#comment-34519</guid>
		<description>It WORKS ALSO IN 2.7.2. .

        Diriano</description>
		<content:encoded><![CDATA[<p>It WORKS ALSO IN 2.7.2. .</p>
<p>        Diriano</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-Members&#153;  by John BR</title>
		<link>http://butlerblog.com/wp-members/comment-page-10/#comment-34515</link>
		<dc:creator>John BR</dc:creator>
		<pubDate>Sat, 18 Feb 2012 20:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/wp-members/#comment-34515</guid>
		<description>Hi Chad,
Thanks for the super awesome plugin. This enabled me to set up my membership site exactly the way I want it, tweaked for maximum conversion and the best user experience.

You are doing a wonderful job, very helpful too. You have my support always.

Cheers
John</description>
		<content:encoded><![CDATA[<p>Hi Chad,<br />
Thanks for the super awesome plugin. This enabled me to set up my membership site exactly the way I want it, tweaked for maximum conversion and the best user experience.</p>
<p>You are doing a wonderful job, very helpful too. You have my support always.</p>
<p>Cheers<br />
John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-Members&#153;  by Chad</title>
		<link>http://butlerblog.com/wp-members/comment-page-10/#comment-34507</link>
		<dc:creator>Chad</dc:creator>
		<pubDate>Sat, 18 Feb 2012 17:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://butlerblog.com/wp-members/#comment-34507</guid>
		<description>First, you should double check to make sure there is content in the email tab for the plugin. If for some reason this did not load at install, you will need to add it. (&lt;a href=&quot;http://butlerblog.com/2012/01/23/wp-members-2-7-0-email-issues/&quot; rel=&quot;nofollow&quot;&gt;See this post&lt;/a&gt; for more information.)

If email&#039;s were being sent before, it is possible that this is your problem. It could be that when you upgraded, the default content for the emails did not load properly.  If that&#039;s not the case, I would next suggest using an SMTP email plugin such as WP Mail SMTP.</description>
		<content:encoded><![CDATA[<p>First, you should double check to make sure there is content in the email tab for the plugin. If for some reason this did not load at install, you will need to add it. (<a href="http://butlerblog.com/2012/01/23/wp-members-2-7-0-email-issues/" rel="nofollow">See this post</a> for more information.)</p>
<p>If email&#8217;s were being sent before, it is possible that this is your problem. It could be that when you upgraded, the default content for the emails did not load properly.  If that&#8217;s not the case, I would next suggest using an SMTP email plugin such as WP Mail SMTP.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

