<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[PunBB Forums - [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
		<link>http://punbb.informer.com/forums/topic/17181/seomod-for-punbb-meta-keyword-and-meta-description-for-each-post/</link>
		<description><![CDATA[The most recent posts in [SEO_mod for PunBB] Meta Keyword and meta description for each post.]]></description>
		<lastBuildDate>Mon, 16 Feb 2009 14:15:04 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/124702/#p124702</link>
			<description><![CDATA[<p>translate from french <img src="http://punbb.informer.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /> for punbb 1.2.20</p><p><a href="http://www.punbb.fr/forums/viewtopic.php?pid=72222">http://www.punbb.fr/forums/viewtopic.php?pid=72222</a></p>]]></description>
			<author><![CDATA[dummy@example.com (gorsan)]]></author>
			<pubDate>Mon, 16 Feb 2009 14:15:04 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/124702/#p124702</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/119008/#p119008</link>
			<description><![CDATA[<p>there is a topic on punbb fr that solves this just search on google</p>]]></description>
			<author><![CDATA[dummy@example.com (gorsan)]]></author>
			<pubDate>Sun, 09 Nov 2008 01:03:21 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/119008/#p119008</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/117987/#p117987</link>
			<description><![CDATA[<p>looking for a hero to make this hack work in punBB 1.2.20&nbsp; <img src="http://punbb.informer.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /><br />it does not work for latest versions. Can someone write a tutorial again <br />in my opinion everyone using 1.2 needs this<br />and there is no other seo hack like this one</p>]]></description>
			<author><![CDATA[dummy@example.com (gorsan)]]></author>
			<pubDate>Mon, 06 Oct 2008 11:40:02 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/117987/#p117987</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/102639/#p102639</link>
			<description><![CDATA[<p>ahhh... i am not picturing the viewtopic.php very clearly now. But are you sure you can move the template catch code to the end of the script?</p><p>Fantasma: Sorry i took so long to repply, i forgot about this thread.<br />I would do this some other time, but at this time i cant afford to put time on small code project. I would do it for a some money, but to be honest i feel kind of heavy conscience charging for a plugin to something that is kindly available for free.<br />But, more important than that there is another problem.<br />This module would require code hacking and database hacking, which basically means that you would have to manually make all the painfull changes when you update your forum. And it would all probably be useless when punbb 1.3 comes.</p><p>version 1.3 will have hooks and the plugins will be stored in the database. That will be the perfect conditions for the development of a mod like this.</p><p>If you can wait until 1.3 I think this mod should not take so long to pop up. Probably coded by me... i dunno.</p>]]></description>
			<author><![CDATA[dummy@example.com (pedrotuga)]]></author>
			<pubDate>Sat, 27 Oct 2007 01:39:15 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/102639/#p102639</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/102408/#p102408</link>
			<description><![CDATA[<p>This mod doesn&#039;t work&nbsp; with 1.2.15 because of the following change:<br /></p><div class="quotebox"><blockquote><p>* Moved template tag replacement of pun_include to the top of all replacements to prevent exploitation via XSS vulnerabilities. On top of this, all included files must have one of the file extensions .php, .php4, .php5, .inc, .html, .htm or .txt.</p></blockquote></div><p>So, if you want to use this mod you could undo this change by cutting the following code</p><div class="codebox"><pre><code>// START SUBST - &lt;pun_include &quot;*&quot;&gt;
while (preg_match(&#039;#&lt;pun_include &quot;([^/\\\\]*?)\.(php[45]?|inc|html?|txt)&quot;&gt;#&#039;, $tpl_main, $cur_include))
{
    if (!file_exists(PUN_ROOT.&#039;include/user/&#039;.$cur_include[1].&#039;.&#039;.$cur_include[2]))
        error(&#039;Unable to process user include &#039;.htmlspecialchars($cur_include[0]).&#039; from template main.tpl. There is no such file in folder /include/user/&#039;);

    ob_start();
    include PUN_ROOT.&#039;include/user/&#039;.$cur_include[1].&#039;.&#039;.$cur_include[2];
    $tpl_temp = ob_get_contents();
    $tpl_main = str_replace($cur_include[0], $tpl_temp, $tpl_main);
    ob_end_clean();
}
// END SUBST - &lt;pun_include &quot;*&quot;&gt;</code></pre></div><p>from header.php</p><p>and pasting it into footer.php before</p><div class="codebox"><pre><code>// Close the db connection (and free up any result data)
$db-&gt;close();</code></pre></div><p>But since this may cause a security issue I would appreciate advice on how to insert</p><div class="codebox"><pre><code>if($post_count == 1) $description = $cur_post[&#039;message&#039;];</code></pre></div><p>in viewtopic.php so that $description is available when template tag replacement of pun_include is made.</p><p>Any ideas?</p>]]></description>
			<author><![CDATA[dummy@example.com (maxcaban)]]></author>
			<pubDate>Tue, 23 Oct 2007 11:10:36 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/102408/#p102408</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101980/#p101980</link>
			<description><![CDATA[<p>yes i need this cand you do it?</p>]]></description>
			<author><![CDATA[dummy@example.com (fantasma)]]></author>
			<pubDate>Mon, 15 Oct 2007 16:10:20 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101980/#p101980</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101965/#p101965</link>
			<description><![CDATA[<p>that would require database hacking.<br />Now you are talking about something that can actually pull your site up in search engines.<br />But not by itself. You would need something like a tag cloud and modrewrite to take some advantage of those manually inserted meta tags.</p>]]></description>
			<author><![CDATA[dummy@example.com (pedrotuga)]]></author>
			<pubDate>Mon, 15 Oct 2007 12:46:33 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101965/#p101965</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101818/#p101818</link>
			<description><![CDATA[<p>this mod will be do!!! help</p>]]></description>
			<author><![CDATA[dummy@example.com (fantasma)]]></author>
			<pubDate>Fri, 12 Oct 2007 15:27:55 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101818/#p101818</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101813/#p101813</link>
			<description><![CDATA[<p>Nice mod this one - Subscribed for developments</p>]]></description>
			<author><![CDATA[dummy@example.com (Abercrombie)]]></author>
			<pubDate>Fri, 12 Oct 2007 14:23:13 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101813/#p101813</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101684/#p101684</link>
			<description><![CDATA[<p>i not have html allow</p>]]></description>
			<author><![CDATA[dummy@example.com (fantasma)]]></author>
			<pubDate>Wed, 10 Oct 2007 14:13:21 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101684/#p101684</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101683/#p101683</link>
			<description><![CDATA[<p>Do you have the allow_html mod ?<br />There should be no html code, the variable $description that we get from viewtopic with if($post_count == 1) $description = $cur_post[&#039;message&#039;]; contains BBcode that is removed in meta.php by the function parser_del_bbcode(). if you have html tags in your description that means they were in $cur_post[&#039;message&#039;] which is not possible for a standard punBB.</p>]]></description>
			<author><![CDATA[dummy@example.com (yemgi)]]></author>
			<pubDate>Wed, 10 Oct 2007 13:32:23 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101683/#p101683</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101682/#p101682</link>
			<description><![CDATA[<p>this mod not work with the version 1.2.15</p>]]></description>
			<author><![CDATA[dummy@example.com (fantasma)]]></author>
			<pubDate>Wed, 10 Oct 2007 11:46:50 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101682/#p101682</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101681/#p101681</link>
			<description><![CDATA[<p>no more ideas??</p>]]></description>
			<author><![CDATA[dummy@example.com (fantasma)]]></author>
			<pubDate>Wed, 10 Oct 2007 11:40:56 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101681/#p101681</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101581/#p101581</link>
			<description><![CDATA[<p>Hello guys!!!</p><p>bumb this discussion!!!!</p>]]></description>
			<author><![CDATA[dummy@example.com (fantasma)]]></author>
			<pubDate>Mon, 08 Oct 2007 13:34:36 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101581/#p101581</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SEO_mod for PunBB] Meta Keyword and meta description for each post]]></title>
			<link>http://punbb.informer.com/forums/post/101562/#p101562</link>
			<description><![CDATA[<p>hello</p><p>yes yemgi&nbsp; i done the modifications in viewtopic.php </p><p>but i think may be there is Conflict with another mods</p>]]></description>
			<author><![CDATA[dummy@example.com (basell)]]></author>
			<pubDate>Sun, 07 Oct 2007 13:51:06 +0000</pubDate>
			<guid>http://punbb.informer.com/forums/post/101562/#p101562</guid>
		</item>
	</channel>
</rss>
