<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Tag: PHP</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: PHP</description>
<language>en</language>
<pubDate>Mon, 07 Jul 2008 07:19:30 +0000</pubDate>

<item>
<title>sherrynes on "Help I messed up my code - LogIn Fields"</title>
<link>http://bbpress.org/forums/topic/help-i-messed-up-my-code-login-fields#post-16982</link>
<pubDate>Sat, 28 Jun 2008 03:37:30 +0000</pubDate>
<dc:creator>sherrynes</dc:creator>
<guid isPermaLink="false">16982@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Jes' bumpin'.&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;-Sherry
&#60;/p&#62;</description>
</item>
<item>
<title>sherrynes on "Help I messed up my code - LogIn Fields"</title>
<link>http://bbpress.org/forums/topic/help-i-messed-up-my-code-login-fields#post-16963</link>
<pubDate>Thu, 26 Jun 2008 23:43:54 +0000</pubDate>
<dc:creator>sherrynes</dc:creator>
<guid isPermaLink="false">16963@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;In styling my page I messed up the PHP code apparently.  When I log in, it does log me in.  But the Log In fields just stay there instead of showing the admin&#124;Admin&#124;Logut links.&#60;/p&#62;
&#60;p&#62;Can someone please take a look and tell me what I did and how to fix it?  Thanks!  &#60;a href=&#34;http://www.undercoverlawyer.com/forum/&#34; rel=&#34;nofollow&#34;&#62;http://www.undercoverlawyer.com/forum/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;-Sherry
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "bbPress call for the time"</title>
<link>http://bbpress.org/forums/topic/bbpress-call-for-the-time#post-16441</link>
<pubDate>Sat, 24 May 2008 09:09:00 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">16441@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you just want the year with php, you don't need bbPress functions at all, just php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php echo date(&#38;#39;Y&#38;#39;); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That will echo the current year.
&#60;/p&#62;</description>
</item>
<item>
<title>parthatel on "bbPress call for the time"</title>
<link>http://bbpress.org/forums/topic/bbpress-call-for-the-time#post-16437</link>
<pubDate>Fri, 23 May 2008 23:52:31 +0000</pubDate>
<dc:creator>parthatel</dc:creator>
<guid isPermaLink="false">16437@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just like how Wordpress calls time in the footer by &#38;lt;?php the_time('Y'); ?&#38;gt; and the name by &#38;lt;?php bloginfo(); ?&#38;gt;. What is the code I need to use for bbPress since &#38;lt;?php the_time('Y'); ?&#38;gt; doesn't work to get the year? I also need to know how to get the bbPress title.
&#60;/p&#62;</description>
</item>
<item>
<title>jenz on "Full Content of Most Recent Post on Front-Page?"</title>
<link>http://bbpress.org/forums/topic/full-content-of-most-recent-post-on-front-page/page/2#post-15552</link>
<pubDate>Sun, 20 Apr 2008 01:29:29 +0000</pubDate>
<dc:creator>jenz</dc:creator>
<guid isPermaLink="false">15552@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If I used:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
$forum_id = 1;
$number_of_topics = 7;
$forum_one_topics = $bbdb-&#38;gt;get_results(&#38;quot;SELECT * FROM $bbdb-&#38;gt;topics WHERE forum_id = $forum_id ORDER BY topic_id DESC LIMIT 0,$number_of_topics&#38;quot;)
?&#38;gt;
&#38;lt;?php
foreach($forum_one_topics as $topic) : $forum_one_topic_posts = get_thread( $topic-&#38;gt;topic_id); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;(as see at the beginning of this topic) - how can I show the initial topic time on the front page instead of the last reply time?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "PHP if... else Help Required"</title>
<link>http://bbpress.org/forums/topic/php-if-else-help-required#post-15268</link>
<pubDate>Fri, 11 Apr 2008 16:11:56 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">15268@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;bbPress has a function to check for administrators.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;if (!in_array(intval($GLOBALS[&#38;#39;forum&#38;#39;]-&#38;gt;forum_id), array(2,5,9)) &#124;&#124; bb_current_user_can(&#38;#39;administrate&#38;#39;)) {  do something here }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;where 2,5,9 is the list of forum numbers you want to restrict &#60;/p&#62;
&#60;p&#62;what you are trying to do is possible but very tricky&#60;br /&#62;
For example the &#34;add new&#34; on the front page offers all the forums for posting and you'd have to write a replacement for the list (bb_new_topic_forum_dropdown)&#60;/p&#62;
&#60;p&#62;All the &#34;magic&#34; happens in post-form.php, so you could take that if statement above and wrap the entire template with that (in theory).
&#60;/p&#62;</description>
</item>
<item>
<title>traceyshaw on "PHP if... else Help Required"</title>
<link>http://bbpress.org/forums/topic/php-if-else-help-required#post-15221</link>
<pubDate>Thu, 10 Apr 2008 02:44:08 +0000</pubDate>
<dc:creator>traceyshaw</dc:creator>
<guid isPermaLink="false">15221@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;In my template I want to specify that one of my forums can be posted to by admins only, and other users can only reply.&#60;/p&#62;
&#60;p&#62;I figured the best way (and I know it's not foolproof, but at least I can make it more difficult for people to do!) would be to use an if... else statement, but I'm not sure how to correctly write it.&#60;/p&#62;
&#60;p&#62;In non-PHP structure: &#34;if the forum ID is 2 and the user is an admin, show the 'add topic' link; and if the forum is not equal to 2 then show the link to all registered members (in other words, let them see the 'add topic' link in every other forum except 2) &#34;.&#60;/p&#62;
&#60;p&#62;If you could please assist a php-noob by showing me the correct structure for this statement, it'd be much appreciated.&#60;/p&#62;
&#60;p&#62;Also, if you know of a better way to make one forum admin-post only and member-reply only (while the others forums remain as they are now), I'm all ears! Well, all eyes since I'll be reading rather than listening.&#60;/p&#62;
&#60;p&#62;Thank you so much in advance!
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "I can't access install.php"</title>
<link>http://bbpress.org/forums/topic/i-cant-access-installphp#post-14892</link>
<pubDate>Wed, 02 Apr 2008 02:55:46 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14892@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I saw your other post.  You need to enable PHP on IIS.  You should contact your host.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "IIS and php"</title>
<link>http://bbpress.org/forums/topic/iis-and-php#post-14891</link>
<pubDate>Wed, 02 Apr 2008 02:54:34 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14891@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://www.google.com/search?q=php+on+IIS&#34;&#62;Google knows&#60;/a&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>exserair on "IIS and php"</title>
<link>http://bbpress.org/forums/topic/iis-and-php#post-14888</link>
<pubDate>Wed, 02 Apr 2008 00:11:35 +0000</pubDate>
<dc:creator>exserair</dc:creator>
<guid isPermaLink="false">14888@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Does someone know how to enable php in an IIS server?
&#60;/p&#62;</description>
</item>
<item>
<title>exserair on "I can't access install.php"</title>
<link>http://bbpress.org/forums/topic/i-cant-access-installphp#post-14886</link>
<pubDate>Tue, 01 Apr 2008 23:39:27 +0000</pubDate>
<dc:creator>exserair</dc:creator>
<guid isPermaLink="false">14886@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I already did the thing of the info.php file, but it doesn't work... I'll try the next step and let you know the result.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "PHP Error Messages"</title>
<link>http://bbpress.org/forums/topic/php-error-messages#post-14863</link>
<pubDate>Tue, 01 Apr 2008 05:05:35 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14863@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;strong&#62;suleiman&#60;/strong&#62;: please start a new thread with your specific problem listed there, with a link to your forum.  Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>suleiman on "PHP Error Messages"</title>
<link>http://bbpress.org/forums/topic/php-error-messages#post-14847</link>
<pubDate>Mon, 31 Mar 2008 15:40:55 +0000</pubDate>
<dc:creator>suleiman</dc:creator>
<guid isPermaLink="false">14847@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;this did not fix my problem, I'm still getting the same errors.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "I can't access install.php"</title>
<link>http://bbpress.org/forums/topic/i-cant-access-installphp#post-14844</link>
<pubDate>Mon, 31 Mar 2008 13:52:55 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14844@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can access this:&#60;br /&#62;
&#60;a href=&#34;http://cialar.com/foro/bb-images/bbpress.png&#34; rel=&#34;nofollow&#34;&#62;http://cialar.com/foro/bb-images/bbpress.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Which means the files (at least that file) are there.&#60;/p&#62;
&#60;p&#62;I can also access these and get directory listings:&#60;br /&#62;
&#60;a href=&#34;http://cialar.com/foro/bb-admin/&#34; rel=&#34;nofollow&#34;&#62;http://cialar.com/foro/bb-admin/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://cialar.com/foro/&#34; rel=&#34;nofollow&#34;&#62;http://cialar.com/foro/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;That tells me that the index.php file in each directory is not getting processed by the web server.  Looks like some sort of configuration problem with the server.&#60;/p&#62;
&#60;p&#62;Can you put a simple file in the foro directory, call it info.php and put this into it:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
phpinfo();
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#38;nbsp;&#60;br /&#62;
Then access that at &#60;a href=&#34;http://www.cialar.com/foro/info.php.&#34; rel=&#34;nofollow&#34;&#62;http://www.cialar.com/foro/info.php.&#60;/a&#62;  See what that tells you.  If that is not processed by the web server, then it's a problem with the server, not bbPress.  &#60;/p&#62;
&#60;p&#62;I don't have a lot of experience on an IIS server, so there may be something simple I'm not familiar with that would cause this.&#60;/p&#62;
&#60;p&#62;I am guessing PHP is not enabled here:&#60;br /&#62;
&#60;a href=&#34;http://www.cialar.com/foro/&#34; rel=&#34;nofollow&#34;&#62;http://www.cialar.com/foro/&#60;/a&#62; (IP: 74.208.22.70)&#60;/p&#62;
&#60;p&#62;It is however enabled here:&#60;br /&#62;
&#60;a href=&#34;http://www.foro.cialar.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.foro.cialar.com/&#60;/a&#62; (IP: 74.86.125.241)&#60;/p&#62;
&#60;p&#62;Those are two completely different machines.  The one where phpBB is now is a Linux/Apache machine with PHP 5.2.5.  The cialar.com one if IIS.&#60;/p&#62;
&#60;p&#62;I am pretty sure this is a configuration thing with your server, and where you have bbPress installed does not support PHP.
&#60;/p&#62;</description>
</item>
<item>
<title>exserair on "I can't access install.php"</title>
<link>http://bbpress.org/forums/topic/i-cant-access-installphp#post-14834</link>
<pubDate>Mon, 31 Mar 2008 04:14:10 +0000</pubDate>
<dc:creator>exserair</dc:creator>
<guid isPermaLink="false">14834@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The URL is:&#60;br /&#62;
&#60;a href=&#34;http://cialar.com/foro/bb-admin/install.php&#34; rel=&#34;nofollow&#34;&#62;http://cialar.com/foro/bb-admin/install.php&#60;/a&#62;&#60;br /&#62;
I already accessed
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "I can't access install.php"</title>
<link>http://bbpress.org/forums/topic/i-cant-access-installphp#post-14833</link>
<pubDate>Mon, 31 Mar 2008 02:02:00 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14833@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Share the URL and see if someone can help you.
&#60;/p&#62;</description>
</item>
<item>
<title>exserair on "I can't access install.php"</title>
<link>http://bbpress.org/forums/topic/i-cant-access-installphp#post-14832</link>
<pubDate>Mon, 31 Mar 2008 00:52:03 +0000</pubDate>
<dc:creator>exserair</dc:creator>
<guid isPermaLink="false">14832@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I followed all the steps to install, but when it is uploaded in my server I can't access install.php&#60;br /&#62;
What can I do?
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "REQUIREMENT OF Forum - WebMaster"</title>
<link>http://bbpress.org/forums/topic/requirement-of-forum-webmaster#post-14505</link>
<pubDate>Mon, 17 Mar 2008 07:32:50 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">14505@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;A host that doesn't support PHP is quite rare... I don't think I've ever seen one.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "REQUIREMENT OF Forum - WebMaster"</title>
<link>http://bbpress.org/forums/topic/requirement-of-forum-webmaster#post-14486</link>
<pubDate>Sat, 15 Mar 2008 20:04:35 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14486@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Your server responds that it DOES support PHP:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;(uiserver):u12345678:~ &#38;gt; curl -I &#60;a href=&#34;http://www.infotainmentcenter.com&#34; rel=&#34;nofollow&#34;&#62;www.infotainmentcenter.com&#60;/a&#62;
HTTP/1.1 200 OK
Date: Sat, 15 Mar 2008 20:01:32 GMT
Server: Apache
X-Powered-By: PHP/4.4.1&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Try putting this into a file and making it accessible at your domain:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
phpinfo();
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Save that as &#60;code&#62;info.php&#60;/code&#62; and try accessing it &#60;a href=&#34;http://www.infotainmentcenter.com/info.php&#34; rel=&#34;nofollow&#34;&#62;http://www.infotainmentcenter.com/info.php&#60;/a&#62; .  Maybe you will find that the server supports PHP. &#60;/p&#62;
&#60;p&#62;If the host does not support PHP, I suggest you get a new host.  I have seen forum software that can run with flat files instead of a MySQL database, but none that are done without a scripting language like PHP.
&#60;/p&#62;</description>
</item>
<item>
<title>aryablues on "REQUIREMENT OF Forum - WebMaster"</title>
<link>http://bbpress.org/forums/topic/requirement-of-forum-webmaster#post-14484</link>
<pubDate>Sat, 15 Mar 2008 16:20:50 +0000</pubDate>
<dc:creator>aryablues</dc:creator>
<guid isPermaLink="false">14484@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I am the webmaster of &#60;a href=&#34;http://www.infotainmentcenter.com&#34; rel=&#34;nofollow&#34;&#62;www.infotainmentcenter.com&#60;/a&#62; and we are&#60;br /&#62;
in requirement of FORUM, so, please help us .&#60;br /&#62;
Our system will not support PHP pages .&#60;br /&#62;
So, I would request you to provide me some feedback about this matter&#60;br /&#62;
on how can I embed a forum software.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Different Backgrounds"</title>
<link>http://bbpress.org/forums/topic/different-backgrounds#post-14458</link>
<pubDate>Fri, 14 Mar 2008 06:06:02 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">14458@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This would be pretty easy to do within a theme.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Different Backgrounds"</title>
<link>http://bbpress.org/forums/topic/different-backgrounds#post-14452</link>
<pubDate>Thu, 13 Mar 2008 18:28:17 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14452@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It can be done with PHP.&#60;/p&#62;
&#60;p&#62;I've never done the random thing, but the Cutline theme for WordPress offers this functionality.  You can read about it here:&#60;br /&#62;
&#60;a href=&#34;http://cutline.tubetorial.com/totally-random-header-images-for-cutline/&#34; rel=&#34;nofollow&#34;&#62;http://cutline.tubetorial.com/totally-random-header-images-for-cutline/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I think you could adapt that for your uses.&#60;/p&#62;
&#60;p&#62;In WordPress, for a specific background tied to a specific page, I just do something like this in header.php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;container&#38;quot; style=&#38;quot;background: #fff url(&#38;#39;&#38;lt;?php bloginfo(&#38;#39;template_directory&#38;#39;); ?&#38;gt;/images/&#38;lt;?php echo $post-&#38;gt;ID; ?&#38;gt;.jpg&#38;#39;) left top no-repeat;&#38;quot;&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That gives the &#60;code&#62;container&#60;/code&#62; div the background image of the post ID.jpg, so if you were viewing post 52, you would have a background image of &#60;code&#62;52.jpg&#60;/code&#62;.  You could easily adapt this to bbPress calls by using the forum number and &#60;code&#62;$forum_id&#60;/code&#62;, whichever div you want a background for (#wrapper or #main?) and then the proper location of your images (whether they are stored in your template folder or your forum root or something.)  It fails OK too since there is a color code for the background and that is used if the image cannot be found (I think that's what happens anyway.)&#60;/p&#62;
&#60;p&#62;Let me know if that makes sense.  This is how I've done it in WordPress, but the same approach will work for bbPress I think.
&#60;/p&#62;</description>
</item>
<item>
<title>McKrazie on "Different Backgrounds"</title>
<link>http://bbpress.org/forums/topic/different-backgrounds#post-14446</link>
<pubDate>Thu, 13 Mar 2008 15:27:31 +0000</pubDate>
<dc:creator>McKrazie</dc:creator>
<guid isPermaLink="false">14446@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I am currently in developement of a theme for a gaming group's website that I maintain. We play multiple games and I wanted to have different backgrounds get picked randomly for the site and then if you select one of the games in their given section ... it would pick that game background for that page. Perhaps, if I could for that game's forum also on bbPress.&#60;/p&#62;
&#60;p&#62;I know this may be a lot to ask of a PHP script but is there anything out there?&#60;/p&#62;
&#60;p&#62;To help aid in any responces here is my idea overviewed:&#60;/p&#62;
&#60;p&#62;Parent Link - Randomly picked background from backgrounds database&#60;br /&#62;
Games &#38;gt; Warcraft - Warcraft background&#60;br /&#62;
Forums - Randomly picked background from backgrounds database&#60;br /&#62;
Warcraft Forums - Warcraft background&#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "PHP Error Messages"</title>
<link>http://bbpress.org/forums/topic/php-error-messages#post-13414</link>
<pubDate>Sat, 26 Jan 2008 16:16:45 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13414@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't think the trunk release is reliable for installations at this point.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/changeset-1076-aka-this-will-break-everything&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/changeset-1076-aka-this-will-break-everything&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You should probably install an .8.3.1 release or possibly a revision after .8.3.1 but not the latest trunk.  There was a post from sambauers regarding which revision would be best to check out, I think it was revision r980.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/broken-profiles-for-users-with-spaces-in-the-names?replies=5#post-12769&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/broken-profiles-for-users-with-spaces-in-the-names?replies=5#post-12769&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Tymothi on "PHP Error Messages"</title>
<link>http://bbpress.org/forums/topic/php-error-messages#post-13400</link>
<pubDate>Sat, 26 Jan 2008 04:37:30 +0000</pubDate>
<dc:creator>Tymothi</dc:creator>
<guid isPermaLink="false">13400@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am getting this error&#60;br /&#62;
Warning: Cannot modify header information - headers already sent by (output started at /home/content/h/e/r/heroalliance/html/bbpress/config.php:64) in /home/content/h/e/r/heroalliance/html/bbpress/bb-includes/pluggable.php on line 164&#60;br /&#62;
I am using PHP5
&#60;/p&#62;</description>
</item>
<item>
<title>j8h9 on "PHP Error Messages"</title>
<link>http://bbpress.org/forums/topic/php-error-messages#post-13384</link>
<pubDate>Fri, 25 Jan 2008 20:07:38 +0000</pubDate>
<dc:creator>j8h9</dc:creator>
<guid isPermaLink="false">13384@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Installed trunk. Get this... &#60;/p&#62;
&#60;p&#62;Warning: Invalid argument supplied for foreach() in /home/bl/public_html/forum/bb-settings.php on line 294&#60;/p&#62;
&#60;p&#62;Warning: Cannot modify header information - headers already sent by (output started at /home/bl/public_html/forum/bb-settings.php:294) in /home/bl/public_html/forum/bb-includes/pluggable.php on line 193&#60;/p&#62;
&#60;p&#62;Warning: Cannot modify header information - headers already sent by (output started at /home/bl/public_html/forum/bb-settings.php:294) in /home/bl/public_html/forum/bb-includes/pluggable.php on line 231
&#60;/p&#62;</description>
</item>
<item>
<title>j8h9 on "PHP Error Messages"</title>
<link>http://bbpress.org/forums/topic/php-error-messages#post-13382</link>
<pubDate>Fri, 25 Jan 2008 19:25:06 +0000</pubDate>
<dc:creator>j8h9</dc:creator>
<guid isPermaLink="false">13382@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thank you
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "PHP Error Messages"</title>
<link>http://bbpress.org/forums/topic/php-error-messages#post-13338</link>
<pubDate>Thu, 24 Jan 2008 01:55:33 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">13338@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@j8h9&#60;/p&#62;
&#60;p&#62;I've got 3 fixes for you to choose from:&#60;/p&#62;
&#60;p&#62;1. Make the above changes&#60;br /&#62;
2. Upgrade the version of PHP you are using&#60;br /&#62;
3. Download the current trunk (rev 1071) &#60;a href=&#34;http://trac.bbpress.org/changeset/1071/trunk?old_path=%2F&#38;#38;format=zip&#34;&#62;here&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Or go back to phpbb, your choice.&#60;br /&#62;
: )
&#60;/p&#62;</description>
</item>
<item>
<title>j8h9 on "PHP Error Messages"</title>
<link>http://bbpress.org/forums/topic/php-error-messages#post-13336</link>
<pubDate>Thu, 24 Jan 2008 01:42:02 +0000</pubDate>
<dc:creator>j8h9</dc:creator>
<guid isPermaLink="false">13336@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;First install failed due to this error. Why can't they put the fix in the version I'm downloading. Geez. Back to phpbb.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "PHP Error Messages"</title>
<link>http://bbpress.org/forums/topic/php-error-messages#post-13151</link>
<pubDate>Mon, 14 Jan 2008 16:41:53 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13151@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I saw r1012 today with that fix.  Thanks.  I thought I heard it was a PHP version thing before, but never really confirmed it.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
