<?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 GeneralThreat.com</title>
	<atom:link href="http://www.generalthreat.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.generalthreat.com</link>
	<description>Dangerously different projects and code</description>
	<lastBuildDate>Sat, 07 Jun 2014 17:10:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>Comment on Adding Externally-Authenticated Users to BuddyPress by ddean</title>
		<link>http://www.generalthreat.com/2012/02/adding-externally-authenticated-users-to-buddypress/#comment-64499</link>
		<dc:creator><![CDATA[ddean]]></dc:creator>
		<pubDate>Sat, 07 Jun 2014 17:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=85#comment-64499</guid>
		<description><![CDATA[Hi Stijn, 
 
This technique does create a &quot;shadow&quot; WP user for the external login. A lot of BuddyPress uses the WP user ID extensively, so it would take a lot more work to let external users participate in a BuddyPress site without a local user ID. 
 
Your second question is related to the first one. Because we\&#039;re creating a local user account and hooking `authenticate`, this code is only called if the user fails to log in locally but successfully logs in to the external auth system. 
 
Thanks for the comment! 
 
- David ]]></description>
		<content:encoded><![CDATA[<p>Hi Stijn, </p>
<p>This technique does create a &#8220;shadow&#8221; WP user for the external login. A lot of BuddyPress uses the WP user ID extensively, so it would take a lot more work to let external users participate in a BuddyPress site without a local user ID. </p>
<p>Your second question is related to the first one. Because we\&#8217;re creating a local user account and hooking `authenticate`, this code is only called if the user fails to log in locally but successfully logs in to the external auth system. </p>
<p>Thanks for the comment! </p>
<p>&#8211; David </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending BuddyPress Group Hierarchy &#8211; Join to Upstream Groups by W.J. Kok</title>
		<link>http://www.generalthreat.com/2011/12/extending-groups-hierarchy-join-upstream/#comment-64491</link>
		<dc:creator><![CDATA[W.J. Kok]]></dc:creator>
		<pubDate>Thu, 03 Apr 2014 08:28:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=74#comment-64491</guid>
		<description><![CDATA[Awsome! Thanks for sharing this piece. ]]></description>
		<content:encoded><![CDATA[<p>Awsome! Thanks for sharing this piece. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Externally-Authenticated Users to BuddyPress by stijndewitt</title>
		<link>http://www.generalthreat.com/2012/02/adding-externally-authenticated-users-to-buddypress/#comment-64490</link>
		<dc:creator><![CDATA[stijndewitt]]></dc:creator>
		<pubDate>Thu, 27 Mar 2014 08:29:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=85#comment-64490</guid>
		<description><![CDATA[Thanks for this great post! It was exactly what I am looking for. 
 
I have some questions though. I see that you perform an update statement on the database: 
 
    // activate user and set display name appropriately 
    $wpdb-&gt;query( $wpdb-&gt;prepare( &quot;UPDATE $wpdb-&gt;users SET display_name=%s, user_status=0 WHERE ID=%d&quot;, $display_name, $new_user ) ); 
 
1. Is this necessary? I was hoping to avoid storing a &#039;shadow&#039; record in WordPress as the user is already stored in the external system. 
2. It looks like you are registering a new user (and activating it etc)... How does this work? A new user is registered for every login? 
 
Thanks for the great article and keep on writing them! 
 
-Stijn]]></description>
		<content:encoded><![CDATA[<p>Thanks for this great post! It was exactly what I am looking for. </p>
<p>I have some questions though. I see that you perform an update statement on the database: </p>
<p>    // activate user and set display name appropriately<br />
    $wpdb-&gt;query( $wpdb-&gt;prepare( &quot;UPDATE $wpdb-&gt;users SET display_name=%s, user_status=0 WHERE ID=%d&quot;, $display_name, $new_user ) ); </p>
<p>1. Is this necessary? I was hoping to avoid storing a &#039;shadow&#039; record in WordPress as the user is already stored in the external system.<br />
2. It looks like you are registering a new user (and activating it etc)&#8230; How does this work? A new user is registered for every login? </p>
<p>Thanks for the great article and keep on writing them! </p>
<p>-Stijn</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Highlighting Features with WordPress Admin Pointers &#8211; A Quick Guide for Plugin Authors by ddean</title>
		<link>http://www.generalthreat.com/2012/01/highlighting-features-with-wordpress-admin-pointers/#comment-64483</link>
		<dc:creator><![CDATA[ddean]]></dc:creator>
		<pubDate>Wed, 05 Feb 2014 18:50:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=80#comment-64483</guid>
		<description><![CDATA[Hi hassanz - 
 
Make sure the AJAX request that fires when you click dismiss is completing successfully. It sounds like something on your install may be getting in the way. 
 
- David ]]></description>
		<content:encoded><![CDATA[<p>Hi hassanz &#8211; </p>
<p>Make sure the AJAX request that fires when you click dismiss is completing successfully. It sounds like something on your install may be getting in the way. </p>
<p>&#8211; David </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Highlighting Features with WordPress Admin Pointers &#8211; A Quick Guide for Plugin Authors by hassanz</title>
		<link>http://www.generalthreat.com/2012/01/highlighting-features-with-wordpress-admin-pointers/#comment-64482</link>
		<dc:creator><![CDATA[hassanz]]></dc:creator>
		<pubDate>Wed, 29 Jan 2014 16:57:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=80#comment-64482</guid>
		<description><![CDATA[thank you. One problem: pointer reappears on page refresh, after click dismiss. ]]></description>
		<content:encoded><![CDATA[<p>thank you. One problem: pointer reappears on page refresh, after click dismiss. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending BuddyPress Group Hierarchy &#8211; Creating a Member Groups list by Wayne Rowlands</title>
		<link>http://www.generalthreat.com/2012/01/extending-buddypress-group-hierarchy-list-member-groups/#comment-43266</link>
		<dc:creator><![CDATA[Wayne Rowlands]]></dc:creator>
		<pubDate>Thu, 12 Dec 2013 23:10:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=82#comment-43266</guid>
		<description><![CDATA[I see that you have developed a number of BuddyPress plugins. There is one that would be great. When a member is on the activity stream, it would be great if there was a plugin that permitted a member to post to a number of groups at once. ]]></description>
		<content:encoded><![CDATA[<p>I see that you have developed a number of BuddyPress plugins. There is one that would be great. When a member is on the activity stream, it would be great if there was a plugin that permitted a member to post to a number of groups at once. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending BuddyPress Group Hierarchy &#8211; Join to Upstream Groups by Johnny</title>
		<link>http://www.generalthreat.com/2011/12/extending-groups-hierarchy-join-upstream/#comment-36175</link>
		<dc:creator><![CDATA[Johnny]]></dc:creator>
		<pubDate>Sat, 30 Nov 2013 16:45:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=74#comment-36175</guid>
		<description><![CDATA[Are you saying you can restrict which groups are available as parents? 
 
Can we do the top 3 in the chain? 
 
Cheers, 
 
Johnny ]]></description>
		<content:encoded><![CDATA[<p>Are you saying you can restrict which groups are available as parents? </p>
<p>Can we do the top 3 in the chain? </p>
<p>Cheers, </p>
<p>Johnny </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serving koha-common with Plack by pongtawat</title>
		<link>http://www.generalthreat.com/2013/04/serving-koha-common-with-plack/#comment-15359</link>
		<dc:creator><![CDATA[pongtawat]]></dc:creator>
		<pubDate>Sun, 08 Sep 2013 04:42:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=98#comment-15359</guid>
		<description><![CDATA[Thanks for the nice scripts and package! 
 
I would like to report some small problems: 
 
- On my box, which sh is dash, the start/stop plack script will stop at first exec. I have to remove &quot;exec&quot; and it seems to work fine. 
- The unlock script will fail in port mode, causing nothing to start. I have to remove that script from start script.  ]]></description>
		<content:encoded><![CDATA[<p>Thanks for the nice scripts and package! </p>
<p>I would like to report some small problems: </p>
<p>&#8211; On my box, which sh is dash, the start/stop plack script will stop at first exec. I have to remove &quot;exec&quot; and it seems to work fine.<br />
&#8211; The unlock script will fail in port mode, causing nothing to start. I have to remove that script from start script.  </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grappling with BP theme compatibility by Patrick</title>
		<link>http://www.generalthreat.com/2013/08/grappling-with-bp-theme-compatibility/#comment-15274</link>
		<dc:creator><![CDATA[Patrick]]></dc:creator>
		<pubDate>Sat, 07 Sep 2013 12:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=104#comment-15274</guid>
		<description><![CDATA[Hi David, I know this not about BP theme compatibility but  is there any way of organising my BuddyPress site so that each groups and forum have their own identity so that they will not display on the same page as other types. If I could explain it this way; If I owned a buddypress community network based on sports could I for example give people the choice to select and join a default cricket group or a football group or a fitness group and so on.  If it&#8217;s possible and my nav bar menu is displaying each type of group will that group and its forum only show up on the page selected.  How difficult is this to achieve. Thanks Patrick ]]></description>
		<content:encoded><![CDATA[<p>Hi David, I know this not about BP theme compatibility but  is there any way of organising my BuddyPress site so that each groups and forum have their own identity so that they will not display on the same page as other types. If I could explain it this way; If I owned a buddypress community network based on sports could I for example give people the choice to select and join a default cricket group or a football group or a fitness group and so on.  If it&rsquo;s possible and my nav bar menu is displaying each type of group will that group and its forum only show up on the page selected.  How difficult is this to achieve. Thanks Patrick </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending BuddyPress Group Hierarchy &#8211; Adding Breadcrumbs to Your Theme by ddean</title>
		<link>http://www.generalthreat.com/2012/04/extending-buddypress-group-hierarchy-adding-breadcrumbs-to-your-theme/#comment-5784</link>
		<dc:creator><![CDATA[ddean]]></dc:creator>
		<pubDate>Sat, 04 May 2013 00:49:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.generalthreat.com/?p=87#comment-5784</guid>
		<description><![CDATA[Hi wilsoncortez - 
 
It looks like there was a problem with syntax highlighting. It&#039;s been fixed and the code snippets should be visible again. Let me know if you come back and can&#039;t see it! 
 
- David ]]></description>
		<content:encoded><![CDATA[<p>Hi wilsoncortez &#8211; </p>
<p>It looks like there was a problem with syntax highlighting. It&#039;s been fixed and the code snippets should be visible again. Let me know if you come back and can&#039;t see it! </p>
<p>&#8211; David </p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

 Served from: www.generalthreat.com @ 2026-06-14 14:06:19 by W3 Total Cache -->