Search Results for 'bbpress'
-
AuthorSearch Results
-
March 12, 2010 at 3:05 pm #67960
In reply to: New WP-BP Install, /Forums Refuses To Work
sms1962
ParticipantIMHO WPMU, BuddyPress and bbPress works well if:
– You set a wildcard domain (in my test site subdirectory based instalation doesn’t work)
– BbPress table is in the same database as BuddyPress, WPMU and i. ..
– BbPress has the same prefix as WPMU. For example, if you use a standard prefix to the WordPress table (for example wp_) then for bbPress give wp_bb_
March 12, 2010 at 2:04 pm #67948In reply to: Buddypress forum (bbpress) profile custom fields
enzyad
Participantup
March 12, 2010 at 1:21 pm #67944rich! @ etiviti
Participantfigured it out (see post above) – some reason in wp-admin mode
$bb_roleswas getting wipedMarch 12, 2010 at 7:25 am #67915Paul Wong-Gibbs
KeymasterAgain: look in your logsand find out why the add_action is failing. That’s what you need to fix.
March 12, 2010 at 5:00 am #67908stwc
ParticipantLooking forward to your bbpress plugin ports! I tried doing it myself and soon ran up against my nearly complete lack of PHP skills….
March 12, 2010 at 3:20 am #67899rich! @ etiviti
Participantsorry for the triple post but found the root problem.
Fatal error: Cannot redeclare checked() (previously declared in D:xampplitehtdocsbuddypresswp-contentpluginsbuddypressbp-forumsbbpressbb-adminincludesfunctions.bb-admin.php:1261) in D:xampplitehtdocsbuddypresswp-adminincludestemplate.php on line 387
and the fix…
function adminfix_adminfix_bbpress_init() {
global $bbdb, $bb_roles, $wp_roles;
if ( is_object( $bbdb ) && is_object( $bb_roles ) ) {
return;
}
if ( is_object( $bbdb ) ) {
$bb_roles =& $wp_roles;
bb_init_roles( $bb_roles );
return;
}
do_action( 'bbpress_init');
}
function bp_forums_extras_setup_globals() {
adminfix_adminfix_bbpress_init();
do_action('bp_forums_extras_init');
}
if (WP_ADMIN) {
add_action( 'admin_init', 'bp_forums_extras_setup_globals', 500 );
} else {
add_action( 'bp_init', 'bp_forums_extras_setup_globals', 5 );
}March 12, 2010 at 2:09 am #67894rich! @ etiviti
Participantok, so i narrowed the issue down to just /wp-admin/ only
function bp_forums_extras_setup_globals() {
do_action( 'bbpress_init');
}
add_action( 'bp_init', 'bp_forums_extras_setup_globals');if i comment out do_action then /wp-admin/ loads up – otherwise WSOD. The action completes (calls
function bp_forums_load_bbpress()) but I guess something within WP conflicts?March 12, 2010 at 1:58 am #67883In reply to: get rid of create a group button
rspowers
Memberi actually didnt try. i only tried to create the topic after i installed the plugin. i was using the internal version of bbpress in BP. I can do a test to see if it happens again, i can back up my stuff, install and see what happens. would you like me to?
March 11, 2010 at 11:06 pm #67876rich! @ etiviti
Participantyep!, same database.
March 11, 2010 at 11:03 pm #67875Boone Gorges
Keymasteretiviti – Does your external installation of bbPress store data in the same database as your buddypress install? If not I think you will need a new $wpdb class in order to specify the right database creds.
March 11, 2010 at 11:02 pm #67873rich! @ etiviti
Participantthat was my first thought but
bb_get_optionand other functions are not defined if i’m trying to update some bb_option metadata from the bp dashboard side.@DJPaul – probably my problem – i’ve tried so many hooks, so i’ll try and start over tonight.
March 11, 2010 at 11:00 pm #67872Paul Wong-Gibbs
Keymasterdo_action( 'bbpress_init' );This triggers BuddyPress to load the bbPress code. So as you’ve done, you need to call this early on. If it’s giving you the WSOD, you need to find out why and fix that.
March 11, 2010 at 10:55 pm #67867In reply to: New WP-BP Install, /Forums Refuses To Work
Paul Wong-Gibbs
KeymasterHm, this is a fairly obviously question, so just to get it out of the way — have you gone into your /wp-admin/ -> “Forums Setup” under the BuddyPress menu, and selected the “Set up a new bbPress installation” button?
March 11, 2010 at 10:54 pm #67866r-a-y
KeymasterYou shouldn’t need to require anything since BP already loads it (if you have forums enabled).
You should be able to just grab the meta using one of the bbPress meta calls.
eg.
bb_get_postmeta(bp_get_the_topic_post_id(), $cachekey)Make sure when grabbing the meta that you do a check to see if you’re on a forum post.
March 11, 2010 at 10:50 pm #67865In reply to: new version of BuddyPress Rate Forum Posts
r-a-y
KeymasterI recently came across a problem similar to @etiviti (rich!)’s.
In rate.php on line 3, you believe that bb-config.php will always reside in the root directory, but if you’re using an external bbPress integration, this won’t be the case.
The easy way to fix this is to grab the bb config location using:
get_site_option('bb-config-location');This would be for MU, not sure where the bb-config-location will be in standard WP.
[EDIT]
etiviti (rich!) already provided the solution!
Declare the global $bp and use $bp->site_options[‘bb-config-location’];
global $bp;
require_once($bp->site_options['bb-config-location']);March 11, 2010 at 3:12 pm #67768In reply to: phpbb3 conversion to buddypress forums
rspowers
Memberif you find an easy way to do this, please let me and other users know. if you could, writing a plug in for it would be awesome. many people have phpbb3 forums and would love to integrate them easily into bbpress
March 11, 2010 at 1:52 pm #67760In reply to: phpbb3 conversion to buddypress forums
kriskl
ParticipantAh, many problems!

