Forum Replies Created
-
In reply to: bbPress Moderation Suite
What other plugins are you running?
In reply to: problem with installationAdd this line to your
bb-config.php
:error_reporting( E_ALL & ~E_DEPRECATED );
In reply to: Where do you activate it?Is it in your
my-plugins
folder?In reply to: Help out with bbPressOkay, now that we’re ready to get this show back on the road, let’s get this show back on the road!
In reply to: Minutes hours days translation?That would be translating bbPress, and you’d need two things: Poedit and The bbPress POT file from your version.
You’d want to make “new from POT”, then save it as
de
.Find the things you want to translate and put the translations in for them, then save again, and upload the
de.mo
to your forum’smy-languages
folder. If it doesn’t already have one, make one.Then, in your
bb-config.php
, setBB_LANG
tode
, and you’re done!In reply to: Prevent Users From Creating TopicsYou could always use Role Manager and disable “Make new topics” for Members.
In reply to: Only show on front-pagePut
<?php if ( bb_is_front() ) { ?>
before the widget and<?php } ?>
after it.In reply to: How to use bbpress pagination in a plugin?Assuming that
$mydata_curpage
is the current page number (starting from 1):bb_paginate_links( array( 'total' => ceil( $mydata_count / $mydata_pagelimit ), 'current' => $mydata_curpage ) )
You’ll have to do the actual pagination yourself, but that’s as simple as an
array_slice
.In reply to: How to preselect a value in the forum dropdownlist?<?php bb_forum_dropdown( array( 'selected' => 2 ) ); ?>
In reply to: bbpress 1.0.2 point and click problemsWhat exactly are you trying to click on?
In reply to: new topics not showingAkismet and Bozo Users come to mind:
If a post is marked as spam by Akismet or a user is marked as a bozo, they will not show up to normal users. The +1 more means that the 1 post was either marked as spam or deleted without the topic being deleted.
The “(Array voices)” is probably a plugin error. What plugins are you running on your forum?
I don’t understand your logic. BuddyPress is a plugin for WPMU, which is a multi-blog version of WordPress. bbPress is a forum program. Not a plugin for anything, just a standalone forum.
Merging BuddyPress and bbPress would be like merging a car company and a grocery store. You can drive a car to a grocery store and carry groceries in it, but integration is as close as you can get to merging them.
Besides, no other major forum software (phpBB, IPB, VBulletin, SMF, etc) have a social network built in or are a plugin for a blogging program.
In reply to: How do you paginate posts?https://trac.bbpress.org/browser/trunk/bb-templates/kakumei/front-page.php?rev=2362#L36
To save you some time, the code is
<?php topic_page_links(); ?>
In reply to: Ping @Nightgunner5 – re: trailing slasheshttps://bbpress.org/forums/topic/plugins-in-my-plugins-not-installing#post-61075 <- there it is.
https://trac.bbpress.org/attachment/ticket/1019/no-backslash.patch <- and there’s the fix.
(The file is bb-includes/class.bb-dir-map.php)
In reply to: bbpress themeI have a copy of it lying around – I’m not sure if I modified it at some point, though. http://www.mediafire.com/?jmyy5ym5em3
In reply to: List of working plugins with 1.0.2Add these to the list:
bbPM
bbPress Moderation Suite
Role Manager
Automated Forum Moderation
http://bit.ly/4LJlfj (a graph of the daily downloads) – 18 downloads this week, 6 of which were from today.
It would benifit the bbPress community as a whole if Matt or MDA (or anyone else with access to the repository) could put up some kind of notice on the Private Messaging plugin page that tells about the security risks.
https://bbpress.org/plugins/topic/automated-forum-moderation/ – You just described this plugin almost exactly.
In reply to: bbpress-1.0.2 & wordpress-2.8.6 integrationFor me, it’s
bb-login.php?action=logout
. I think your theme might have the link hardcoded. If so, change the link to<?php bb_logout_link(); ?>
.In reply to: rss.php patchI’ve submitted this as a ticket on trac: https://trac.bbpress.org/ticket/1209
Because it’s in functions.bb-pluggable.php, you can copy the function into a plugin file and edit it from there. No work needed when upgrading, and it can be turned on and off.
In reply to: plugins in my-plugins not installingWhat version of bbPress are you using? 1.0 and up have a fix for this.
In reply to: (Re-)Activating Plugins under XAMPP- 0.9.0.6 is deprecated.
- This was fixed in 1.0-RC1 (assuming you’re on Windows)
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
should actually remove those errors. Something must be wrong with your server configuration.Just turn E_DEPRECATED error logging off and you’ll be fine. XAMPP/Windows isn’t the problem, it’s PHP5.3’s new E_DEPRECATED “feature”.