– how to quickly see my own posts ?
– any chance to search for posts by username ?
I do see this issue elegantly solved at Gossamer-Threads-software.
http://www.gossamer-threads.com/forum/
Any chance to have this search-feature at BBPress-software ?
why is BBPress-software not a threaded forum ?
I do see this issue elegantly solved at Gossamer-Threads-software.
http://www.gossamer-threads.com/forum/
Any chance a threaded forum-layout is being integrated into BBPress ?
WordPress itself just underwent a pretty serious security attack:
http://www.cmswire.com/cms/web-cms/wordpress-under-attack-upgrade-now-or-forever-live-in-fear-005489.php
Since bbPress 1.0 shares a lot of code with WordPress (through BackPress), it may or may not be vulnerable… hopefully Sam can weigh in definitively on this one!
Yah I’m guessing it’s either a bug with 1.0… or someone needs to use the recount feature in the admin!
Everybody needs a break from time to time. They were probably just sleeping in.
Mine was to check the bug tracker… oh dear
my first reaction was to check the sourcecode haha
Do I need need to integrate WP 2.8 and bbPress1.0? I thought I did not need a plugin to do that anymore. Is that a required step or once I uoload bbPress onto my server it will be good to go with WP 2.8? Is there a plugin that helps with integration, if necessary?
Thank you.
It was like that pre-downtime, it’s just an odd quirk really.
I was going to ask but no one posted so I just let it go. I do want an answer I don’t want my forum to get attacked.
Anyone know what happened to the bbPress.org forums over the last day or so? I kept getting a white page… the blog and plugins sections seemed to work though.
Installation- Topics number says, as of now, -6,662 (notice the negative)
Looks promising! You may want to hire a programmer though if you get the chance, as “Please keep in mind that, because all our works are done manually, it may take up to 1 week.” is a huge barrier for entry to a lot of people. A form that they can fill out and be up and running in the same hour would probably help bring in traffic.
Good domain choice.
Navigation not working only for Page 1
Yes, site/forum is non-work for me too.
There was a post on page 2 that said the script was no longer downloadable… does anyone know how to get a hold of it now? (I tried all the links in this thread, but none of them worked.)
I don’t know if anyone else experienced a similar problem already. I searched the forum, but nobody seems to have encountered this problem.
On my bbPress forum (http://hostpress.org/), if I go to page 2 under “Latest Discussions” section, afterwards I cannot go back to page 1. The http link on page 1 itself is showing page 2…
Any solution? Help is much appreciated.
P.S.
By the way, was bbPress forums down for some 24 hours? I could not access it although I could access bbPress website itself. Maybe only me?
Thank you very much for your comment, Olaf.
Just to be precise, I am happy to host any other PHP scripts as well (even competitors like phpBB and SMF), so I can also do buddypress & wordpress.
It’s just that I love bbPress best, and am emphasizing it more than other PHP systems. bbPress is really miraculously beautiful.
bbPress’ base directory, not a dumb question
That’s a pretty old plugin… have you tried this one?
https://bbpress.org/plugins/topic/user-directory/
I can’t vouch for it, but it looks newly maintained…
Hi,
I have an existing phpbb2 forum and was hoping to migrate the existing data into bbPress, followed by integration to WordPress MU. Here’s the steps i’ve done so far:
1. installed a fresh copy of bbPress 1.0.2
2. downloaded phpbb2bbpress converter from http://www.iteisa.com/phpbb2bbpress/
3. ammended the necessary stuff inside the file and ran the script
4. installed WordPress MU
I was comparing the bb_ and wp_ tables and would like to know:
1. can i simply insert into wp_usermeta, (user_id, meta_key, meta_value) from bb_usermeta table where the meta_key = bb_capabilities because it looks safer than just replacing wp_usermeta with bb_usermeta due to the existing entries in wp_usermeta which i’m unsure of their usage?
2. it also seems that i should insert all the necessary values from bb_users table to wp_users table because wp_users has more columns
are there anything else database-wise i need to do?
After the above i know i need to install a bbpress-integration.php into WordPress MU and do some settings on both bbPress and WordPress MU settings/configs. Are there any other steps i’m missing out?
I would really appreciate any help on this
No, it’s a directory, it’s just <your website>/<directory name>. You can put /index.php after if you want though.
<?php
/*
Plugin Name: Open Links in New Window
*/
function bb_target_blank( $text ) {
$text = preg_replace('|<a (.+?)>|i', '<a $1 target="_blank">', $text);
return $text;
}
add_filter('post_text', 'bb_target_blank',255);
?>
Put the above into a file and save it as new-window-links.php or similar in your my-plugins directory. Then enable it in the plugins menu. Should work. Avoid getting any spaces around the start and end tags.
https://bbpress.org/forums/topic/target-_blank