<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Topic: The Display Name stopped working</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: The Display Name stopped working</description>
<language>en</language>
<pubDate>Mon, 08 Sep 2008 05:15:35 +0000</pubDate>

<item>
<title>zapata on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4220</link>
<pubDate>Fri, 09 Feb 2007 00:04:06 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">4220@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;this is weird... logged out logged in about 2-3 times... tried to log in as another user... error... logged in again as me (admin) and this time I went straight to the forums instead of the dashboard.
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4218</link>
<pubDate>Fri, 09 Feb 2007 00:01:38 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">4218@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I may have done something wrong... I deleted the whole folder and uploaded it again with the modified plugin... and it is working!!! &#60;/p&#62;
&#60;p&#62;Is it me or some weird odd reason the display name seems to show up exactly like the previous version... no problems now...&#60;/p&#62;
&#60;p&#62;After I log in I enter a different page (I think it's the admin page) instead of the forums... is that how it is supposed to be?
&#60;/p&#62;</description>
</item>
<item>
<title>mdawaffe on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4214</link>
<pubDate>Thu, 08 Feb 2007 23:50:44 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">4214@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm stumped then.  You win the prize :) !
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4213</link>
<pubDate>Thu, 08 Feb 2007 23:48:14 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">4213@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;No I don't... I'll try again... in a few and let you know how it goes.
&#60;/p&#62;</description>
</item>
<item>
<title>mdawaffe on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4209</link>
<pubDate>Thu, 08 Feb 2007 23:32:49 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">4209@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Since the plugin I put up here: &#60;a href=&#34;http://bbpress.org/forums/topic/694?replies=13#post-4202&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/694?replies=13#post-4202&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;doesn't make any reference to front-page.php, I do not know why you are getting that error.&#60;/p&#62;
&#60;p&#62;Are you sure you were runnig the version I put up?  Do you have multiple versions of the same plugin running?
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4208</link>
<pubDate>Thu, 08 Feb 2007 23:23:50 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">4208@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks Trent.!!!
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4207</link>
<pubDate>Thu, 08 Feb 2007 23:22:48 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4207@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am sure Micheal can fix this quickly, but maybe try this until he gets around to it:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: Force Login
Description: No one can see your forums unless they are logged in.
Plugin URI: &#60;a href=&#34;http://bbpress.org/forums/topic/117&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/117&#60;/a&#62;
Author: Michael D Adams
Author URI: &#60;a href=&#34;http://blogwaffe.com/&#34; rel=&#34;nofollow&#34;&#62;http://blogwaffe.com/&#60;/a&#62;
Version: 0.7
*/
function force_login_init() {
if ( !bb_is_user_logged_in() &#38;#38;&#38;#38; false === strpos($_SERVER[&#38;#39;REQUEST_URI&#38;#39;], &#38;#39;bb-login.php&#38;#39;) ) {
if ( file_exists( BBPATH . &#38;#39;my-templates/login.php&#38;#39; ) ) {
require( BBPATH . &#38;#39;my-templates/kakumei/front-page.php&#38;#39; );
} else {
require( BBPATH . &#38;#39;bb-templates/kakumei/front-page.php&#38;#39; );
}
exit;
}
}
add_action( &#38;#39;bb_init&#38;#39;, &#38;#39;force_login_init&#38;#39; );
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I just hardcoded the new template directory.   Not a long term fix.   mdawaffe will have a fix soon enough!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4206</link>
<pubDate>Thu, 08 Feb 2007 23:16:50 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">4206@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Error on trying forcelogin&#60;/p&#62;
&#60;p&#62;Warning: force_login_init(/home/ozdesi/public_html/passionforcinema-com/club/bb-templates/front-page.php) [function.force-login-init]: failed to open stream: No such file or directory in /home/ozdesi/public_html/passionforcinema-com/club/my-plugins/forcelogin.php on line 15
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4205</link>
<pubDate>Thu, 08 Feb 2007 23:11:01 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4205@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There is no reason why it will not.   Mine is working and has been since the functions of 0.8 began in TRAC and continue on with the upgrade to 0.8 today.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4204</link>
<pubDate>Thu, 08 Feb 2007 23:05:25 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">4204@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's the default theme... all righty mdawaffe is here... thanks... I'll update this and let you guys know...&#60;/p&#62;
&#60;p&#62;Will the bbPress-WP Integration be working?
&#60;/p&#62;</description>
</item>
<item>
<title>mdawaffe on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4202</link>
<pubDate>Thu, 08 Feb 2007 22:51:16 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">4202@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey, that's me! :)&#60;/p&#62;
&#60;p&#62;Try this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: Force Login
Description: No one can see your forums unless they are logged in.
Plugin URI: &#60;a href=&#34;http://bbpress.org/forums/topic/694&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/694&#60;/a&#62;
Author: Michael D Adams
Author URI: &#60;a href=&#34;http://blogwaffe.com/&#34; rel=&#34;nofollow&#34;&#62;http://blogwaffe.com/&#60;/a&#62;
Version: 0.7
*/

function force_login_init() {
        if ( !bb_is_user_logged_in() &#38;#38;&#38;#38; false === strpos($_SERVER[&#38;#39;REQUEST_URI&#38;#39;], &#38;#39;bb-login.php&#38;#39;) &#38;#38;&#38;#38; false === strpos($_SERVER[&#38;#39;REQUEST_URI&#38;#39;], &#38;#39;bb-reset-password.php&#38;#39;) ) {
                bb_load_template( &#38;#39;login.php&#38;#39; );
                exit;
        }
}

add_action( &#38;#39;bb_init&#38;#39;, &#38;#39;force_login_init&#38;#39; );

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Trent on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4199</link>
<pubDate>Thu, 08 Feb 2007 22:42:57 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4199@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have several plugins with 0.8 and the integration plugins work fine.   Memberlist, Private Messaging, (this one) and a few others.   Only ones that reference the templates or specific files in themes....rest work fine.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4198</link>
<pubDate>Thu, 08 Feb 2007 22:41:23 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4198@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What is your theme name....we can fix this in a hurry for you!  Is it the default theme now?&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4197</link>
<pubDate>Thu, 08 Feb 2007 22:38:51 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">4197@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Trent... don't remember where I picked it from it's called the Force-login... did someone here give me the code and I copied and pasted it... not sure... here's the code...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: Force Login
Description: No one can see your forums unless they are logged in.
Plugin URI: &#60;a href=&#34;http://bbpress.org/forums/topic/117&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/117&#60;/a&#62;
Author: Michael D Adams
Author URI: &#60;a href=&#34;http://blogwaffe.com/&#34; rel=&#34;nofollow&#34;&#62;http://blogwaffe.com/&#60;/a&#62;
Version: 0.7
*/
function force_login_init() {
if ( !bb_is_user_logged_in() &#38;#38;&#38;#38; false === strpos($_SERVER[&#38;#39;REQUEST_URI&#38;#39;], &#38;#39;bb-login.php&#38;#39;) ) {
if ( file_exists( BBPATH . &#38;#39;my-templates/login.php&#38;#39; ) ) {
require( BBPATH . &#38;#39;my-templates/front-page.php&#38;#39; );
} else {
require( BBPATH . &#38;#39;bb-templates/front-page.php&#38;#39; );
}
exit;
}
}
add_action( &#38;#39;bb_init&#38;#39;, &#38;#39;force_login_init&#38;#39; );
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Haven't checked it the bbpress-integration (bbpress-wp same users share) is working or not.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4196</link>
<pubDate>Thu, 08 Feb 2007 22:36:05 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4196@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hmm...if it is this one, it might be tougher for me to figure out without help!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/27?replies=1&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/27?replies=1&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4195</link>
<pubDate>Thu, 08 Feb 2007 22:31:50 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4195@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Post a link to the plugin you are using or the code for it.   We can fix it quickly here for the login only plugin.   The display name is on the plugins site.   We can fix that one after fixing your Important issue first.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4194</link>
<pubDate>Thu, 08 Feb 2007 22:24:38 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">4194@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Darn... the view only on login plugin is also not working you can see the club without logging in.
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "The Display Name stopped working"</title>
<link>http://bbpress.org/forums/topic/the-display-name-stopped-working#post-4193</link>
<pubDate>Thu, 08 Feb 2007 22:23:07 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">4193@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Upgraded to the lastest bbPress and find that the display name has stopped working... was using the display-name plugin... for this
&#60;/p&#62;</description>
</item>

</channel>
</rss>
