<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Howto: Integrate Phorum and Wordpress</title>
        <description>Hi everybody,

at first let me praise you for the nice piece of software Phorum is :) I found it really simple to use and to integrate into my site.

The last days I spent some time on integrating a Phorum installation into a WordPress site managed by me. The forum now displays surrounded by the WordPress layout and user management is integrated (I made Phorum use the WordPress user- and login-system).

I wrote up what I did on my blog: http://www.gloegl.de/blog/archives/integrating-wordpress-and-a-phorum-forum/

Some parts are quite hackish, if you have any suggestions on how to make this cleaner, I would appreciate any comments.

Perhaps some of you will find the info useful. Although it is about WP/Phorum integration, the technique can also be used for other Phorum-integration tasks.</description>
        <link>https://www.phorum.org/support/read.php?28,53105,53105#msg-53105</link>
        <lastBuildDate>Sun, 13 Sep 2026 15:32:10 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,161734#msg-161734</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,161734#msg-161734</link>
            <description><![CDATA[ Hi,<br />
<br />
anyone still using this Wordpress-Phorum bridge?<br />
<br />
Regards<br />
Oliver]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 22 Aug 2017 03:47:42 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,155374#msg-155374</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,155374#msg-155374</link>
            <description><![CDATA[ Do you mind to share? Thank you!]]></description>
            <dc:creator>korsakov</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 12 Sep 2014 01:47:32 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,155162#msg-155162</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,155162#msg-155162</link>
            <description><![CDATA[ I also did quite a long search for a WordPress/Forum integration, and found nothing ... So I hacked up an integration of Phorum into WordPress.]]></description>
            <dc:creator>adeliastansel</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 30 Jun 2014 08:27:00 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,151901#msg-151901</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,151901#msg-151901</link>
            <description><![CDATA[ Please check out my <a href="http://www.george.ind.in" target="_blank"  rel="nofollow">blog</a>. I am using latest wordpress. Is it possible to get the same theme for phpbb as my wordpress]]></description>
            <dc:creator>magicofflight</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 20 Aug 2012 00:33:47 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,146560#msg-146560</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,146560#msg-146560</link>
            <description><![CDATA[ I don&#039;t remember seeing a full finished integration solution.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 28 Oct 2010 17:22:29 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,146556#msg-146556</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,146556#msg-146556</link>
            <description><![CDATA[ That is a massive help to get me started!<br />
<br />
Is there an existing way to sync / bridge the users in WP with Phorum?]]></description>
            <dc:creator>artisites</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 28 Oct 2010 10:28:49 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,146454#msg-146454</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,146454#msg-146454</link>
            <description><![CDATA[ I don&#039;t know of such code, but the simplest route might be a script like this (inside your Phorum directory):<br />
<br />
[code=php]<br />
&lt;?php<br />
// Load the Phorum code.<br />
include &quot;./common.php&quot;;<br />
<br />
// Redirect the browser to an image URL, based on the authentication session state.<br />
if ($PHORUM[&#039;user&#039;][&#039;user_id&#039;]) {<br />
    header(&quot;Location: [<a href="http://some.site/images/loggedin.png&quot" target="_blank"  rel="nofollow">some.site</a>];);<br />
} else {<br />
    header(&quot;Location: [<a href="http://some.site/images/notloggedin.png&quot" target="_blank"  rel="nofollow">some.site</a>];);<br />
}<br />
[/code]<br />
<br />
Not tested, but this might work. Another way could be to let the script itself serve the image files, instead of redirecting the browser to one. This would look somewhat like this:<br />
<br />
[code=php]<br />
&lt;?php<br />
// Load the Phorum code.<br />
include &quot;./common.php&quot;;<br />
<br />
// Tell the browser that we will be sending an image.<br />
header(&quot;Content-Type: image/png&quot;); // or jpeg of gif, whatever you like<br />
<br />
// Return an image, based on the authentication session state.<br />
if ($PHORUM[&#039;user&#039;][&#039;user_id&#039;]) {<br />
    readfile(&quot;path/to/images/loggedin.png&quot;);<br />
} else {<br />
    readfile(&quot;path/to/images/notloggedin.png&quot;);<br />
}<br />
[/code]<br />
<br />
Hope this helps.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 21 Oct 2010 02:45:55 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,146449#msg-146449</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,146449#msg-146449</link>
            <description><![CDATA[ yeah that&#039;s right maurice that&#039;s what im after - user comes onto the website (main site and content areas powered by wordpress) but they can see a login link for the phorums, or if logged in it will say &quot;logged in&quot; with a link to the phorum.<br />
<br />
can you point me in the direction of any code that performs this kind of function already? if not i&#039;ll look into getting it together from someone on elance and post here when done :)]]></description>
            <dc:creator>artisites</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 20 Oct 2010 19:53:51 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,146423#msg-146423</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,146423#msg-146423</link>
            <description><![CDATA[ You can only read your own cookies, so you would only be able to show an indicator that tells if *you* are logged into Phorum or not. If you want to show an indicator for yourself, then this can be done in a few lines of code.<br />
<br />
Showing an indicator for a random user is a totally different thing. The online users module would be a good starting point for ideas on how to decide if a user is online or not.<br />
<br />
A widget kind of implies JavaScript as the data retrieval methodology. But if you want to build something, then it&#039;s probably much easier to create a basic script that returns a status image. Embedding the indicator is then as simple as setting up an &lt;img src=&quot;URL-for-statusscript?username=examplearg&quot;/&gt; image.<br />
<br />
I hope this provides you some ideas.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 19 Oct 2010 15:01:03 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,146419#msg-146419</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,146419#msg-146419</link>
            <description><![CDATA[ i&#039;d like to have a sign in / logged in widget to display on wordpress.<br />
<br />
i guess that would be reading cookies with a welcome message (wouldnt need any usernames mentioned) else show a login link / form.<br />
<br />
is this possible?]]></description>
            <dc:creator>artisites</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 19 Oct 2010 14:28:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,145241#msg-145241</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,145241#msg-145241</link>
            <description><![CDATA[ I don&#039;t think that there&#039;s a ready-to-go solution for this, but if you want to accomplish something complex like integrating software packages, could you at least describe in what way you would like to integrate? What would the final setup look like and how would users use it?]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 26 Jul 2010 02:20:17 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,145240#msg-145240</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,145240#msg-145240</link>
            <description><![CDATA[ I, too, am asking this question...]]></description>
            <dc:creator>kelleychambers</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sun, 25 Jul 2010 22:13:30 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,142018#msg-142018</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,142018#msg-142018</link>
            <description><![CDATA[ I see these posts are quite old.. Is there a way to integrate Phorum into new Wordpress? Has someone managed to do it?]]></description>
            <dc:creator>niksos</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 20 Nov 2009 08:35:18 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,129419#msg-129419</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,129419#msg-129419</link>
            <description><![CDATA[ Well I attempted to mend the plugin by manually setting the path to see the files. Did that a few times and then even  edited Phorum&#039;s common.php file. When I had &quot;fixed&quot; the paths Phorum still encountered an error saying the database was not yet connected.<br />
<br />
It&#039;s a cool plugin but it shares the same arrogance of WordPress, &#039;You can only do things the way *I* tell you!&#039; Please fix this and I&#039;d be happy to post a link on my blog to give out the credit.]]></description>
            <dc:creator>JAB Creations</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 11 Apr 2008 13:15:24 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,129418#msg-129418</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,129418#msg-129418</link>
            <description><![CDATA[ Err, why the heck would any one put Phorum <i>inside</i> of WordPress?<br />
<br />
How do we fix this mess by having a custom Phorum path that does <i>not</i> lock us in to this plugin presuming Phorum is improperly installed <i>inside</i> the WordPress directory? It&#039;s creating errors when people register.]]></description>
            <dc:creator>JAB Creations</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 11 Apr 2008 12:52:20 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,123928#msg-123928</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,123928#msg-123928</link>
            <description><![CDATA[ Hey Norvo,<br />
<br />
Sorry for taking so long to respond to this; been away from the internet.  I still haven&#039;t gotten the bridge working in the latest version of WordPress.  I&#039;ll try to up this project on my priority list, but I&#039;ve been distracted recently by web design.  For some reason the Phorum module is not reading the cookie; if anyone has any advice, I&#039;d love to hear it since I can&#039;t find any reason in the code for it not to work.<br />
<br />
I&#039;ve never tried to use the friendly URLs module for Phorum, so I can&#039;t offer any specific advice.  Sorry about that.  :-(<br />
<br />
If you get it running, let us know!]]></description>
            <dc:creator>Beckism</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 20 Aug 2007 01:37:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,123814#msg-123814</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,123814#msg-123814</link>
            <description><![CDATA[ a very newbie (and probably stupid) question:<br />
<br />
how do i best integrate the lastest version of phorum into the design of the latest version of wordpress with the search friendly urls module for phorum?? <br />
<br />
thanks,<br />
<br />
norvo]]></description>
            <dc:creator>reallife</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 16 Aug 2007 09:05:02 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,122134#msg-122134</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,122134#msg-122134</link>
            <description><![CDATA[ Hey Weko,<br />
<br />
Sorry, I should have posted an update to this thread.  For some reason, it looks like WordPress 2.1+ broke the WordPress-Phorum bridge.  I&#039;ll hopefully be able to fix it in the near future, but just haven&#039;t gotten around to it yet (got swamped with stuff at the end of the school year, and immediately went abroad).<br />
<br />
I&#039;ve also been putting it off because I&#039;d like the next release to have a template example included, and I&#039;ve been waiting to be sure that the next version of Phorum didn&#039;t change the template system a lot.  I&#039;ll try and get this done sooner rather than later, though, since there&#039;s obviously at least one other person out there using the bridge.]]></description>
            <dc:creator>Beckism</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 29 May 2007 00:49:20 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,122133#msg-122133</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,122133#msg-122133</link>
            <description><![CDATA[ i have a problem with the integration, it seems when i login in the wordpress, i automatically login to phorum, but when i want to start a new topic or go to My Control Center or Private Msg, it ask to login again. weird...and so, i login again, and when i logout from my wordpress, i didn&#039;t logout from the phorum..<br />
<br />
it seem almost everyone got the same problem (from what i read on this thread).. i have check like thousand time the address like Beck said and the address i put is correct. <br />
<br />
i really bump, dunt really know what to do.. any help would be great.]]></description>
            <dc:creator>Weko</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 28 May 2007 20:48:30 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,119691#msg-119691</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,119691#msg-119691</link>
            <description><![CDATA[ I&#039;ve updated the WordPress-Phorum bridge and assigned it a global version of 1.3.<br />
<br />
<b>What&#039;s new:</b><br />
- All settings are now handled within the admin sections of WordPress and Phorum (WP: Options-&gt;Phorum; Ph: Modules-&gt;Settings).<br />
<br />
I strongly recommend that anyone using the bridge update to this version.  All that you need to do to update is overwrite the old files with the new ones, and then go into the options in Phorum and WordPress and set the site URLs correctly.  You will never have to worry about editing the source files after this release.<br />
<br />
I&#039;m shooting to have the example template for Phorum in my next release.<br />
<br />
Let me know if you have any problems!  As always, the latest file and info is also available at <a href="http://www.beckism.net/wordpress-phorum/" target="_blank"  rel="nofollow">beckism.net/wordpress-phorum/</a>.<br />
<br />
<b>Edit:</b> uploaded a new version with a couple more parts of the code commented.]]></description>
            <dc:creator>Beckism</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 25 Jan 2007 03:22:44 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,116853#msg-116853</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,116853#msg-116853</link>
            <description><![CDATA[ Hey lochen,<br />
<br />
Did you complete the instructions in the included ReadMe?  It sounds like you might be encountering the cookie domain problem: WordPress automatically in most cases uses a domain like <pre class="bbcode">http://domain.com</pre> while Phorum defaults to <pre class="bbcode">http://www.domain.com</pre>
If you haven&#039;t defined everything consistently as outlined in the ReadMe file, then you will be having the sort of odd login/out cookie things that you&#039;re encountering.<br />
<br />
Also, I just want to verify that you are wrapping Phorum in the WordPress template.<br />
<br />
Lastly, the Phorum login/out buttons will not work with this code; it assumes that you will only use WordPress to login or out.  You will need to go through the Phorum template and remove all login/out links before you go public, which requires pretty extensive changes.  I will be releasing a default template without login/out links as part of the next release of this code, but that&#039;s a little ways down the road.<br />
<br />
Good luck!]]></description>
            <dc:creator>Beckism</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 25 Sep 2006 00:24:07 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,116852#msg-116852</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,116852#msg-116852</link>
            <description><![CDATA[ thank you for your help<br />
<br />
but it still not work<br />
<br />
i try to install phorum under wordpress base directory<br />
<br />
http: //127.0.0.1/wordpress<br />
http: //127.0.0.1/wordpress/phorum<br />
<br />
it logined success on wordpress, it show that logined in the phorum(displayed the menu such as &quot;My control Center&quot;, &quot;Private Message&quot; link), but when i going to phorum&#039;s &quot;my control center&quot; page <br />
it display a login form to ask me login<br />
<br />
The $_COOKIE array<br />
<span style="color:#3300FF">Array ( [wordpressuser_f91327853cab97b2ac71765b7d7b303e] =&gt; wordpress [wordpresspass_f91327853cab97b2ac71765b7d7b303e] =&gt; becf2975c84f4db6a2d137a541de4ef3 [phorum_admin_session] =&gt; 1:638d226c5f2b39f18de67385ee46bd3c ) </span><br />
<br />
It seem lost the phorum cookie like this (it is using phorum to login and print out $_COOKIE)<br />
Array ( [phorum_admin_session] =&gt; 1:638d226c5f2b39f18de67385ee46bd3c <span style="color:#FFCC33">[phorum_session_v5] =&gt; 5:91da162c47af5abca794787ccf6fbd0f </span><br />
<br />
i don&#039;t phorum how to keep the user logined, so i don&#039;t the problem of it<br />
<br />
and then it got an other problem of phorum logined,<br />
<br />
when i logined of wordpress, and in phorum click the &quot;Log Out&quot;, it&#039;s not work, it can&#039;t log out, it need to using wordpress that logout to logout successful.<br />
<br />
thank you,]]></description>
            <dc:creator>lochen</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 25 Sep 2006 00:09:07 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,116769#msg-116769</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,116769#msg-116769</link>
            <description><![CDATA[ Hey lochen,<br />
<br />
You might need to have the Phorum install wrapped in the WordPress template in order to get access to the WordPress cookie.  If you haven&#039;t edited your templates, this might well be the issue.  Try opening header.tpl in the template you&#039;re using and add this at the very top:<br />
<br />
<pre class="bbcode">&lt;?php require(&#039;../wp-blog-header.php&#039;); ?&gt;</pre>
<br />
Of course, you&#039;ll need to make sure that the path navigates to the WordPress wp-blog-header.php, which should be installed in the WordPress base directory (so for you the path will likely be &#039;../wpdemo/wp-blog-header.php&#039;).<br />
<br />
If that doesn&#039;t work, this is the second possibility: if I remember correctly, the plugin assumes that your Phorum install is within your WordPress base install directory.  If the wp-blog-header.php file doesn&#039;t fix things for you, it might be that unless the Phorum install is within the WordPress base directory, it won&#039;t have access to the WordPress cookie.  I haven&#039;t tested this at all, and it&#039;s been a while since I worked directly with cookies in PHP, though, so I could be wrong.  Only try moving the phorum directory once you&#039;ve tried the first thing above, though, since if you move it you&#039;ll have to change a number of your variables in the files and options.<br />
<br />
Let me know if neither of these things works, and I&#039;ll try to figure out what the heck is going wrong.]]></description>
            <dc:creator>Beckism</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 21 Sep 2006 04:13:29 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,116765#msg-116765</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,116765#msg-116765</link>
            <description><![CDATA[ hi,<br />
<br />
i got a problem of the cookie<br />
<br />
i tried to print out the values of $_COOKIE<br />
<br />
in wordpress page,it have a wordpress cookie in the $_COOKIE<br />
<span style="color:#FF3300">Array ( [wordpressuser_a7f40a08e0b1c4ffa91359dac9fb2948] =&gt; wordpress [wordpresspass_a7f40a08e0b1c4ffa91359dac9fb2948] =&gt; becf2975c84f4db6a2d137a541de4ef3 [phorum_admin_session] =&gt; 1:c115e88315ce1af515c458d0bb1a3d76 [phorum_session_v5] =&gt; 8:8dd87f3e1ff21cd7e225cc2b7e5334d0 )  </span><br />
<br />
when i go ot phorum page, it have not wordpress cookie in the $_COOKIE<br />
<br />
<span style="color:#FF3300">Array ( [dbx-postmeta] =&gt; grabit=0-,1-,2-,3-,4-,5-,6-&amp;advancedstuff=0 ,1-,2 ,3-,4 ,5- [PHPSESSID] =&gt; 004a75f2517ab8979fecfbfc5e5b1993 [phorum_admin_session] =&gt; 1:c115e88315ce1af515c458d0bb1a3d76 ) </span><br />
<br />
according to the plugin of phorum(wplogin.php)<br />
the function &quot;get_userid&quot; is going to get the wordpress cookie value to select the user id<br />
<br />
but it have not wordpress&#039;s cookie in the $_COOKIE<br />
<br />
$site_loc = grab_config_vars();<br />
$cookiehash = md5($site_loc);<br />
// Try to snag the cookie<br />
$id = get_userid(<span style="color:#0000FF">$_COOKIE[&#039;wordpressuser_&#039; . $cookiehash]</span>);<span style="color:#0000FF">&lt;--it is a null value so that , it can&#039;t get the user_id in the phorum page</span><br />
<br />
how can i solve it ?<br />
my wordpress installed diretory is:<br />
http:// 127.0.0.1:8080/wpdemo<br />
my phorum  installed diretory is:<br />
http:// 127.0.0.1:8080/phorum<br />
<br />
<br />
my HTTP Path is http:// 127.0.0.1:8080/phorum<br />
WordPress address (URI) is http:// 127.0.0.1:8080/wpdemo<br />
$wp_domain_name is http:// 127.0.0.1:8080/wpdemo<br />
<br />
is it my setting wrong ? i can logined either space (wp or phorum), <br />
<br />
thank you]]></description>
            <dc:creator>lochen</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 21 Sep 2006 03:21:56 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,116724#msg-116724</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,116724#msg-116724</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>circuit</strong><br />the problem i have is this: <br />
<br />
users i create in the wordpress admin area are created in phorum. <br />
users who register themselves via the wordpress register/login screens are <b>not</b> created in phorum.</div></blockquote>
<br />
Hey Circuit<br />
<br />
Many apologies for not getting back to you on this sooner; forgot to check this post, and email troubles kept the subscription things from getting to me.<br />
<br />
If you&#039;re using the most recent version of the plugin that I&#039;ve compiled you should theoretically be good to go.  Where in relation to your WordPress directory are the Phorum files, and what did you enter in the $phorum_dir variable in the phorum.php file?  There might be issues with that, but it would be weird.<br />
<br />
The stuff you quoted is old and shouldn&#039;t apply (assuming you&#039;ve got the most recent version of the plugin, which I believe is attached to this topic, and is certainly available at <a href="http://www.beckism.net/wordpress-phorum/" target="_blank"  rel="nofollow">this page</a>).<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>circuit</strong><br />second question: how would i add existing phorum users to a wordpress user database? is it as simple as exporting the users/password columns from the phorum DB table and importing back into the WP db table?</div></blockquote>
<br />
Good question.  I didn&#039;t have to worry about this because I installed Phorum on a clean blog.  The admin account should be fine if you set up Phorum to have the exact same name as the WordPress admin, but other than that I&#039;m not sure of a good way to add people.  I&#039;ll try and figure something out for the next incarnation of the bridge.]]></description>
            <dc:creator>Beckism</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 19 Sep 2006 23:52:24 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,115506#msg-115506</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,115506#msg-115506</link>
            <description><![CDATA[ thanks for the quick response maurice :) not sure what happened but i started from fresh template copies and now my error is gone :)<br />
<br />
now when i&#039;m logged into WP i&#039;m not logged into phorum -- but is that because my WP account existed prior to wp-phorum? or is it supposed to work like, if i have an existing WP account is the plugin supposed to automatically create me in phorum? and if this is the case, how could i add all my existing users into phorum? i tried to add a phorum user (same name as wp name) via phpmyadmin but that didn&#039;t work<br />
<br />
thanks again!]]></description>
            <dc:creator>chanzero</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 15 Aug 2006 13:31:37 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,115502#msg-115502</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,115502#msg-115502</link>
            <description><![CDATA[ Then the template is broken. Possible by a missing {/IF} statement.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 15 Aug 2006 12:57:40 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,115500#msg-115500</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,115500#msg-115500</link>
            <description><![CDATA[ i&#039;m getting the following error on my phorum index :(<br />
<br />
Parse error: parse error, unexpected $ in /tmp/tpl-default-header-toplevel_stage2-e03c0fc48610ccf042943009acdb3e3f.php on line 710]]></description>
            <dc:creator>chanzero</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 15 Aug 2006 12:44:31 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,115492#msg-115492</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,115492#msg-115492</link>
            <description><![CDATA[ If you are using CSS template and your forum is bigger than the space you allocate for your phorum that might cause it to be pushed down toward the bottom as well.]]></description>
            <dc:creator>Chanh Ong</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 15 Aug 2006 11:29:38 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,53105,115484#msg-115484</guid>
            <title>Re: Howto: Integrate Phorum and Wordpress</title>
            <link>https://www.phorum.org/support/read.php?28,53105,115484#msg-115484</link>
            <description><![CDATA[ Look at the page source or give an URL for someone else to have a look.<br />
<br />
Without seeing the site I would say that you have an error in your wordpress template :)]]></description>
            <dc:creator>Panu</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 15 Aug 2006 07:07:17 -0500</pubDate>
        </item>
    </channel>
</rss>
