<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[PunBB Forums — Expertise 1.0.0]]></title>
		<link>https://punbb.informer.com/forums/topic/9802/expertise-100/</link>
		<atom:link href="https://punbb.informer.com/forums/feed/rss/topic/9802/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Expertise 1.0.0.]]></description>
		<lastBuildDate>Fri, 12 Oct 2012 19:04:44 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Expertise 1.0.0]]></title>
			<link>https://punbb.informer.com/forums/post/146705/#p146705</link>
			<description><![CDATA[<p>Undiging .. <img src="https://punbb.informer.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>I am facing this message : </p><p> Could not get tag data from tables expertise_tags and expertise_links</p><p>Both table expertise_tags and expertise_links exists </p><p><span class="postimg"><img src="http://ncandelier.free.fr/expertise1.png" alt="http://ncandelier.free.fr/expertise1.png" /></span></p><p><span class="postimg"><img src="http://ncandelier.free.fr/expertise2.png" alt="http://ncandelier.free.fr/expertise2.png" /></span></p>]]></description>
			<author><![CDATA[null@example.com (kankan)]]></author>
			<pubDate>Fri, 12 Oct 2012 19:04:44 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/146705/#p146705</guid>
		</item>
		<item>
			<title><![CDATA[Re: Expertise 1.0.0]]></title>
			<link>https://punbb.informer.com/forums/post/82052/#p82052</link>
			<description><![CDATA[<p>Looks very interesting! Will implement this at my forums after my exams...</p>]]></description>
			<author><![CDATA[null@example.com (Bâshrat the Sneaky)]]></author>
			<pubDate>Sun, 26 Nov 2006 23:12:56 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/82052/#p82052</guid>
		</item>
		<item>
			<title><![CDATA[Re: Expertise 1.0.0]]></title>
			<link>https://punbb.informer.com/forums/post/82020/#p82020</link>
			<description><![CDATA[<p>Does anybody has this mod actually running ?</p><p>The modifications, remarks&nbsp; </p><div class="quotebox"><cite>Pogenwurst wrote:</cite><blockquote><p>Around here (I&#039;d give a line number but mine are out of sync because I had to make it play nice with the invitations mod):</p></blockquote></div><p>made are fine, but in Line 676, 770, 792, 812&nbsp; and 822 it looks that there are problems with the foreach statement and Array. I&#039;m not so experienced with changing it to a&nbsp; while statement, that&#039;s what I have found out could help.</p><p>Here are the error message when updating tags <br /></p><div class="quotebox"><blockquote><p>Warning: Invalid argument supplied for foreach() in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 770</p><p>Warning: Invalid argument supplied for foreach() in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 792</p><p>Warning: in_array() [function.in-array]: Wrong datatype for second argument in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 815</p><p>Warning: in_array() [function.in-array]: Wrong datatype for second argument in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 815</p><p>Warning: Invalid argument supplied for foreach() in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 822</p></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (jlangrock)]]></author>
			<pubDate>Sat, 25 Nov 2006 21:56:27 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/82020/#p82020</guid>
		</item>
		<item>
			<title><![CDATA[Re: Expertise 1.0.0]]></title>
			<link>https://punbb.informer.com/forums/post/59455/#p59455</link>
			<description><![CDATA[<p>Also I&#039;d suggest that votes could skip the confirmation if the tag already exists.</p>]]></description>
			<author><![CDATA[null@example.com (pogenwurst)]]></author>
			<pubDate>Fri, 30 Dec 2005 23:09:04 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/59455/#p59455</guid>
		</item>
		<item>
			<title><![CDATA[Re: Expertise 1.0.0]]></title>
			<link>https://punbb.informer.com/forums/post/59454/#p59454</link>
			<description><![CDATA[<p>Nice mod. I intalled it on my forums. However, I found a couple of bugs.</p><p>Around here (I&#039;d give a line number but mine are out of sync because I had to make it play nice with the invitations mod):</p><div class="codebox"><pre><code>// find the users who have been tagged with it</code></pre></div><p>You need to insert the DB prefix in the query like so:</p><div class="codebox"><pre><code>FROM &quot;. EXPERTISE_LINKS_TABLE .&quot; l, &quot;.$db-&gt;prefix.&quot;users u</code></pre></div><p>As you do around here:</p><div class="codebox"><pre><code>// get current tagging users data for this user, if any</code></pre></div><p>Replace query with:</p><div class="codebox"><pre><code>$sql = &quot;SELECT DISTINCT u.id, u.username FROM &quot;.$db-&gt;prefix.&quot;users u, &quot;. EXPERTISE_LINKS_TABLE .&quot; l</code></pre></div><p>Otherwise, this pretty much doesn&#039;t work if you use a DB prefix for your forum.</p><p>I&#039;m not sure why, but in the transfer screen after adding a tag there is the following error:</p><div class="quotebox"><blockquote><p>Warning: Invalid argument supplied for foreach() in..... .......on line 675</p></blockquote></div><p>Also for anyone with Tobi&#039;s invitations mod, edit expertise.php:</p><p>Find:</p><div class="codebox"><pre><code>define(&#039;PUN_ROOT&#039;, &#039;./&#039;);
require PUN_ROOT.&#039;include/common.php&#039;;
require PUN_ROOT.&#039;expertise_include.php&#039;;
require PUN_ROOT.&#039;lang/&#039;.$pun_user[&#039;language&#039;].&#039;/expertise_lang.php&#039;;
require PUN_ROOT.&#039;lang/&#039;.$pun_user[&#039;language&#039;].&#039;/profile.php&#039;;</code></pre></div><p>After, add:</p><div class="codebox"><pre><code>require PUN_ROOT.&#039;lang/&#039;.$pun_user[&#039;language&#039;].&#039;/invitation.php&#039;;</code></pre></div><p>Also, some suggestions:<br />- Make already confirmed tags viewable in the profile, then have a link just to add them<br />- Let guests view confirmed tags<br />Like you said in the notes:<br /> - Some kind of notification when you have new tags waiting<br /> - Administrator button to remove unused tags from the database<br />And some picky OCD things:<br /> - Move expertise_include.php to /include<br /> - Rename expertise_lang.php to just expertise.php<br />(Those don&#039;t really matter but they bug me)</p><p>Otherwise, great mod, thanks for making it. It looks like you put a lot of effort into it.</p>]]></description>
			<author><![CDATA[null@example.com (pogenwurst)]]></author>
			<pubDate>Fri, 30 Dec 2005 22:54:26 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/59454/#p59454</guid>
		</item>
		<item>
			<title><![CDATA[Re: Expertise 1.0.0]]></title>
			<link>https://punbb.informer.com/forums/post/59133/#p59133</link>
			<description><![CDATA[<p>hey! Thats pretty cool!</p>]]></description>
			<author><![CDATA[null@example.com (Twig)]]></author>
			<pubDate>Wed, 21 Dec 2005 18:55:20 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/59133/#p59133</guid>
		</item>
		<item>
			<title><![CDATA[Re: Expertise 1.0.0]]></title>
			<link>https://punbb.informer.com/forums/post/58697/#p58697</link>
			<description><![CDATA[<p>Very nice</p>]]></description>
			<author><![CDATA[null@example.com (Rickard)]]></author>
			<pubDate>Mon, 12 Dec 2005 10:19:11 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/58697/#p58697</guid>
		</item>
		<item>
			<title><![CDATA[Expertise 1.0.0]]></title>
			<link>https://punbb.informer.com/forums/post/58674/#p58674</link>
			<description><![CDATA[<p>This mod will allow your forum users to tag each other&#039;s areas of expertise, with confirmation. This tagging is done through plain text keywords which describe what a user knows.&nbsp; This is called cognitive authority.&nbsp; The management interface for these tags, this expertise, is integrated into the existing Profile pages.</p><br /><p>Project: <a href="http://punres.org/desc.php?pid=133">http://punres.org/desc.php?pid=133</a><br />Download and Screenshots: <a href="http://punres.org/files.php?pid=133">http://punres.org/files.php?pid=133</a></p><p>PunRes Discussion: <a href="http://punres.org/viewtopic.php?id=925">http://punres.org/viewtopic.php?id=925</a></p>]]></description>
			<author><![CDATA[null@example.com (trel1023)]]></author>
			<pubDate>Sun, 11 Dec 2005 23:31:30 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/58674/#p58674</guid>
		</item>
	</channel>
</rss>
