Published on February 26th, 2008 by
Hi. Something strange just started occurring in my forum. I post a reply to a post and it shows me the reply and the background is yellow (this is new) and then I look at the forum and my post is registering in the number of posts counter, but not updating the “freshness” or moving the topic up the list. All of this is new. I tried logging out and then viewing the forum and my new post(s) are not registering at all.
any ideas?
Published on February 26th, 2008 by Onion
I’m new to bbpress, and was playing around with an install. I noticed that it doesn’t allow all forms of line breaks, only the current proper one that is self closing.
<br> and <BR>
Do not seem to work properly. This was an issue because I noticed that my users are sloppy HTML coders and the tags would just print out.
I don’t know if it has been covered before. I searched and found nothing. I did get it to work with a small php tweak.
In formatting-functions.php, I put the following under bb_encode_bad:
$text = preg_replace('|& lt;BR& gt;|', '', $text);
$text = preg_replace('|& lt;br& gt;|', '', $text);
$text = preg_replace('|& lt;br /& gt;|', '', $text)
(The code tag won’t output the code correctly, so I put a space after the &, so they wouldn’t get converted.)
It works, but all three forms now convert to<br>, instead of
Which works well enough, but even self closing br tags will now drop the /
I’m not strong at PHP. Only enough to get by. What do you think. Is there another way to do it? Or a better way? Or hell, a plugin?
Published on February 25th, 2008 by
Damnit, I was so looking forward to using bbpress. Im a big fan of wordpress, and I love that its so simple to mod. but there seems to be some problems with this board, and I can figure it out.
On the wery first page when installing, I get this messege;
Warning: Invalid argument supplied for foreach() in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-settings.php on line 169
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-admin/install.php on line 10
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/functions.php on line 1910
Im able to install just fine, but when I try to log in, I get this;
Warning: Invalid argument supplied for foreach() in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-settings.php on line 169
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 164
Im lost when it comes to php, and its seems from this board, that there have been thiis problem for quite a wile, 6 month now. goodbuy bbpress, hello minibb??
The forum is located on www.cobain.dk/bbpress
‘
PHP5
The server has “PHP – Register globals” set to OFF
bbPress and WordPress have different table prefixes
bb_forums
bb_posts
bb_tagged
bb_tags
bb_topicmeta
bb_topics
bb_usermeta
bb_users
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_terms
wp_term_relationships
wp_term_taxonomy
wp_usermeta
wp_users
Published on February 25th, 2008 by dheerajsl
Hi
I have installed bbpress at http://www.forums.mbapursuit.com , Earlier I was using YABB. Is there any way to import all the yabb data such as users, pots and categories from my YABB forum to BBpress.
Thank You
Dheeraj Singh
Published on February 25th, 2008 by chrishajer
The past couple weeks, I have noticed that nearly every time I access the forums here at https://bbpress.org/forums/ I need to log in. It didn’t used to be like that. It seemed like the cookie lasted for months.
When I look at the cookies after logging in here, I have two bb_org session cookies, plus:
name: bb_org_user
value: chrishajer
There is no bb_org_pass cookie.
When I look at cookies for a non-integrated 0.8.3.1 install, I see:
name: bb_user_838717f68fe05f4ed4c22bc08ae180c8
value: chrishajer
name: bb_pass_838717f68fe05f4ed4c22bc08ae180c8
value: 6429e15ef02ba9f2d7a89cab0ed845a4
(values slightly obfuscated)
Any idea what’s going on? It’s no problem to just log in again, but it wasn’t like that before, and I don’t think it’s intended to work like this.
I cleared all the domain cookies and logged in again, but the cookies are the same. Anyone else seeing the same thing? BTW, using Firefox 2.0.0.12 on Windows XP.
Published on February 25th, 2008 by Sam Bauers
I just wanted to take a second to acknowledge a couple of people who have been doing some real heavy lifting around here to keep everyone up and running with bbPress.
chrishajer and _ck_ have been super-vigilant helping all-comers on the forums in the past few months and I just wanted to publicly thank them for the time they have volunteered helping to grow the bbPress community.
Thanks guys!
Published on February 25th, 2008 by
Is there a function I can use to get the post_id? I need to have the post id laid down in the post.php to build an ajax call relevant to that particular post. Can anyone give me an idea?
Published on February 25th, 2008 by
Hello
I have 2 bbpres forums within a single database.(with different table prefixes) Is it possible to share users among these two forums??
Published on February 24th, 2008 by
I installed bbpress today, and the installation worked out great.
After installing, I went on to log in using my new password. then came up an empty site, all white.
I then uninstalled it and deleted the db, I reinstalled it, and the same thing happened?!
I cant quite fugure out whats wrong.
www.cobain.dk/bbpress
Published on February 24th, 2008 by
Heya,
i’ve installed a wordpress plugin for avatars which is integrated into my wordpress by the following code:
<?php if(function_exists(cmd_show_avatar)) cmd_show_avatar(avatar); ?>
Is there any possibility to embed this code into my bbpress just for showing the wordpress avatar (because of saying my bbpress to require wp-blog-header in the config.php)?