Why can’t you just modify one of those plugins by a little in order to fit your needs? You’d save a lot of work!
Why can’t you just modify one of those plugins by a little in order to fit your needs? You’d save a lot of work!
John James Jacoby: For people running into issues on Windows local installs, svn up and test the most recent trunk. The solution isn’t very pretty but appears to work on all server configs.
I love this (ugly) solution, thanks for taking the time to do what you did, and if what Ryan Boren did in a particular change in WordPress helped too then grand!
With this, you can tell Automattic made a good call adding you to the team (congratulations again!)
Rich Pedley: Works OK for me, I never thought of just changing that portion (doh).
You always think about it after you see the change made, I’m sure I’d been playing about with that at one stage but had nothing like the final ”solution” shows … least we’ve got JJJ to help us! 
DeysonOrtiz: I dropped the ‘plugin’ folder into the wp-content/plugins folder and then changed the folder named ‘plugin’ to bbpress.
By rights it should show up fine in either folder. So inside the /wp-content/plugins/bbpress/ directory do you see a bbpress.php file? Can you just double check all the files needed to run the bbPress Plugin have been uploaded!
Hi,
I need help to develope a plugin that notificat and send email to admin about who have post a message on forum (guest or member) :
########################################################################
function admin_notification() {
if (bb_is_user_logged_in()){$message_notification=”a membre have post a message”;}else{$message_notification=”a guest have post a message”;}
$admin=”admin@exemple.com”;
bb_mail($admin, “new post on your forum”, $message_notification);
}
add_action(‘bb_new_post’, ‘admin_notification’);
########################################################################
But this code always send “a membre have post a message” even if a guest post …
Hello,
It seems the plug-in does not show up in my Plugins-admin page.
I dropped the ‘plugin’ folder into the wp-content/plugins folder and then changed the folder named ‘plugin’ to bbpress.
Am I missing something
I am really excited to see this work! 
Thank you.
Please delete this post.
All problems fixed after full reinstall.
Sorry for space-wasting!
Please delete this post.
All problems fixed after full reinstall.
Sorry for space-wasting!
Hi all.
Just set up a BBPress and WPMU integration. Finally got access to bb-admin files after a bit of tinkering around with the MySQL tables. I had to set a bb_capabilities value and set it Administrator, rather than the Keymaster I made etc. etc. I mention this only as it could be of relevance, I doubt it, but there we are!
I can now login, set up forums, admin them, people can register on the WP site, login at the forums, it’s all going great. Or so I thought.
When I go to the bb-admin pages, everytime, this hasn’t just started occuring, I get the following error messages:
Warning: Division by zero in /home/unibbco/public_html/bbpress/bb-includes/functions.bb-statistics.php on line 214
Warning: Division by zero in /home/unibbco/public_html/bbpress/bb-includes/functions.bb-statistics.php on line 194
Warning: Division by zero in /home/unibbco/public_html/bbpress/bb-includes/functions.bb-statistics.php on line 174
Warning: Division by zero in /home/unibbco/public_html/bbpress/bb-includes/functions.bb-statistics.php on line 244
Any idea on why this is and how I can fix it?
The forums have 3 users, no posts, only one forum.
Thanks in advance for any assistance!
We need to create a basic import plugin. — This I have done, it’s experimental and I’d like some more eyes on the code before calling it “done”
I’ve looked for it but haven’t found it. I guess it hasn’t been published yet?
I ask for help in making a single-use script to import topics and posts into existing BBPress installation.
I need to import a legacy Q&A (hundreds of them) stored in a flat file. I need to handle fields missing in the source, which contains: Q poster, Q poster’s e-mail (optional), Q post date, Q content, A content. I want to import those and fill the missing fields with arbitrary values.
I chose to use API to do the task, which is a right choice, what was pointed above. I converted the source file manually and imported it into a multi-dimensional array. Then I want to use functions bb_insert_topic and bb_insert_post in a simple loop:
$topic_id = bb_insert_topic(array(...));
bb_insert_post(array('topic_id' => $topic_id, ...);
The problem is: I can create topics/posts only for current user. Any poster_ parameters passed to bb_insert_ are ignored. In other words, I can’t create anonymous topics/posts with poster credits I specify. I guess I’m missing a setting or constant?
The PHP script is located in the root folder of BBPress. I do require('./bb-load.php'); and log in to my keymaster user in the browser. All of $bbdb, $bb and $bb_current_user are populated (I used FirePHP to debug).
What am I missing?
hi paul;
I had a problem on this plugin. the biggest problem is I get some codes at the top of the page. and this chance all the view. how I can solve it…
the codes starting with
getAllStatuses(); $renderer = get_active_status………
and ending with
DefaultStatusInterpreter(BUSY_THRESHOLD)); topic_icons_register_status_renderer(‘default’, new DefaultStatusRenderer()); } topic_icons_init(); ?>
how I solve it….
can you help me…
Hi , I have a problem, I move the page title, but can not find the code where to do so.
show an image
http://img192.imageshack.us/img192/6782/tituloq.jpg
Thanks!!
I think the correct way to add tags is by a plugin, normally you should never edit the core code of bbpress! because if you do, next time you update your bbpress you will be deleting the modified core files, then you will get trouble with your forum not working properly.. So the best is to use a plugin for things that deal with core files..
PS: Core files are files that are not Themes nor plugins, such as files under; bb-includes and bb-admin,
Anyone else having problems with non-admins replying?
Edit: Found the problem
bbp-functions.php line 142 is
$reply_content = current_user_can( 'unfiltered_html' ) ? $_POST['bbp_reply_content'] : wp_filter_post_kses( $_POST['bbp_reply_description'] );
should be
$reply_content = current_user_can( 'unfiltered_html' ) ? $_POST['bbp_reply_content'] : wp_filter_post_kses( $_POST['bbp_reply_content'] );
I moved my-plugins to my-pluginsOLD and it opened now..
need to install every plugin again.. thanks anyway..
I moved my-plugins to my-pluginsOLD and it opened now..
need to install every plugin again.. thanks anyway..
My sweet Nicer Permalinks plugin, indeed!
My sweet Nicer Permalinks plugin, indeed!
I found that to exclude multiple forums, it has to be a negative value in exclude:
get_latest_topics('exclude=-3,-16,-28')
according to the wordpress codex, the numbers are supposed to be in ascending order, so I assume order is important in bbpress too.
I need to add form on my forum front page to edit directly the topic title on it.
Now, i add this code :
#####################################################
<form name=”edit_topic” method=”post” action=””>
<label><?php _e(‘Topic:’); ?>
<input name=”topic” type=”text” id=”topic” size=”50″ maxlength=”80″ value=”<?php echo esc_attr( get_topic_title() ); ?>” />
</label>
<input type=”submit” name=”Submit” value=”<?php echo esc_attr__( ‘Edit Post »’ ); ?>” />
</form>
########################################################
but when i clic submit button nothing is happening …
http://img530.imageshack.us/img530/3108/frontpaged.png
I need to add form on my forum front page to edit directly the topic title on it.
Now, i add this code :
#####################################################
<form name=”edit_topic” method=”post” action=””>
<label><?php _e(‘Topic:’); ?>
<input name=”topic” type=”text” id=”topic” size=”50″ maxlength=”80″ value=”<?php echo esc_attr( get_topic_title() ); ?>” />
</label>
<input type=”submit” name=”Submit” value=”<?php echo esc_attr__( ‘Edit Post »’ ); ?>” />
</form>
########################################################
but when i clic submit button nothing is happening …
http://img530.imageshack.us/img530/3108/frontpaged.png
zaerl: bbPress isn’t a WordPress plugin. It’s a standalone software.
Not yet anyway like driz states! Development is on-going right now, but the basic functions all work, and things are slowly starting to take shape!
Can you be more specific, please?
Anyhow, you cannot use that code without wrapping it in a <form />.
Can you be more specific, please?
Anyhow, you cannot use that code without wrapping it in a <form />.
Hi,
I need to change the topic title directly on the front-page.php
i add this code on that file but don’t work …
########################################################”
<p role=”main”>
<label><?php _e(‘Topic:’); ?>
<input name=”topic” type=”text” id=”topic” size=”50″ maxlength=”80″ value=”<?php echo esc_attr( get_topic_title() ); ?>” />
</label>
</p>
<?php endif; do_action( ‘edit_form_pre_post’ ); ?>
<p><label><?php _e(‘Post:’); ?>
<textarea name=”post_content” cols=”50″ rows=”8″ id=”post_content”><?php echo apply_filters(‘edit_text’, get_post_text() ); ?></textarea>
</label>
</p>
<p class=”submit”>
<input type=”submit” name=”Submit” value=”<?php echo esc_attr__( ‘Edit Post »’ ); ?>” />
<input type=”hidden” name=”post_id” value=”<?php post_id(); ?>” />
<input type=”hidden” name=”topic_id” value=”<?php topic_id(); ?>” />
</p>
<p><?php _e(‘Allowed markup:’); ?> <?php allowed_markup(); ?>.
<?php _e(‘Put code in between backticks.’); ?></p>
#######################################################################””
I’m on bbPress latest trunk, testing bbPM 1.0.1 and I’ve never had any problem at all.