But developer who is dealing with the conversion, slowly manages it,
one problem at the moment,
is for example with links.
in phpbb links are normal like that:
 http://tv.opentuition.com/categories/13/OpenTuition-ACCA-P2-Channel
in converted bbpress:
<!– m –>http://tv.opentuition.com/categories/13 … P2-Channel<!– m –>
is there a quick way to clean all this extra junk code?
March 11, 2010 at 11:07 am #67737In reply to: phpbb3 conversion to buddypress forums
Paul Wong-Gibbs
KeymasterThe Forums are bbPress, so you’re going about it in the correct way. Obviously you’ll need to create BP Groups for each existing forum and then update the forum IDs in the Groups database table. What sort of problems are you having?
March 10, 2010 at 6:29 pm #67605peterverkooijen
ParticipantI meant maybe someone could take code from Buddypress and turn it into a BBpress plugin, instead of trying to force Buddypress to fit within BBpress. Half the posts on here are about BBpress these days. Buddypress is not supposed to be a forum script.
March 10, 2010 at 5:55 pm #67599hydroweb
ParticipantNo luck finding social network plugin for bbpress! But thanks anyway!
March 10, 2010 at 5:48 pm #67597peterverkooijen
ParticipantThis sounds more like you need a very basic social networking plugin for BBpress. Why not approach it from that end?
I’d hate to see Buddypress reduced to a BBpress appendage.
March 10, 2010 at 2:21 pm #67557In reply to: BP1.2+ Plugin Wishlists
rich! @ etiviti
Participantsince i use bbPress as an external install (on a subdomain and within bp) – want to carry over some of the basic plugins. So, I’m working on bb-signatures, bb-code, bb-smiles into the BP group forums section (maybe ajaxed quote – not sure yet)
also, i have company directory app (standard address, contact, members, deals, reviews, tagging) that runs on a hybrid wordpress based site – i’m thinking about converting this into a bp component (based on groups?)
March 10, 2010 at 12:28 pm #67542dainismichel
ParticipantAlso, I’m more than willing to write up a procedure or create a video instruction guide to help others do this, as long as I’m shown.
If I have to pay to find out how to do this, then I don’t think my reciprocating with technical documentation seems fair.
March 10, 2010 at 12:27 pm #67541dainismichel
ParticipantI’ve done step 1 and 3, and maybe step 4, however, I am stuck on what code to put into the file that displays the forums to make the main themes show up (step 2 most likely, and that forum post is a billion pages long and has lots of out of date stuff).
My code attempts are here:
https://buddypress.org/forums/topic/how-to-access-to-bbpress-admin-from-buddypress
and here:
https://buddypress.org/forums/topic/whats-the-code-for-the-way-buddypressorg-displays-its-forums
Basically, my request has come down to: please share the code that can make this work and let me know what files to put it in.
March 10, 2010 at 1:41 am #67500In reply to: External and Group use of bbPress
Anointed
Participant+1 to having forum categories on a per group basis.
I already run a number of vb sites with hundreds of thousands of users and would love to someday bring that platform to wordpress/bp.
The problem is that my forums are huge (millions of posts) and without separation, it would be impossible using group forums.
I’d rather not have to create a separate group just to have a separate forum, as then I would end up with hundreds of groups (one forum I run has about a hundred or so subforums all are very active). That would only diminish the value of using groups imho.
I just don’t see the feasibility of doing it this way.
For instance, how in the world would you convert a site like vbulletin.org forums over to bp groups?
Even with very fancy templating it would still not work properly
(Yes, I know, groups are really just uber powerful forum categories… for a lack of a better way of putting it)
-
AuthorSearch Results