<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Newbie: Integrate in CMS...</title>
        <description> First of all I know that there simliar questions pending around, bu I am an absolutely newbie and just need some tips:

I am using the CMS webEdition for my site. Recently I found Phorum and I am very impressed. I installed it without problems and decided to include in my running site. So in future I want to use Phorum - but without registration and so on. I read in FAQ´s below point 8 that I have to use the portable folder for including, but as I said before - I am a newbie - and so that´s all I know.

Could you please give me a step by step &amp;quot;how to&amp;quot; for including Phorum into another site? (I don´t need registration - and so I guess I don´t need the addon with connectors I found here in the forum)

Thanks a lot and sorry for my stupid question and my bad English ;-)</description>
        <link>https://www.phorum.org/support/read.php?28,118778,118778#msg-118778</link>
        <lastBuildDate>Wed, 16 Sep 2026 17:07:51 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,119152#msg-119152</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,119152#msg-119152</link>
            <description><![CDATA[ Hi, <br />
<br />
Yes, it´s commercial. You can download a free trial at: [<a href="http://www.living-e.com/products/webEdition/download.php" target="_blank"  rel="nofollow">www.living-e.com</a>]<br />
So you can check the whole system. It´s a really nice cms but commercial system have always several handycaps.<br />
<br />
P.S. I use version 3, but most files are equal to version 4.]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 03 Jan 2007 03:26:59 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,119147#msg-119147</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,119147#msg-119147</link>
            <description><![CDATA[ Pffr... those CMS guys tell some really funny stuff... I see no reason why output buffering would be impossible for any system. It doesn&#039;t interfere with the scripts at all. Maybe the CMS is using ob_start() internally to do some work in buffered mode. There are still a lot of programmers that think that you can only use ob_start() once, but it really can be used multiple times and even nested without problems.<br />
<br />
It looks like it&#039;s a commercial product. I tried to do a quick download to see what files were in the CMS tree. Can you provide me in some way with the CMS&#039; files, so I can take a quick peek at possible entry points for the ob_start() call? I&#039;m sure we can work this thing out, despite anything the CMS guys might tell you.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 02 Jan 2007 17:39:06 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,119128#msg-119128</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,119128#msg-119128</link>
            <description><![CDATA[ The problem is...I am a newbee. So I have to go the easy way :-(]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 02 Jan 2007 11:03:28 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,119127#msg-119127</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,119127#msg-119127</link>
            <description><![CDATA[ I&#039;m quite sure you can use ob_start with your cms even if the devs told you can&#039;t. I think you can force the setting server wide in php.ini even.]]></description>
            <dc:creator>Panu</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 02 Jan 2007 10:48:36 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,119125#msg-119125</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,119125#msg-119125</link>
            <description><![CDATA[ Thank you. I understand the problem. Meanwhile I asked the author of my cms how to include the ob_start command and they answered that is impossible to use this command. Unfortunately now I have to change the templates of Phorum because it is not possible to include it in my cms without problems. So I will clode this threat with a tip:<br />
<br />
You can´t include Phorum in the cms &quot;webEdition&quot;. It´s a great cms but it doenn´t work with Phorum...<br />
<br />
Thanks for all comments here.]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 02 Jan 2007 09:04:42 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,119122#msg-119122</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,119122#msg-119122</link>
            <description><![CDATA[ The ob_start function will keep PHP from outputting data right away to the browser. Instead, the data will be gathered in a buffer and will sent it only after your PHP scripts have fully finished. That way, you can still send cookies to the browser, even if there was other code that normally would have sent data to the browser already. My guess is that your  CMS is sending the page header to the browser, before including the Phorum code. Therefore, Phorum cannot set a cookie anymore. So using the ob_start function will fix this.<br />
<br />
What needs to be done, is to put a call to the ob_start function at an early stage in the CMS software, before anything is sent to the browser. Since we do not know the CMS, we cannot advice in where to put this. This is something that the developers of your CMS must be able to tell you. We can tell you how this would look. The PHP script would get this code at the very start:<br />
<pre class="bbcode">
&lt;?php ob_start() ?&gt;</pre>
If you have something like a settings.php or common.php, you could try putting this code in that file. Files with those names are normally read before doing any output.<br />
<br />
Note:<br />
<br />
This is not a Phorum problem, nor a CMS problem. It&#039;s merely a problem of integrating two totally different software packages, which both have their own fully valid implementations. It&#039;s never an easy job, since it almost always turns out that you have to find some work arounds to make both packages to behave nicely. The CMS guys apparently did not understand this, since they are pointing at Phorum. Also, the error you get has nothing to do with strict safety settings, but only with the way HTTP (the protocol that browsers use to retrieve web pages) was designed.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 02 Jan 2007 08:39:40 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118963#msg-118963</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118963#msg-118963</link>
            <description><![CDATA[ Well of course if you (phorum) tries to set a cookie after output has already been sent to browser by your cms template it does not work.<br />
<br />
The solution would be ob_start as Thomas mentioned. You have to call it in your cms before any output.<br />
<br />
[<a href="http://ch2.php.net/manual/en/function.ob-start.php" target="_blank"  rel="nofollow">ch2.php.net</a>]]]></description>
            <dc:creator>Panu</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 20 Dec 2006 12:33:40 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118952#msg-118952</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118952#msg-118952</link>
            <description><![CDATA[ After several test I know the problem: Cookies. The error is caused by trying setting a cookie. If I deactivate cookies the problem in login.php is vanished - just in common.php (if I reply a threat) the problem is still there.<br />
<br />
Is it possible to deactivate all cookie settings?<br />
<br />
<br />
P.S. The support team of my cms thinks that is not a cms problem but a Phorum problem and the problem occurs in my cms only because of the high safety settings which my server doesn´t has.]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 20 Dec 2006 01:24:14 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118938#msg-118938</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118938#msg-118938</link>
            <description><![CDATA[ No other solutions? Ok, tested it again outside of my CMS and it works. So the problem is somehow my CMS...]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Tue, 19 Dec 2006 05:49:06 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118908#msg-118908</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118908#msg-118908</link>
            <description><![CDATA[ That is my cms template.]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 18 Dec 2006 04:08:07 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118907#msg-118907</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118907#msg-118907</link>
            <description><![CDATA[ And your cms template?]]></description>
            <dc:creator>Panu</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 18 Dec 2006 03:03:41 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118886#msg-118886</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118886#msg-118886</link>
            <description><![CDATA[ Ok, I looked in the login.php and there is no space or something. The login.php is exactly as I downloaded it from here.<br />
<br />
After that I thought the problem is my template in which I included Phorum. So I deleted all and now it looks like this:<br />
<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;we:charset defined=&quot;ISO-8859-1&quot;&gt;ISO-8859-1&lt;/we:charset&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;<br />
      &lt;tr&gt;<br />
        &lt;td class=&quot;conthead&quot;&gt;<br />
&lt;/td&gt;<br />
      &lt;/tr&gt;<br />
      &lt;tr&gt;<br />
        &lt;td class=&quot;conttbl3&quot;&gt;<br />
&lt;? include (&quot;/kunden/83050_33184/webseiten/projekte/forum/phorum.php&quot;); ?&gt; &lt;/td&gt;<br />
      &lt;/tr&gt;<br />
      &lt;tr&gt;<br />
        &lt;td&gt;&lt;/td&gt;<br />
      &lt;/tr&gt;<br />
    &lt;/table&gt;<br />
      &lt;br&gt;&lt;/td&gt;<br />
  &lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
<br />
<br />
But the same error message comes again, when I click on login. I tried to answer to the test posting and the same message appears but for this time in common.php on line 862.<br />
<br />
I am confused because the forum itself works fine but I don´t know what occurs these error messages...]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Sat, 16 Dec 2006 06:10:06 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118876#msg-118876</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118876#msg-118876</link>
            <description><![CDATA[ I know, but I want to hide the Login and Register Link...]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 15 Dec 2006 13:01:39 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118874#msg-118874</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118874#msg-118874</link>
            <description><![CDATA[ You don&#039;t need to do this. You can set the permissions on the phorums to allow nonregistered users to read and post.]]></description>
            <dc:creator>DavidVB</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 15 Dec 2006 11:06:53 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118868#msg-118868</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118868#msg-118868</link>
            <description><![CDATA[ Thanks for your replies. I wondering about the error because I didn´t change anything. I just installed Phorum, then the portable solution and last I included the phorum.php in my cms-template. I will check the login.php whether there is something wrong...<br />
<br />
If not, can you explain the &quot;ob_start&quot; command, please?<br />
<br />
The thing is I don´t need a login, because I want to offer posting without registering before. Perhaps I can deactivate the login and my problem is also solved. Is this possible?]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 15 Dec 2006 07:44:21 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118862#msg-118862</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118862#msg-118862</link>
            <description><![CDATA[ or use the ob_start command in the very first lines of your php-code so that nothing is really output before the phorum-code is run.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 15 Dec 2006 03:31:14 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118860#msg-118860</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118860#msg-118860</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>lindstrom</strong><br />Sorry, but I don´t understand where the error is located.<br />
<br />
Line 238 in login.php is:<br />
<br />
    setcookie( &quot;phorum_tmp_cookie&quot;, &quot;this will be destroyed once logged in&quot;, 0, $PHORUM[&quot;session_path&quot;], $PHORUM[&quot;session_domain&quot;] );<br />
<br />
Please try to give a solution which can be understood by idiots ;-)</div></blockquote>
<br />
Error is in your own code, you start to output something (a space is enough) and when Phorum tries to set a cookie it gives an error (you can&#039;t output anything to browser before setting a cookie or making a redirect for example.)<br />
<br />
So check that there isn&#039;t anything in your php file before the opening &lt;?php or that you don&#039;t echo anything before the cookie call in phorums login.php (as Thomas&#039; message implied in the linked thread)]]></description>
            <dc:creator>Panu</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Fri, 15 Dec 2006 03:06:20 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118853#msg-118853</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118853#msg-118853</link>
            <description><![CDATA[ Sorry, but I don´t understand where the error is located.<br />
<br />
Line 238 in login.php is:<br />
<br />
    setcookie( &quot;phorum_tmp_cookie&quot;, &quot;this will be destroyed once logged in&quot;, 0, $PHORUM[&quot;session_path&quot;], $PHORUM[&quot;session_domain&quot;] );<br />
<br />
Please try to give a solution which can be understood by idiots ;-)]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 14 Dec 2006 13:52:59 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118850#msg-118850</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118850#msg-118850</link>
            <description><![CDATA[ this might help:<br />
[<a href="http://www.phorum.org/phorum5/read.php?18,15299,15424#msg-15424" target="_blank" >www.phorum.org</a>]]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 14 Dec 2006 07:52:29 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118844#msg-118844</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118844#msg-118844</link>
            <description><![CDATA[ Ok, now it works. The path in admin area was wring. Thanks a lot for your help!!!<br />
<br />
Just a last question: When I click on Login the following message appears above the form:<br />
<br />
<br />
Warning: Cannot modify header information - headers already sent by (output started at /kunden/83050_33184/webseiten/projekte/site/cms/webEdition/we/templates/forum.tmpl:29) in /kunden/83050_33184/webseiten/projekte/phorum/login.php on line 238<br />
<br />
Any idea?]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 14 Dec 2006 03:06:09 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118843#msg-118843</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118843#msg-118843</link>
            <description><![CDATA[ Ok, thank you. I changed the path and now the forum appears in my template. But when I click on a link - the next page appears in Phorum-design again.  So for now it is not all integrated but only the start page. Where can I change this?]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Thu, 14 Dec 2006 02:31:56 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118833#msg-118833</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118833#msg-118833</link>
            <description><![CDATA[ you need to change that line<br />
<br />
&gt; include_once &quot;./phorum_settings.php&quot;;<br />
<br />
otherwise it can&#039;t find the settings.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 13 Dec 2006 14:14:25 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118832#msg-118832</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118832#msg-118832</link>
            <description><![CDATA[ Ok, I did it and it seems almost to work. Now, when I go to the url: www.mydomain.de/phorum.php the forum appears and it works fine. But when I include it with the include-function of my cms (webEdition) nothing appears. When I use the normal include option with &lt;? include (&quot;/kunden/83050_33184/webseiten/projekte/phorum/phorum.php&quot;); ?&gt; appears this error:<br />
<br />
Warning: main(./phorum_settings.php): failed to open stream: No such file or directory in /kunden/83050_33184/webseiten/projekte/phorum/phorum.php on line 9<br />
<br />
Warning: main(): Failed opening &#039;./phorum_settings.php&#039; for inclusion (include_path=&#039;.:/usr/local/lib/php&#039;) in /kunden/83050_33184/webseiten/projekte/phorum/phorum.php on line 9<br />
<br />
Warning: chdir(): No such file or directory (errno 2) in /kunden/83050_33184/webseiten/projekte/phorum/phorum.php on line 11<br />
<br />
Any idea?]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 13 Dec 2006 14:12:35 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118827#msg-118827</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118827#msg-118827</link>
            <description><![CDATA[ &gt; 1. What do I have to change in these two files? <br />
<br />
depends on your cms, its url-format and stuff.<br />
just dig into the files.<br />
<br />
&gt; 2. Which file do I have to include? <br />
<br />
phorum.php]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 13 Dec 2006 09:46:31 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118825#msg-118825</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118825#msg-118825</link>
            <description><![CDATA[ Ok, thanks for message. This means:<br />
<br />
1. I copy these two files in the Phorum root directory<br />
2. modify these files<br />
3. include Phorum in my CMS<br />
<br />
Correct? If this is correct, I have two questions:<br />
<br />
1. What do I have to change in these two files?<br />
2. Which file do I have to include?<br />
<br />
Thanks a lot...]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 13 Dec 2006 09:01:53 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118818#msg-118818</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118818#msg-118818</link>
            <description><![CDATA[ Since you don&#039;t need to integrate the phorum and your CMS, what you want to do is a portable installation. The phorum files are installed in a subdirectory of your site. You will end up with phorum_admin and phorum_settings in your root website folder (these files will have to be modified for your configuration.]]></description>
            <dc:creator>DavidVB</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 13 Dec 2006 07:02:05 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118814#msg-118814</guid>
            <title>Re: Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118814#msg-118814</link>
            <description><![CDATA[ Please, give me some help...]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Wed, 13 Dec 2006 01:06:19 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?28,118778,118778#msg-118778</guid>
            <title>Newbie: Integrate in CMS...</title>
            <link>https://www.phorum.org/support/read.php?28,118778,118778#msg-118778</link>
            <description><![CDATA[ First of all I know that there simliar questions pending around, bu I am an absolutely newbie and just need some tips:<br />
<br />
I am using the CMS webEdition for my site. Recently I found Phorum and I am very impressed. I installed it without problems and decided to include in my running site. So in future I want to use Phorum - but without registration and so on. I read in FAQ´s below point 8 that I have to use the portable folder for including, but as I said before - I am a newbie - and so that´s all I know.<br />
<br />
Could you please give me a step by step &quot;how to&quot; for including Phorum into another site? (I don´t need registration - and so I guess I don´t need the addon with connectors I found here in the forum)<br />
<br />
Thanks a lot and sorry for my stupid question and my bad English ;-)]]></description>
            <dc:creator>lindstrom</dc:creator>
            <category>Phorum Integration</category>
            <pubDate>Mon, 11 Dec 2006 13:23:21 -0600</pubDate>
        </item>
    </channel>
</rss>
