<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Phorum Support Forums - Phorum Integration</title>
        <description>Need to make Phorum play with your CMS? Want to use Phorums user database for the rest of your site. Discuss those topics with others here.</description>
        <link>https://www.phorum.org/phorum5/list.php?28</link>
        <lastBuildDate>Thu, 21 May 2026 09:34:59 -0400</lastBuildDate>
        <generator>Phorum 5.2.22</generator>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,162080,162080#msg-162080</guid>
            <title>Trying to use Sphider Search (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,162080,162080#msg-162080</link>
            <description><![CDATA[ I am trying to add a directory named SEARCH and have search for and results appear in index.php where folder loop info appears, but under a totally different name like index2.php. What files do I need to modify?]]></description>
            <dc:creator>ClickRaider</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 01 Aug 2018 05:57:54 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,161876,161876#msg-161876</guid>
            <title>Add Phorum to Drupal (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,161876,161876#msg-161876</link>
            <description><![CDATA[ Hi,<br />
I would like Phorum to integrate to an existing Drupal site...<br />
Is it possible? Now Phorum is runing under its own directory home/Phorum and Drupal in home/Drupal<br />
<br />
Thanks for you help,<br />
Fred]]></description>
            <dc:creator>Fred_O</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 23 Feb 2018 17:33:22 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,161704,161704#msg-161704</guid>
            <title>[Resoved]Integration dokuwiki (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,161704,161704#msg-161704</link>
            <description><![CDATA[ Hello, I have phorum installed in a directory : /forum and Dokuwiki is installing on / directory.<br />
How to put the dokuwiki header, footer and menu on my forum template.<br />
My template phorum is emerald and dokuwiki theme bootstrap.<br />
<br />
Thank]]></description>
            <dc:creator>ghost2b</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sun, 11 Jun 2017 10:58:58 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,156149,156149#msg-156149</guid>
            <title>how to integrate phorum in joomla (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,156149,156149#msg-156149</link>
            <description><![CDATA[ hello is there any way to recover phorum under Kuena joomla.<br />
<br />
thk<br />
<br />
best regard]]></description>
            <dc:creator>JPFaucon</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 30 Oct 2015 14:45:19 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,155756,155756#msg-155756</guid>
            <title>Cometchat - how to get session? (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,155756,155756#msg-155756</link>
            <description><![CDATA[ Hi,<br />
<br />
to get cometchat in touch with phorum, comtchat must know the name of the usersession (i think):<br />
<br />
I quoted some instructions from <a href="http://www.cometchat.com/documentation/installing-cometchat/custom-coded-site/php-site/" target="_blank"  rel="nofollow">http://www.cometchat.com/documentation/installing-cometchat/custom-coded-site/php-site/</a>:<br />
<br />
[quote=&quot;<br />
<br />
If you have written a simple PHP authentication, then during the authentication, you can specify a session variable like:<br />
<br />
 /* In your own login.php */<br />
/* After you authenticate the user */<br />
$_SESSION[&#039;userid&#039;] = $users[&#039;id&#039;]; // Modify to suit requirements<br />
<br />
Then your getUserID() function will look like:<br />
<br />
function getUserID() {<br />
  $userid = 0; // Return 0 if user is not logged in<br />
<br />
  if (!empty($_SESSION[&#039;userid&#039;])) {<br />
      $userid = $_SESSION[&#039;userid&#039;];<br />
  } <br />
  $userid = intval($userid);<br />
  return $userid;<br />
}<br />
<br />
If you are using a cookie then configure the same using the following function:<br />
<br />
function getUserID() {<br />
  $userid = 0; // Return 0 if user is not logged in<br />
<br />
  if (!empty($_COOKIE[&#039;userid&#039;])) {<br />
	$userid = $_COOKIE[&#039;userid&#039;];<br />
  }<br />
  $userid = intval($userid);<br />
  return $userid;<br />
}<br />
<br />
If you are using a more complex method of authentication like storing the session_hash in the database, then your getUserID() function will look something like:<br />
<br />
function getUserID() {<br />
    $userid = 0; // Return 0 if user is not logged in<br />
    <br />
if (!empty($_COOKIE[&#039;sessionhash&#039;])) {<br />
    $sql = (&quot;select userid from &quot;.TABLE_PREFIX.&quot;session <br />
            where sessionhash = &#039;&quot;.mysql_real_escape_string($_COOKIE[&#039;sessionhash&#039;]).&quot;&#039;&quot;);<br />
	    $query = mysql_query($sql);<br />
	    $session = mysql_fetch_array($query);<br />
	    $userid = $session[&#039;userid&#039;];<br />
    }<br />
   $userid = intval($userid);<br />
   return $userid;<br />
}<br />
<br />
&quot;]<br />
<br />
[/quote]<br />
<br />
Can anybody tel me how to edit the code?<br />
<br />
Cheers,<br />
Homer]]></description>
            <dc:creator>networkinghomer</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sun, 07 Jun 2015 12:21:41 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,155071,155071#msg-155071</guid>
            <title>embedding phorum in current design (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,155071,155071#msg-155071</link>
            <description><![CDATA[ Firstly, i must apologise i have looked through the forum and found some information regarding embed_phorum, however all information i fear may be out of date and the previously mentioned module isnt available for the latest phorum from what i gather.<br />
<br />
I have a website currently under construction, its file tree looks similar to this:<br />
<pre class="bbcode">
index.php
css/
   &gt;deafult.css
blocks/
   &gt;main.php
   &gt;about.php
   &gt;wiki.php
   &gt;forum.php
img/
forum/
...</pre>
<br />
index.php uses and array to pull in the requested page from the blocks directory and show the contents in a &lt;div&gt; (class=&quot;content&quot; if it makes any difference.) I have four main divs, header, nav, content and footer. What i would really like to acheive is when the user selects the <i>forum</i> hyperlink on index.php for my entire phorum to be pulled into the &lt;div class=&quot;content&quot;&gt; section preserving the rest of my site design.<br />
<br />
phorum is currently installed to /forum , forum.php in the blocks directory currently just has a simple html statement saying &quot;This is the forum page&quot; at the moment, but i presume that I will need to use this to pull in some hacked php to enable my entire phorum to pull through as i would like.<br />
<br />
The problem is im not a coder by any stretch of the imagination, Im not asking someone to directly solve this issue for me and hand it to me, but if someone could possibly take the time to perhaps hold my hand a little and guide me in the right direction i will gladly do my best to understand what i need to do to incorporate this :)<br />
<br />
Thanks for your time reading this, and i look forward to any responses]]></description>
            <dc:creator>sferguson203</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sun, 08 Jun 2014 09:24:48 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,154892,154892#msg-154892</guid>
            <title>Posts Table (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,154892,154892#msg-154892</link>
            <description><![CDATA[ I am looking for information on pulling recently posted topics on an external php page outside of Phorum.<br />
<br />
I wanted to display them on our homepage&#039;s sidebar, but can&#039;t seem to find the table or file that they&#039;re stored in.]]></description>
            <dc:creator>punkkmedia</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 21 Jan 2014 00:54:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,154432,154432#msg-154432</guid>
            <title>How to disable some user functions? (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,154432,154432#msg-154432</link>
            <description><![CDATA[ Hi there,<br />
<br />
I&#039;m integrating Phorum with my website. It&#039;s very well done, I easily managed to login from my website and create the user on the fly if needed, etc. Then I disabled registration, login and logout from Phorum, the same way it&#039;s done in the External Auth. plugin.<br />
<br />
But I don&#039;t understand how to disable other things that will mess with the integration: &quot;change password&quot; for example, &quot;change email&quot;, etc. I don&#039;t want the users to change it in Phorum, they should do it in my website.<br />
<br />
Can anyone give me a hint on how to achieve that? Thanks a lot!]]></description>
            <dc:creator>remouk</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sat, 12 Oct 2013 07:31:32 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,154358,154358#msg-154358</guid>
            <title>Users authenticate twice (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,154358,154358#msg-154358</link>
            <description><![CDATA[ Hi<br />
I have integrated Phorum within our site and it authenticates using the apache ldap external plugin.  But for some reason, the user has to enter their credentials twice, one for the site and again for Phorum.  I assume the site is not passing the user information to Phorum. What step am I missing?<br />
<br />
I did a search but could not find a similar problem.  If a thread already exists, please forward it.<br />
<br />
Thanks in advance!]]></description>
            <dc:creator>rbrown</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sat, 28 Sep 2013 02:58:27 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,154319,154319#msg-154319</guid>
            <title>Integration in the general case (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,154319,154319#msg-154319</link>
            <description><![CDATA[ Users (including me) have, in the past, wondered why it is so difficult to integrate blogs forums and shopping carts that normally want to be autonomous pages. In other words, why can&#039;t Phorum appear as the contents of a DIV inside some other layout context? Why can&#039;t I put phorum inside my header-navigation-and-main-display pages, without using an IFRAME?<br />
<br />
The answer is complex, but it seems to have  a lot to do with conditional if($x&lt;$y) header(&quot;location: xxx&quot;) else .... switching.  Answers to that question (from Phorum developers) often complain that although that goal is entirely doable, it is far too much work to accomplish, perhaps involving huge amounts of Javascript.<br />
<br />
In a slightly related context someone here did publish the guts of a way to place a Phorum discussion at the foot of every page, on an arbitrary website. I remember the example given, and it worked nicely. But it was painfully difficult to pull off.<br />
<br />
======= <br />
So why don&#039;t software systems like Phorum adhere to an integration API of some kind? If ALL get and post parameters specific to Phorum where named with a unique three character prefix followed by and underscore, it would be a fairly simple problem to write a plugin manager for any enclosing Content Management system.  ?cms_page=whatever&amp;phm_readphp=1234<br />
<br />
<b>Perhaps I&#039;m missing something. Perhaps I&#039;m missing a lot.</b> But I don&#039;t see why an enclosing content management system couldn&#039;t parse a URL like that.  Recognize phm_   refers to a well-known  &quot;plugin&quot; named phorum who wants to make use of a routine named read.php with parameter 1234.  Produce the phm_   output before pushing anything down the internet pipe. Save it as a string and then push it into a block element inside the CMS page and then write to port 80.  If all important content producers followed an established plugin API, then any system could make use of any other.<br />
<br />
Phorum could have a blog attached.  Open Cart could have product category forums.  Etc.]]></description>
            <dc:creator>salmobytes</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 18 Sep 2013 16:03:03 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,154286,154286#msg-154286</guid>
            <title>Using mod_inherit_authentication_from_session (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,154286,154286#msg-154286</link>
            <description><![CDATA[ Hi, I am attempting to use the <i>inherit authentication from session module</i> with a member website. As I have no php knowledge I enlisted the help of the developer of the authentication/cms system I am using (WebAssist/SecurityAssist), who inserted the code he thought should work (see below). Unfortunately it doesn&#039;t - phorum login is now disabled and the session authentication doesn&#039;t follow through. (I can of course reinstate phorum login by disabling the mod).<br />
<br />
<span style="color:#663300">&lt;?php<br />
<br />
/* phorum module info<br />
hook:  user_session_restore|inherit_authentication_from_session<br />
title: Inherit authentication from session<br />
desc:  This module will use session data of a main application to create and authenticate a Phorum user. Note that this module was written as an example and will need work if you want to apply it for your own purposes.<br />
*/<br />
<br />
function inherit_authentication_from_session($session_data)<br />
{<br />
    // Initialize the session data as &quot;not logged in&quot;.<br />
    $session_data[PHORUM_SESSION_LONG_TERM] = FALSE;<br />
    $session_data[PHORUM_SESSION_SHORT_TERM] = FALSE;<br />
<br />
    // Start the PHP session management when it&#039;s not already started.<br />
    if (!session_id()) session_start();<br />
<br />
    // In the main application, the user data is stored in the session.<br />
    // If no user is set, then we are done here.<br />
    if (empty($_SESSION[&#039;userID&#039;])) return $session_data;<br />
<br />
    // Build a Phorum compatible user data array.<br />
    $active_user_data = array(<br />
        &#039;user_id&#039;  =&gt; $_SESSION[&#039;SecurityAssist_id_members&#039;],<br />
        &#039;username&#039; =&gt; $_SESSION[&#039;firstName&#039;] . &quot; &quot; .$_SESSION[&#039;lastName&#039;],<br />
        &#039;password&#039; =&gt; &#039;*NO PASSWORD SET*&#039;, // not needed for regular users<br />
        &#039;email&#039;    =&gt; $_SESSION[&#039;email&#039;], // needed for e-mail notifications<br />
        &#039;admin&#039;    =&gt; 0,<br />
        &#039;active&#039;   =&gt; PHORUM_USER_ACTIVE<br />
    );<br />
<br />
    // Hardcoded: user &quot;Terradon&quot; is admin in phorum<br />
    if ($active_user_data[&#039;username&#039;] == &#039;Terradon&#039;) {<br />
        $active_user_data[&#039;admin&#039;] = 1;<br />
        $active_user_data[&#039;password&#039;] = md5($_SESSION[&#039;password&#039;]);<br />
    }<br />
<br />
    // Load the Phorum api code for various user-related functions.<br />
    include_once &quot;./include/api/user.php&quot;;<br />
<br />
    // Check if a Phorum user exists for the active username.<br />
    $user_id = phorum_api_user_search(&quot;username&quot;, $active_user_data[&#039;username&#039;]);<br />
<br />
    // The user exists in Phorum. Load the existing data.<br />
    if ($user_id) {<br />
        $phorum_user_data = phorum_api_user_get($user_id);<br />
    }<br />
    // The user does not exist. Create a new user.<br />
    else<br />
    {   <br />
        // prevent conflicts with Phorum user_ids by letting Phorum generate<br />
        // its own user_id value.<br />
        $active_user_data[&#039;user_id&#039;] = NULL;<br />
<br />
        $user_id = phorum_api_user_save($active_user_data, PHORUM_FLAG_RAW_PASSWORD);<br />
        $active_user_data[&#039;user_id&#039;] = $user_id;<br />
        $phorum_user_data = $active_user_data;<br />
    }    <br />
<br />
    // If the user is not active, then do not log them in.<br />
    if ($phorum_user_data[&#039;active&#039;] != PHORUM_USER_ACTIVE) {<br />
        return $session_data;<br />
    }<br />
<br />
    // Since we have a simple admin setup (a fixed user), we take care of<br />
    // syncing the admin user by simply always saving data for this user.<br />
    if ($active_user_data[&#039;admin&#039;]) {<br />
        phorum_api_user_save($active_user_data, PHORUM_FLAG_RAW_PASSWORD);<br />
    }<br />
<br />
    // We have a legit user, so set the session info.<br />
    $session_data[PHORUM_SESSION_LONG_TERM] = $user_id;<br />
    $session_data[PHORUM_SESSION_SHORT_TERM] = $user_id;<br />
<br />
    return $session_data;<br />
}</span><br />
<br />
<br />
<br />
In the cookie/session Settings I have:<br />
Use Cookies: Require cookies<br />
Session path:  /<br />
Session domain: <i>empty field</i><br />
<br />
I don&#039;t know if it makes any difference but at this point passwords for the main site login are not encrypted.<br />
<br />
Can anyone give me some pointers please before I re-engage the WebAssist expert?<br />
<br />
Many thanks,<br />
Sylvia]]></description>
            <dc:creator>WordWitch</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 09 Sep 2013 02:29:46 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,154274,154274#msg-154274</guid>
            <title>A different kind of Wordpress Integration? (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,154274,154274#msg-154274</link>
            <description><![CDATA[ Hi guys, i&#039;ve had a search but can&#039;t find anything related to this specifically, only about logging in/registering...<br />
<br />
If I have a wordpress website and phorum, is it possible to feed the latest posts in wordpress to the Phorum page, and then link to them in the forum, without going through and manually linking to them?<br />
<br />
So for example:<br />
<br />
News Headline!<br />
<br />
News Story<br />
<br />
Click here to discuss this on the forum...<br />
<br />
The story is automatically posted to the forum in a different colour font etc to show it&#039;s a news item, and you can then discuss it in the forum?<br />
<br />
Thanks in advance!]]></description>
            <dc:creator>Brummie</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sat, 07 Sep 2013 06:08:55 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,153723,153723#msg-153723</guid>
            <title>user_session_restore mod problem (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,153723,153723#msg-153723</link>
            <description><![CDATA[ I&#039;ve created a user_session_restore mod, using the various approaches discussed on the list. I create a user in the Phorum db to match the userid in my main site.<br />
<br />
In main site user validation code:<br />
<br />
if( !isset( $_SESSION[&#039;phorum_user_id&#039;] ) )<br />
{<br />
$GLOBALS[&quot;PHORUM&quot;][&quot;user&quot;][&quot;user_id&quot;] = $userindex;<br />
$_SESSION[&#039;phorum_user_id&#039;] = $userindex;<br />
}<br />
<br />
and the mod looks like...<br />
<br />
/* phorum module info<br />
hook:  user_session_restore|mod_ext_user_session_restore<br />
title: External user authentication<br />
desc:  This mod enables external user authentication.<br />
*/<br />
<br />
function mod_ext_user_session_restore($sessions)<br />
{<br />
<br />
    if (defined(&#039;PHORUM_ADMIN&#039;) || defined(&#039;PHORUM5_CONVERSION&#039;)) <br />
    	return $session;<br />
 <br />
	if( $sessions[PHORUM_SESSION_SHORT_TERM] || $sessions[PHORUM_SESSION_LONG_TERM] )<br />
		return $sessions;<br />
<br />
    if (!session_id()) session_start();<br />
<br />
	if( empty($_SESSION[&#039;phorum_user_id&#039;]) )<br />
		{<br />
		$phorum_user_id = FALSE;<br />
		}<br />
	else<br />
		{<br />
		$phorum_user_id = $_SESSION[&#039;phorum_user_id&#039;];<br />
// ---- code gets to here and has the correct userid<br />
// ---- that matches a user in the Phorum database<br />
		}<br />
    $sessions[PHORUM_SESSION_LONG_TERM] = $phorum_user_id;<br />
    $sessions[PHORUM_SESSION_SHORT_TERM] = $phorum_user_id;<br />
    if ($phorum_user_id) <br />
    	{<br />
    	$user_data = phorum_api_user_get($phorum_user_id);<br />
        if ($user_data &amp;&amp; ($user_data[&#039;admin&#039;] &gt; 0)) <br />
        	{<br />
            $session[PHORUM_SESSION_ADMIN] = $phorum_user_id;<br />
	        }<br />
        else <br />
	        {<br />
            $session[PHORUM_SESSION_ADMIN] = FALSE;<br />
    	    }<br />
    	}<br />
    return $sessions;<br />
}<br />
<br />
Phorum seems to run the mod and detects the userid however does not appear to actually log the user in.  The user still gets a &quot;Registration is required&quot; message.<br />
<br />
Any help would be welcome !!<br />
<br />
Alan]]></description>
            <dc:creator>alandc</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 17 Jun 2013 07:39:49 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,153509,153509#msg-153509</guid>
            <title>custome home page (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,153509,153509#msg-153509</link>
            <description><![CDATA[ hello,<br />
<br />
i need to gather statistics about my forum and dislay in a custome home page. the data i need is<br />
<br />
Display annoucements<br />
List all Forum categories<br />
List of forum topics<br />
list recent 5 topics cpmmented on or posted<br />
list recent 4 topics from a particular forum<br />
<br />
how do i get this data, any documentation  fot this]]></description>
            <dc:creator>coolcurrent</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 29 Mar 2013 20:59:04 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,153281,153281#msg-153281</guid>
            <title>Creating a preview-area on a website (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,153281,153281#msg-153281</link>
            <description><![CDATA[ Hey everyone,<br />
<br />
first of all, I&#039;m <i>very</i> new to this whole thing, so maybe some of my questions may be silly or lack essential information - in that case, please just ask!<br />
<br />
I&#039;m currently tasked with finding a solution for the following problem:<br />
<br />
The university website I work for has been using Phorum for a while now and is currently in the process of developing a new intranet. A planned small feature of this new intranet will be a &quot;classifieds&quot; section, i.e. sort of a &quot;trading post&quot;, allowing for small ads to buy and/or sell stuff.<br />
Since Phorum seems to be a solid backbone for this (and it is already working with the central user database) I was thinking about using it for this task.<br />
However, I was asked if there is any way to create a small &quot;preview&quot;-area on the new intranet starting page that displays the 3-5 latest postings of the two sub-forums (Buying / Selling), containing not much more than the thread title, user name and date, as well as a link to the Phorum thread.<br />
<br />
Is there a plugin, script or something alike that can help me solve this task?<br />
<br />
Thanks a lot for your time!]]></description>
            <dc:creator>KnutBoehmer</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sat, 09 Feb 2013 05:50:04 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,153260,153260#msg-153260</guid>
            <title>Integrate login w/phpfox platform? (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,153260,153260#msg-153260</link>
            <description><![CDATA[ I can&#039;t tell you how excited I am to have found Phorum.  I&#039;ve searched for years and somehow missed it.  Your threaded discussion option is precisely what I&#039;m looking forward and haven&#039;t found elsewhere.<br />
<br />
First, I&#039;m not a developer (though I do have help in that regard), so please forgive my ignorance in asking my question.  :)<br />
<br />
I&#039;m thinking it may be best to upload a Phorum board to a separate domain extension for my site rather than upload to a subdomain.<br />
<br />
The main thing I would need is the ability to have login integration with my main site, so members can use tools in both places without separate logins.<br />
<br />
1.  Anyone have experience with such integration with the phpfox platform?<br />
<br />
2.  Also, is it possible to see an existing, live board (rather than demo) of a site using the threaded layout, or be able to view the admin functions -- maybe I missed the admin demo?<br />
<br />
Thanks.  :)]]></description>
            <dc:creator>wishadoo</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 05 Feb 2013 02:09:03 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,153029,153029#msg-153029</guid>
            <title>Sometimes phorum session cookie not set right? (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,153029,153029#msg-153029</link>
            <description><![CDATA[ I noticed a strange behaviour of my the phorum session cookie. <br />
Some visitors get logged out when visiting the phorum part of our site.<br />
I use an external authentication and they lose that login too.<br />
When they log in for the second time, everything goes well?<br />
<br />
Apperently, the phorum session cookie is not set (well)?<br />
My problem is, i had the same problem for a while, but after my second login i can&#039;t reproduce this problem anymore? I cleared cache and all cookies, but no problem? The next day it happens again??<br />
<br />
I don&#039;t now for how long this problem exist, but from just one person i know he never can enter the forum, some do have this problem, most others have no problem at all?<br />
<br />
Anyone any idea?]]></description>
            <dc:creator>Terradon</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 04 Jan 2013 01:17:30 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,152892,152892#msg-152892</guid>
            <title>How to check login status on phorum based site? (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,152892,152892#msg-152892</link>
            <description><![CDATA[ Hi,<br />
i want to use phorum-functions for a portal-site.<br />
I know i have to include common.php in my header-file, so all main phorum functions are always available.<br />
I will use the original login page (xxxxxxxx.nl/forum/login.php).<br />
<br />
But, after including common.php in site-pages, how do i check if an user is logged in for phorum (and by this, logged in for the whole website?)<br />
<br />
Something like:<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw1">if</span><span class="br0">&#40;</span>loggedin<span class="br0">&#41;</span>
    <span class="co1">//do this</span>
<span class="kw1">else</span>
   <span class="co1">//do something else</span></pre>]]></description>
            <dc:creator>Terradon</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 21 Dec 2012 15:54:04 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,152679,152679#msg-152679</guid>
            <title>Login Link from Main Site Goes to Javascript.php (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,152679,152679#msg-152679</link>
            <description><![CDATA[ I&#039;m using TNG (The Next Generation) which has its own user table, authentication, etc. I put in the mod for &quot;Inherit Authentication for System&quot; and am calling the username and email. I can login with TNG and then see the username on Phorum, as well as post, send private messages, etc. I would now like to change the login/logout URLs on the index page  to point to the login screen on TNG. I have changed the login/logout params in header.tpl to go to the exact URLs. The logout works great. And the direct login link goes to the right location on TNG to use that page. But when I login from TNG after logging out from Phorum, up pops what must be a redirect to the Phorum javascript.php which shows as text. Of course if I login FROM TNG, no problem. Any idea what I need to change and where that is somehow calling javascript.php?]]></description>
            <dc:creator>smiths</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sun, 02 Dec 2012 23:04:20 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,152546,152546#msg-152546</guid>
            <title>Integration with bidding site (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,152546,152546#msg-152546</link>
            <description><![CDATA[ Can someone tell me why this does not work?<br />
<br />
&lt;? $value2 = {USER-&gt;username}; ?&gt;<br />
I&#039;m running it inside header.tpl<br />
<br />
EDIT: <br />
$PHORUM[&#039;DATA&#039;][&#039;USER&#039;][&#039;username&#039;];]]></description>
            <dc:creator>PRICECHR</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 29 Oct 2015 12:15:44 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,152430,152430#msg-152430</guid>
            <title>MOD FORUM (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,152430,152430#msg-152430</link>
            <description><![CDATA[ Hello, I former military and a programming novice. I am trying to create a website. When reading any message on a phorum such as this one, you see there is an option next to the users name to PM that user. I am attempting to place an image that links to another URL next to that link labeled PM. If anyone here can save me some time, I have a plethora of tools at my disposal and or compensation. Thank you.]]></description>
            <dc:creator>PRICECHR</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 29 Oct 2012 16:54:00 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,152335,152335#msg-152335</guid>
            <title>Integration with current userbase not working in IE/Safari (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,152335,152335#msg-152335</link>
            <description><![CDATA[ Hello all, I am using a system I found on this forum: <br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw2">function</span> inherit_authentication_from_session<span class="br0">&#40;</span><span class="re0">$session_data</span><span class="br0">&#41;</span>
<span class="br0">&#123;</span>
    <span class="co1">// Initialize the session data as &quot;not logged in&quot;.</span>
    <span class="re0">$session_data</span><span class="br0">&#91;</span>PHORUM_SESSION_LONG_TERM<span class="br0">&#93;</span> <span class="sy0">=</span> <span class="kw4">FALSE</span><span class="sy0">;</span>
    <span class="re0">$session_data</span><span class="br0">&#91;</span>PHORUM_SESSION_SHORT_TERM<span class="br0">&#93;</span> <span class="sy0">=</span> <span class="kw4">FALSE</span><span class="sy0">;</span>
&nbsp;
    <span class="co1">// Start the PHP session management when it';s not already started.</span>
    <span class="kw1">if</span> <span class="br0">&#40;</span><span class="sy0">!</span><a href="http://www.php.net/session_id"><span class="kw3">session_id</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <a href="http://www.php.net/session_start"><span class="kw3">session_start</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
    <span class="co1">// In the main application, the user data is stored in the session.</span>
    <span class="co1">// If no user is set, then we are done here.</span>
    <span class="kw1">if</span><span class="br0">&#40;</span><a href="http://www.php.net/empty"><span class="kw3">empty</span></a><span class="br0">&#40;</span><span class="re0">$_SESSION</span><span class="br0">&#91;</span><span class="st_h">';nick'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="kw1">return</span> <span class="re0">$session_data</span><span class="sy0">;</span>
		<span class="co1">//session_start();</span>
&nbsp;
    <span class="co1">// Build a Phorum compatible user data array.</span>
    <span class="re0">$active_user_data</span> <span class="sy0">=</span> <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span>
        <span class="st_h">';username'</span><span class="sy0">;</span> <span class="sy0">=&gt;</span> <span class="re0">$_SESSION</span><span class="br0">&#91;</span><span class="st_h">';nick'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="sy0">,</span>
        <span class="st_h">';password'</span><span class="sy0">;</span> <span class="sy0">=&gt;</span> <a href="http://www.php.net/md5"><span class="kw3">md5</span></a><span class="br0">&#40;</span><span class="re0">$_SESSION</span><span class="br0">&#91;</span><span class="st_h">';password'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">,</span> <span class="co1">// not needed for regular users</span>
        <span class="st_h">';email'</span><span class="sy0">;</span>    <span class="sy0">=&gt;</span> <span class="st_h">';default@default.com'</span><span class="sy0">;,</span> <span class="co1">// needed for e-mail notifications $_SESSION[';userEmail';]</span>
        <span class="st_h">';admin'</span><span class="sy0">;</span>    <span class="sy0">=&gt;</span> <span class="nu0">0</span><span class="sy0">,</span>
        <span class="st_h">';active'</span><span class="sy0">;</span>   <span class="sy0">=&gt;</span> PHORUM_USER_ACTIVE
    <span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
    <span class="co1">// Hardcoded: user &quot;Terradon&quot; is admin in phorum</span>
    <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';username'</span><span class="sy0">;</span><span class="br0">&#93;</span> <span class="sy0">==</span> <span class="st_h">';Admin'</span><span class="sy0">;</span> OR <span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';username'</span><span class="sy0">;</span><span class="br0">&#93;</span> <span class="sy0">==</span> <span class="st_h">';test'</span><span class="sy0">;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
        <span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';admin'</span><span class="sy0">;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="nu0">1</span><span class="sy0">;</span>
&nbsp;
    <span class="br0">&#125;</span>
&nbsp;
    <span class="co1">// Load the Phorum api code for various user-related functions.</span>
    <span class="kw1">include_once</span> <span class="st0">&quot;./include/api/user.php&quot;</span><span class="sy0">;</span>
&nbsp;
    <span class="co1">// Check if a Phorum user exists for the active username.</span>
    <span class="co1">// If the user does not exist. Create a new user.</span>
    <span class="re0">$user_id</span> <span class="sy0">=</span> phorum_api_user_search<span class="br0">&#40;</span><span class="st0">&quot;username&quot;</span><span class="sy0">,</span> <span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';username'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">;</span>
    <span class="kw1">if</span> <span class="br0">&#40;</span><span class="sy0">!</span><span class="re0">$user_id</span><span class="br0">&#41;</span>
    <span class="br0">&#123;</span>
        <span class="co1">// prevent conflicts with Phorum user_ids by letting Phorum generate</span>
        <span class="co1">// its own user_id value.</span>
        <span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';user_id'</span><span class="sy0">;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="kw4">NULL</span><span class="sy0">;</span>
        <span class="re0">$user_id</span> <span class="sy0">=</span> phorum_api_user_save<span class="br0">&#40;</span><span class="re0">$active_user_data</span><span class="sy0">,</span> PHORUM_FLAG_RAW_PASSWORD<span class="br0">&#41;</span><span class="sy0">;</span>
    <span class="br0">&#125;</span>    
&nbsp;
    <span class="co1">// Load the existing user data.</span>
    <span class="re0">$phorum_user_data</span> <span class="sy0">=</span> phorum_api_user_get<span class="br0">&#40;</span><span class="re0">$user_id</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
    <span class="co1">// If the user is not active, then do not log them in.</span>
    <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$phorum_user_data</span><span class="br0">&#91;</span><span class="st_h">';active'</span><span class="sy0">;</span><span class="br0">&#93;</span> <span class="sy0">!=</span> PHORUM_USER_ACTIVE<span class="br0">&#41;</span> <span class="br0">&#123;</span>
        <span class="kw1">return</span> <span class="re0">$session_data</span><span class="sy0">;</span>
    <span class="br0">&#125;</span>
&nbsp;
    <span class="co1">// Sync user data if any of the input fields is different from the</span>
    <span class="co1">// data that is stored for the Phorum user in the database.</span>
    <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';admin'</span><span class="sy0">;</span><span class="br0">&#93;</span>    <span class="sy0">!=</span> <span class="re0">$phorum_user_data</span><span class="br0">&#91;</span><span class="st_h">';admin'</span><span class="sy0">;</span><span class="br0">&#93;</span>  <span class="sy0">||</span>
        <span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';email'</span><span class="sy0">;</span><span class="br0">&#93;</span>    <span class="sy0">!=</span> <span class="re0">$phorum_user_data</span><span class="br0">&#91;</span><span class="st_h">';email'</span><span class="sy0">;</span><span class="br0">&#93;</span>  <span class="sy0">||</span>
        <span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';active'</span><span class="sy0">;</span><span class="br0">&#93;</span>   <span class="sy0">!=</span> <span class="re0">$phorum_user_data</span><span class="br0">&#91;</span><span class="st_h">';active'</span><span class="sy0">;</span><span class="br0">&#93;</span> <span class="sy0">||</span>
        <span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';password'</span><span class="sy0">;</span><span class="br0">&#93;</span> <span class="sy0">!=</span> <span class="re0">$phorum_user_data</span><span class="br0">&#91;</span><span class="st_h">';password'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#41;</span>
    <span class="br0">&#123;</span>
        <span class="re0">$active_user_data</span><span class="br0">&#91;</span><span class="st_h">';user_id'</span><span class="sy0">;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="re0">$phorum_user_data</span><span class="br0">&#91;</span><span class="st_h">';user_id'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="sy0">;</span>
        phorum_api_user_save<span class="br0">&#40;</span><span class="re0">$active_user_data</span><span class="sy0">,</span> PHORUM_FLAG_RAW_PASSWORD<span class="br0">&#41;</span><span class="sy0">;</span>
    <span class="br0">&#125;</span>
&nbsp;
    <span class="co1">// We have a legit user, so set the session info.</span>
    <span class="re0">$session_data</span><span class="br0">&#91;</span>PHORUM_SESSION_LONG_TERM<span class="br0">&#93;</span>  <span class="sy0">=</span> <span class="re0">$user_id</span><span class="sy0">;</span>
    <span class="re0">$session_data</span><span class="br0">&#91;</span>PHORUM_SESSION_SHORT_TERM<span class="br0">&#93;</span> <span class="sy0">=</span> <span class="re0">$user_id</span><span class="sy0">;</span>
&nbsp;
    <span class="kw1">return</span> <span class="re0">$session_data</span><span class="sy0">;</span>
<span class="br0">&#125;</span>
<span class="re0">$session_data</span> <span class="sy0">=</span> inherit_authentication_from_session<span class="br0">&#40;</span><span class="re0">$session_data</span><span class="br0">&#41;</span><span class="sy0">;</span></pre>
<br />
And it works perfectly on FF and Chrome. However, on safari and IE the session data is there when the forum opens, stays when going to list.php, but once in the thread list is no longer there for each thread (each thread link ends with read.php?3,4  instead of read.php?3,phorum_sesssion_v5...etc. like it does on chrome and FF)<br />
<br />
What is the fix for this? <br />
<br />
Thanks!]]></description>
            <dc:creator>Mikeg542</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sat, 20 Oct 2012 11:57:41 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,152203,152203#msg-152203</guid>
            <title>Calling API Returns Error (Please review my code) [SOLVED] (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,152203,152203#msg-152203</link>
            <description><![CDATA[ I use a registration system to register users - I added the following code to run after the user is register - this way it handles BOTH my site&#039;s account and their phorum account.<br />
<br />
Doing some research, I assumed everything below would work:<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="re0">$cwd</span> <span class="sy0">=</span> <a href="http://www.php.net/getcwd"><span class="kw3">getcwd</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// save current directory for later use</span>
<a href="http://www.php.net/chdir"><span class="kw3">chdir</span></a><span class="br0">&#40;</span><span class="st_h">';/var/www/html/forum'</span><span class="sy0">;</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// change directory to phorums, so the API files work</span>
<a href="http://www.php.net/define"><span class="kw3">define</span></a><span class="br0">&#40;</span><span class="st_h">';phorum_page'</span><span class="sy0">;,</span> <span class="st_h">';register'</span><span class="sy0">;</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// define our page</span>
<span class="kw1">include</span><span class="br0">&#40;</span><span class="st0">&quot;./include/api/base.php&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// now include the phorum base.php</span>
<span class="kw1">include</span><span class="br0">&#40;</span><span class="st0">&quot;./include/api/user.php&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// now include the phorum user.php</span>
&nbsp;
<span class="re0">$user</span> <span class="sy0">=</span> <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span>
 <span class="st0">&quot;user_id&quot;</span>   <span class="sy0">=&gt;</span> <span class="re0">$model</span><span class="sy0">-&gt;</span><span class="me1">id</span><span class="sy0">,</span> <span class="co1">// we want matching IDs</span>
 <span class="st0">&quot;username&quot;</span>  <span class="sy0">=&gt;</span> <span class="re0">$model</span><span class="sy0">-&gt;</span><span class="me1">username</span><span class="sy0">,</span> <span class="co1">// we want matching usernames</span>
 <span class="st0">&quot;password&quot;</span>  <span class="sy0">=&gt;</span> <span class="re0">$plainTextPassword</span><span class="sy0">,</span> <span class="co1">// we want the same password</span>
 <span class="st0">&quot;email&quot;</span>     <span class="sy0">=&gt;</span> <span class="re0">$model</span><span class="sy0">-&gt;</span><span class="me1">email</span><span class="sy0">,</span> <span class="co1">// we want the same email</span>
 <span class="st0">&quot;admin&quot;</span>     <span class="sy0">=&gt;</span> <span class="nu0">0</span><span class="sy0">,</span> <span class="co1">// no admin</span>
 <span class="st0">&quot;active&quot;</span>    <span class="sy0">=&gt;</span> <span class="nu0">1</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// active is true</span>
&nbsp;
phorum_api_user_save<span class="br0">&#40;</span><span class="re0">$user</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// now save the user with the provided array info	</span>
&nbsp;
<a href="http://www.php.net/chdir"><span class="kw3">chdir</span></a><span class="br0">&#40;</span><span class="re0">$cwd</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// change directory back to original so my code below can run its course</span></pre>
<br />
And I get this error:<br />
<pre class="bbcode">
Fatal error: Call to undefined function phorum_db_user_get() in /var/www/html/forum/include/api/user.php on line 934</pre>
<br />
I&#039;m running a LAMP server on Fedora locally. Using updated PHP5. <br />
<br />
Main site directory is /var/www/html<br />
Forum Directory is: /var/www/html/forum<br />
<br />
Can anyone offer any advice?]]></description>
            <dc:creator>Notioner</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 11 Oct 2012 18:06:56 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,151902,151902#msg-151902</guid>
            <title>Theme support for wordpress (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,151902,151902#msg-151902</link>
            <description><![CDATA[ Please check my <a href="http://www.george.ind.in" target="_blank"  rel="nofollow">blog</a>. I want to know how to integrate the wordpress theme and phorum. Like they should look similar. I know I have to customize the css. But is there any automated solution for this.<br />
Also how do I get a common login?<br />
Thanking you,<br />
Collider]]></description>
            <dc:creator>magicofflight</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 20 Aug 2012 01:38:36 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,151765,151765#msg-151765</guid>
            <title>Tapatalk Integration... (17 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,151765,151765#msg-151765</link>
            <description><![CDATA[ Hi all, hopefully this is in the right sub-forum, else move it to the mod request forum?<br />
<br />
Anyways,<br />
<br />
I have had a lot of user requests for integrating this apparently popular smart phone app called &quot;<a href="http://tapatalk.com/" target="_blank"  rel="nofollow">Tapatalk</a>&quot;.  I have a droid and never thought it necessary but apparently people are saying they would be able to contribute more with it as they are used to it&#039;s interface with much bigger forums than mine like Djforums.com and diggerswithgratitude forums as well as a few others.  <br />
<br />
Here is what they are asking about it and phorum integration?<br />
<br />
<a href="http://cratedigging.co/3/1744/tapatalk" target="_blank"  rel="nofollow">Tapatalk Thread</a> and <a href="http://cratedigging.co/2/48/3381/re__issues___bugs___enhancement_requests_#msg-3381" target="_blank"  rel="nofollow">Enhancement Request Thread</a><br />
<br />
Is this something that can easily be integrated or is this a tall order for you guys?<br />
<br />
Thanks in advance,<br />
<br />
J]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sun, 16 Jun 2013 10:19:46 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,150845,150845#msg-150845</guid>
            <title>Quick authentication? (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,150845,150845#msg-150845</link>
            <description><![CDATA[ I have heard mention of a &quot;quick authentication&quot; module.  I have searched the forums and have not found the code.  Where is this located along with documentation on its uses.<br />
<br />
Thanks,<br />
Dave]]></description>
            <dc:creator>davidfouts</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sun, 22 Jan 2012 02:47:52 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,150803,150803#msg-150803</guid>
            <title>PunchTab Rewards integration (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,150803,150803#msg-150803</link>
            <description><![CDATA[ Has anyone heard of punchtab   -   www.punchtab.com <br />
<br />
It&#039;s an awesome free rewards program that you can integrate with most any site.  You can give reward points for many different functions.  The coding for implementing it seems basic, however I don&#039;t know anything about coding.  Thought some people who know some basic things might be willing to take a look at this site and their examples and such and see if it can be integrated (with sample code posted)  You can create your own catalog of rewards to give your visitors.  It&#039;s a really good site.  It does require facebook login for keeping track of points which all that is integrated with their stuff.  It&#039;s easy to install the basics of it.  Maybe if someone has time or interest, they could look into it?  Basically, what I&#039;m looking for is giving points when people post a new topic or reply to an existing topic or click on a local business ad.]]></description>
            <dc:creator>myperrycounty</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sat, 14 Jan 2012 00:27:35 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,150755,150755#msg-150755</guid>
            <title>Phorum Search Integration (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,150755,150755#msg-150755</link>
            <description><![CDATA[ I have a static website and I&#039;m using Phorum for my forum. I was trying to figure out how to expand Phorum&#039;s search function to search not just through the forum but through the entire website. <br />
<br />
I know my way around HTML and CSS, but PHP and MySQL are still very new to me. But I&#039;m a quick learner and am eager to give this a try. If someone could point me in the right direction, I&#039;d be very grateful ^_^]]></description>
            <dc:creator>Andy T</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 19 Jan 2012 21:23:17 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,150556,150556#msg-150556</guid>
            <title>Custom field per thread (4 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,150556,150556#msg-150556</link>
            <description><![CDATA[ Hi,<br />
<br />
I&#039;m starting a phorum integration with an existing website, there is some concer that I want to get rid of in terms of integration issues:<br />
<br />
- I need to have a custom field on a PER THREAD basis, If I understand correctly, this can be achieved by creating a MOD with a function listening to the thread creation event and inserting the custom data. I&#039;m unsure about how to get the additional field next to the title though the system, do I just use the $_REQUEST? I&#039;m also unsure on how to get the data out to the thread, I presume a &#039;after read&#039; hook and inserting of custom data in the response table?]]></description>
            <dc:creator>pejot</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 08 Dec 2011 07:54:11 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?28,150541,150541#msg-150541</guid>
            <title>Phorum portable template (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?28,150541,150541#msg-150541</link>
            <description><![CDATA[ Hi, what is the best way for setting the phorum portable template? <br />
<br />
I have an forum, which I&#039;m trying to embed into joomla. Everything works, but I can&#039;t manage to set the tamplate to different than in the standalone version.<br />
<br />
I&#039;ve tried to push te template setting through :<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="re0">$PHORUM</span><span class="br0">&#91;</span><span class="st0">&quot;DATA&quot;</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st0">&quot;TEMPLATE&quot;</span><span class="br0">&#93;</span> <span class="sy0">=</span><span class="st0">&quot;light&quot;</span><span class="sy0">;</span> in <span class="sy0">./</span>portable<span class="sy0">/</span>phorum<span class="sy0">.</span>php</pre>
<br />
but it doesn&#039;t work.]]></description>
            <dc:creator>stefcio</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 05 Dec 2011 08:48:46 -0500</pubDate>
        </item>
    </channel>
</rss>
