<?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 on: Seamless WordPress bbPress Integration</title> <atom:link href="http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/feed/" rel="self" type="application/rss+xml" /><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/</link> <description>Searching for the Right Questions</description> <lastBuildDate>Sat, 18 Feb 2012 21:34:20 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: Mark Waugh</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-5924</link> <dc:creator>Mark Waugh</dc:creator> <pubDate>Wed, 16 Mar 2011 10:58:48 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-5924</guid> <description>Nice tutorial. I think Keep in mind that a large portion of your bbPress theme is going to be stripped out, so don’t spend to much time selecting a theme. Thanks!</description> <content:encoded><![CDATA[<p>Nice tutorial. I think Keep in mind that a large portion of your bbPress theme is going to be stripped out, so don’t spend to much time selecting a theme. Thanks!</p> ]]></content:encoded> </item> <item><title>By: Tinsley</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-3546</link> <dc:creator>Tinsley</dc:creator> <pubDate>Sun, 22 Aug 2010 22:35:20 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-3546</guid> <description>I haven&#039;t checked but I assume you can just use the same solution on whatever function is used to get the post title. get_post_title perhaps?</description> <content:encoded><![CDATA[<p>I haven&#8217;t checked but I assume you can just use the same solution on whatever function is used to get the post title. get_post_title perhaps?</p> ]]></content:encoded> </item> <item><title>By: Vixx</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-3545</link> <dc:creator>Vixx</dc:creator> <pubDate>Sun, 22 Aug 2010 14:19:08 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-3545</guid> <description>Hey!
Thanks so much for the striplashes advice. Been struggling with this for a little while.
One quick issue: the fix you put helped with the extra slashes in the BODY of the post, but not in the post TITLE - any advice?
Thanks!</description> <content:encoded><![CDATA[<p>Hey!</p><p>Thanks so much for the striplashes advice. Been struggling with this for a little while.</p><p>One quick issue: the fix you put helped with the extra slashes in the BODY of the post, but not in the post TITLE &#8211; any advice?</p><p>Thanks!</p> ]]></content:encoded> </item> <item><title>By: gary</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-3067</link> <dc:creator>gary</dc:creator> <pubDate>Tue, 27 Apr 2010 17:45:38 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-3067</guid> <description>solution:
instead of
require_once(‘path/to/wp-blog-header.php’);
use
if (file_exists(&#039;../wp-blog-header.php&#039;))
require_once(&#039;../wp-blog-header.php&#039;);</description> <content:encoded><![CDATA[<p>solution:</p><p>instead of</p><p>require_once(‘path/to/wp-blog-header.php’);</p><p>use</p><p>if (file_exists(&#8216;../wp-blog-header.php&#8217;))<br
/> require_once(&#8216;../wp-blog-header.php&#8217;);</p> ]]></content:encoded> </item> <item><title>By: gary</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-3066</link> <dc:creator>gary</dc:creator> <pubDate>Tue, 27 Apr 2010 17:17:45 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-3066</guid> <description>this all works great till I go to access BBPress Admin, via the snippet posted above or by typing url manually:
Warning: require_once(../wp-blog-header.php) [function.require-once]: failed to open stream: No such file or directory in /myserverpathto/forums/bb-config.php on line 62
Fatal error: require_once() [function.require]: Failed opening required &#039;../wp-blog-header.php&#039; (include_path=&#039;.:/usr/lib/php:/usr/local/lib/php&#039;) in /myserverpathto/forums/bb-config.php on line 62</description> <content:encoded><![CDATA[<p>this all works great till I go to access BBPress Admin, via the snippet posted above or by typing url manually:</p><p>Warning: require_once(../wp-blog-header.php) [function.require-once]: failed to open stream: No such file or directory in /myserverpathto/forums/bb-config.php on line 62</p><p>Fatal error: require_once() [function.require]: Failed opening required &#8216;../wp-blog-header.php&#8217; (include_path=&#8217;.:/usr/lib/php:/usr/local/lib/php&#8217;) in /myserverpathto/forums/bb-config.php on line 62</p> ]]></content:encoded> </item> <item><title>By: Tinsley</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2832</link> <dc:creator>Tinsley</dc:creator> <pubDate>Sat, 03 Apr 2010 18:49:09 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2832</guid> <description>The problem is the exclude filter is not being applied when wp_get_pages is called. I&#039;m not sure if this will work, but you might want to try manually including the plugin like this:
[sourcecode language=&quot;php&quot;]
if($is_bb) {
include(&#039;path/to/wp-content/plugins/exclude_pages/exclude_pages.php&#039;);
ep_init(); //manually initialize the plugin
}
[/sourcecode]
Just make sure you include it prior to calling get_pages or list_pages.</description> <content:encoded><![CDATA[<p>The problem is the exclude filter is not being applied when wp_get_pages is called. I&#8217;m not sure if this will work, but you might want to try manually including the plugin like this:</p><pre class="brush: php; title: ; notranslate">
if($is_bb) {
     include('path/to/wp-content/plugins/exclude_pages/exclude_pages.php');
     ep_init(); //manually initialize the plugin
}
</pre><p>Just make sure you include it prior to calling get_pages or list_pages.</p> ]]></content:encoded> </item> <item><title>By: Philip Light</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2826</link> <dc:creator>Philip Light</dc:creator> <pubDate>Sat, 03 Apr 2010 10:53:22 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2826</guid> <description>Beautiful, thanks!
One problem you might have a suggestion for.  I use the Exclude Pages plugin (http://wordpress.org/extend/plugins/exclude-pages/) but it&#039;s not filtering the pages on my forum page (http://www.wordpresswebkit.com/wordpress-forum).  I&#039;ve just used your $is_bb for now to create a branch in my header.php/footer.php files and hard-coded the pages I wanted to include in the nav, but would much rather have it done programmatically. Any thoughts?
Thanks again for the excellent article!
Philip Light</description> <content:encoded><![CDATA[<p>Beautiful, thanks!</p><p>One problem you might have a suggestion for.  I use the Exclude Pages plugin (<a
href="http://wordpress.org/extend/plugins/exclude-pages/" rel="nofollow">http://wordpress.org/extend/plugins/exclude-pages/</a>) but it&#8217;s not filtering the pages on my forum page (<a
href="http://www.wordpresswebkit.com/wordpress-forum" rel="nofollow">http://www.wordpresswebkit.com/wordpress-forum</a>).  I&#8217;ve just used your $is_bb for now to create a branch in my header.php/footer.php files and hard-coded the pages I wanted to include in the nav, but would much rather have it done programmatically. Any thoughts?</p><p>Thanks again for the excellent article!</p><p>Philip Light</p> ]]></content:encoded> </item> <item><title>By: Tinsley</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2695</link> <dc:creator>Tinsley</dc:creator> <pubDate>Fri, 26 Feb 2010 01:51:59 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2695</guid> <description>You&#039;re going to have to either type the address manually or code the link into your template:
[source language=&quot;php&quot;]
if($is_bb)
echo &#039;&lt;a href=&quot;forum/bb-admin/&quot;&gt;Admin&lt;/a&gt;&#039;;
[/source]</description> <content:encoded><![CDATA[<p>You&#8217;re going to have to either type the address manually or code the link into your template:</p><pre class="brush: php; title: ; notranslate">
if($is_bb)
	echo '&lt;a href=&quot;forum/bb-admin/&quot;&gt;Admin&lt;/a&gt;';
</pre>]]></content:encoded> </item> <item><title>By: johnuk</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2694</link> <dc:creator>johnuk</dc:creator> <pubDate>Thu, 25 Feb 2010 21:35:31 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2694</guid> <description>I&#039;ve successfully integrated bbpress and wordpress.. it works fine.. but the problem is that my bb-admin not open..
what can i do? How can i go to my bb-admin?
any help?</description> <content:encoded><![CDATA[<p>I&#8217;ve successfully integrated bbpress and wordpress.. it works fine.. but the problem is that my bb-admin not open..<br
/> what can i do? How can i go to my bb-admin?<br
/> any help?</p> ]]></content:encoded> </item> <item><title>By: Tinsley</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2620</link> <dc:creator>Tinsley</dc:creator> <pubDate>Fri, 29 Jan 2010 03:07:02 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2620</guid> <description>Assuming everything is installed and configured correctly it shouldn&#039;t matter whether it is live or local (of course that is a big assumption). Really I can&#039;t say for sure what is happening here other than that for whatever reason the get_header() function is not being found. Normally this would me that the necessary file (wp-blog_header) is not being included.</description> <content:encoded><![CDATA[<p>Assuming everything is installed and configured correctly it shouldn&#8217;t matter whether it is live or local (of course that is a big assumption). Really I can&#8217;t say for sure what is happening here other than that for whatever reason the get_header() function is not being found. Normally this would me that the necessary file (wp-blog_header) is not being included.</p> ]]></content:encoded> </item> <item><title>By: liza</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2617</link> <dc:creator>liza</dc:creator> <pubDate>Thu, 28 Jan 2010 21:39:44 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2617</guid> <description>yp I&#039;ve inculde it like    require_once(&#039;wp-blog-header.php&#039;); but its not working. what can i do? remember i&#039;m working on localhost not live!!!</description> <content:encoded><![CDATA[<p>yp I&#8217;ve inculde it like    require_once(&#8216;wp-blog-header.php&#8217;); but its not working. what can i do? remember i&#8217;m working on localhost not live!!!</p> ]]></content:encoded> </item> <item><title>By: Tinsley</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2605</link> <dc:creator>Tinsley</dc:creator> <pubDate>Tue, 26 Jan 2010 19:59:47 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2605</guid> <description>Did you include wp-blog-header.php in your bbpress config file?</description> <content:encoded><![CDATA[<p>Did you include wp-blog-header.php in your bbpress config file?</p> ]]></content:encoded> </item> <item><title>By: liza</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2604</link> <dc:creator>liza</dc:creator> <pubDate>Tue, 26 Jan 2010 10:41:34 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2604</guid> <description>Fatal error: Call to undefined function get_header() in D:\xampp\htdocs\blog\bbpress\bb-templates\kakumei\front-page.php on line 1
how to fix it?
I&#039;m using localhost
blog address
http://localhost/blog/
bbpress address
http://localhost/blog/bbpress/
thanks</description> <content:encoded><![CDATA[<p>Fatal error: Call to undefined function get_header() in D:\xampp\htdocs\blog\bbpress\bb-templates\kakumei\front-page.php on line 1</p><p>how to fix it?</p><p>I&#8217;m using localhost</p><p>blog address</p><p><a
href="http://localhost/blog/" rel="nofollow">http://localhost/blog/</a></p><p>bbpress address</p><p><a
href="http://localhost/blog/bbpress/" rel="nofollow">http://localhost/blog/bbpress/</a></p><p>thanks</p> ]]></content:encoded> </item> <item><title>By: Tinsley</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2577</link> <dc:creator>Tinsley</dc:creator> <pubDate>Thu, 14 Jan 2010 15:29:45 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2577</guid> <description>The background is gone because you have conflicting style sheets. From the tutorial:
&quot;If you look at your forum now, you’ll probably see a terrible mess. This is because your WordPress style sheets and your bbPress style sheets conflict.  Make sure you remove any elements that are directly conflicting with those in your WordPress theme (ie header, sidebar, footer elements).&quot;
The login/register button is missing it was a component of your bbpress header. Also from the tutorial:
&quot;Most likely all of your bbPress navigation (ie login, admin panel, logout) buttons are gone. If you correctly integrated WordPress cookies login and logout shouldn’t be a problem. To replace any links that were lost, code them directly into your WordPress theme, using the $is_bb variable to only display them on the forum.&quot;
In other words, you&#039;ll have to hard code new login/register links into bbpress like so:
[sourcecode language=&quot;php&quot;]
&lt;?php if($is_bb): ?&gt;
&lt;a href=&quot;forum/bb-admin/&quot;&gt;Login&lt;/a&gt;
&lt;?php endif; ?&gt;
[/sourcecode]</description> <content:encoded><![CDATA[<p>The background is gone because you have conflicting style sheets. From the tutorial:<br
/> &#8220;If you look at your forum now, you’ll probably see a terrible mess. This is because your WordPress style sheets and your bbPress style sheets conflict.  Make sure you remove any elements that are directly conflicting with those in your WordPress theme (ie header, sidebar, footer elements).&#8221;</p><p>The login/register button is missing it was a component of your bbpress header. Also from the tutorial:<br
/> &#8220;Most likely all of your bbPress navigation (ie login, admin panel, logout) buttons are gone. If you correctly integrated WordPress cookies login and logout shouldn’t be a problem. To replace any links that were lost, code them directly into your WordPress theme, using the $is_bb variable to only display them on the forum.&#8221;</p><p>In other words, you&#8217;ll have to hard code new login/register links into bbpress like so:</p><pre class="brush: php; title: ; notranslate">
&lt;?php if($is_bb): ?&gt;
&lt;a href=&quot;forum/bb-admin/&quot;&gt;Login&lt;/a&gt;
&lt;?php endif; ?&gt;
</pre>]]></content:encoded> </item> <item><title>By: jb</title><link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2574</link> <dc:creator>jb</dc:creator> <pubDate>Thu, 14 Jan 2010 08:14:47 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=611#comment-2574</guid> <description>i did but now all the background are white. different like the main blog.
the login/register button also gone. Can u make another tutorial about this. thanks</description> <content:encoded><![CDATA[<p>i did but now all the background are white. different like the main blog.</p><p>the login/register button also gone. Can u make another tutorial about this. thanks</p> ]]></content:encoded> </item> </channel> </rss>
