<?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: BBClone &amp; WordPress Integration</title>
	<atom:link href="http://www.yellow-llama.com/bbclone-wordpress-integration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yellow-llama.com/bbclone-wordpress-integration/</link>
	<description></description>
	<lastBuildDate>Thu, 08 Dec 2011 07:16:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Chris</title>
		<link>http://www.yellow-llama.com/bbclone-wordpress-integration/comment-page-1/#comment-17469</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 15 Aug 2010 15:47:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.yellow-llama.com/bbclone-wordpress-integration/#comment-17469</guid>
		<description>Works perfectly apart from one thing. Whenever I check the logs I always receive an entry in BBClone about Page Not Found. 

Any way to avoid this?</description>
		<content:encoded><![CDATA[<p>Works perfectly apart from one thing. Whenever I check the logs I always receive an entry in BBClone about Page Not Found. </p>
<p>Any way to avoid this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Socorrito</title>
		<link>http://www.yellow-llama.com/bbclone-wordpress-integration/comment-page-1/#comment-16560</link>
		<dc:creator>Socorrito</dc:creator>
		<pubDate>Thu, 25 Dec 2008 19:43:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.yellow-llama.com/bbclone-wordpress-integration/#comment-16560</guid>
		<description>Where axact i have to put the code in page.php or in wp-blog-header.php ... i am using WP 2.7.</description>
		<content:encoded><![CDATA[<p>Where axact i have to put the code in page.php or in wp-blog-header.php &#8230; i am using WP 2.7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaymus</title>
		<link>http://www.yellow-llama.com/bbclone-wordpress-integration/comment-page-1/#comment-16152</link>
		<dc:creator>Jaymus</dc:creator>
		<pubDate>Fri, 11 Apr 2008 08:25:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.yellow-llama.com/bbclone-wordpress-integration/#comment-16152</guid>
		<description>Good suggestions, I think I like what I found over here more: http://www.iltchev.com/?page_id=11

backup: http://wordpress.org/support/topic/116866?replies=5#post-731227</description>
		<content:encoded><![CDATA[<p>Good suggestions, I think I like what I found over here more: <a href="http://www.iltchev.com/?page_id=11" rel="nofollow">http://www.iltchev.com/?page_id=11</a></p>
<p>backup: <a href="http://wordpress.org/support/topic/116866?replies=5#post-731227" rel="nofollow">http://wordpress.org/support/topic/116866?replies=5#post-731227</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: unodj</title>
		<link>http://www.yellow-llama.com/bbclone-wordpress-integration/comment-page-1/#comment-16140</link>
		<dc:creator>unodj</dc:creator>
		<pubDate>Sun, 23 Mar 2008 11:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.yellow-llama.com/bbclone-wordpress-integration/#comment-16140</guid>
		<description>for nice titles in the stat list, use this code :)

function nice_bbc_titles() {
  $uri = !empty($_SERVER[&#039;REQUEST_URI&#039;]) ? $_SERVER[&#039;REQUEST_URI&#039;] : &quot;index&quot;;
  $uri = strtr(strip_tags($uri), array(&quot;\r&quot; =&gt; &quot;&quot;, &quot;\n&quot; =&gt; &quot;&quot;, &quot;\\&quot; =&gt; &quot;/&quot;));
  $uri = str_replace(&quot;$&quot;, &quot;&#036;&quot;, htmlspecialchars($uri, ENT_QUOTES));
  $uri = trim(substr($uri, 0, 256));

  if (!is_string($uri) &#124;&#124; empty($uri) &#124;&#124; ($uri == &quot;/&quot;)) return &quot;index&quot;;
  $uri = (substr($uri, -1) == &quot;/&quot;) ? substr($uri, 1, -1) :
         ((($dot = strrpos($uri, &quot;.&quot;)) !== false) ? substr($uri, 1, --$dot) :
          substr($uri, 1));
  $uri = strtr($uri, array(&quot;/&quot; =&gt; &quot; :: &quot;, &quot;_&quot; =&gt; &quot; &quot;, &quot;-&quot; =&gt; &quot; &quot;));
  return ucwords($uri);
}

# actual code
define(&quot;_BBC_PAGE_NAME&quot;, nice_bbc_titles());
define(&quot;_BBCLONE_DIR&quot;, &quot;bbclone/&quot;);
define(&quot;COUNTER&quot;, _BBCLONE_DIR.&quot;mark_page.php&quot;);
if (is_readable(COUNTER)) include_once(COUNTER);</description>
		<content:encoded><![CDATA[<p>for nice titles in the stat list, use this code :)</p>
<p>function nice_bbc_titles() {<br />
  $uri = !empty($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : &#8220;index&#8221;;<br />
  $uri = strtr(strip_tags($uri), array(&#8220;\r&#8221; =&gt; &#8220;&#8221;, &#8220;\n&#8221; =&gt; &#8220;&#8221;, &#8220;\\&#8221; =&gt; &#8220;/&#8221;));<br />
  $uri = str_replace(&#8220;$&#8221;, &#8220;&#36;&#8221;, htmlspecialchars($uri, ENT_QUOTES));<br />
  $uri = trim(substr($uri, 0, 256));</p>
<p>  if (!is_string($uri) || empty($uri) || ($uri == &#8220;/&#8221;)) return &#8220;index&#8221;;<br />
  $uri = (substr($uri, -1) == &#8220;/&#8221;) ? substr($uri, 1, -1) :<br />
         ((($dot = strrpos($uri, &#8220;.&#8221;)) !== false) ? substr($uri, 1, &#8211;$dot) :<br />
          substr($uri, 1));<br />
  $uri = strtr($uri, array(&#8220;/&#8221; =&gt; &#8221; :: &#8220;, &#8220;_&#8221; =&gt; &#8221; &#8220;, &#8220;-&#8221; =&gt; &#8221; &#8220;));<br />
  return ucwords($uri);<br />
}</p>
<p># actual code<br />
define(&#8220;_BBC_PAGE_NAME&#8221;, nice_bbc_titles());<br />
define(&#8220;_BBCLONE_DIR&#8221;, &#8220;bbclone/&#8221;);<br />
define(&#8220;COUNTER&#8221;, _BBCLONE_DIR.&#8221;mark_page.php&#8221;);<br />
if (is_readable(COUNTER)) include_once(COUNTER);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: burclar</title>
		<link>http://www.yellow-llama.com/bbclone-wordpress-integration/comment-page-1/#comment-14141</link>
		<dc:creator>burclar</dc:creator>
		<pubDate>Sun, 11 Nov 2007 02:07:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.yellow-llama.com/bbclone-wordpress-integration/#comment-14141</guid>
		<description>great post thank you man</description>
		<content:encoded><![CDATA[<p>great post thank you man</p>
]]></content:encoded>
	</item>
</channel>
</rss>

