bbPress

Simple, fast, elegant

bbPress Plugin Browser »

bbSync (0.94)

Download

Version: 0.94

Other Versions

Last Updated: 2008-1-6

Requires bbPress Version: 0.8.3 or higher

Compatible up to: latest

Author Homepage »

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(18)

Your Rating

Author: fel64


  1. lagoonix

    Member

    Great plug-in.
    Everything works.
    New posts are added and comments.

    Only issue is users getting stuck on wp-comments-post.php
    No errors just a blank screen. Post IS added.

    I get 'http://www.myurl.com/wp-comments-post.php#comment-8'

    No other plugins active.
    Please advice. Thank You

    Posted: 1 year ago #
  2. To add to the line 20 problem -

    I'm running into the same thing - wordpress 2.6, bbpress 1.0.

    I don't have a lot of time to sort through it, but with a little testing tonight, here's what I found out - hopefully someone can take this and run with it:

    The problem occurs initially in the function bb_is_installed(), but that function is not the problem - somehow, $bbdb is getting unset somewhere. If you remove the call to bb_is_installed(), as ck suggested, you just get the error the next time it calls for $bbdb (I think line 1796, Im not sure what function).

    $bbdb is set properly right up to the point where bb_is_installed() is called.

    Calling bb-load.php directly from bbsynch.php works fine, as long as the call does not come from within a function. As soon as you try to call it from inside a function, $bbdb stops working again. It sounds like a scope problem to me, but apparently my knowledge of scope in php is lacking, because I just can't figure out what is going wrong.

    Looking forward to a solution, this plugin sounds great!

    Posted: 1 year ago #
  3. Kenjin

    Member

    Lagoonix > I have exactly the same little bug, did you find a solution ?

    Posted: 1 year ago #
  4. Hi! I was wondering if anyone could help me with this plugin. Its working ok, but when I make a new post I am getting this error:

    bbPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1]
    SELECT user_login,ID FROM wp_users as t1 LEFT JOIN wp_usermeta as t2 on t1.ID=t2.user_id WHERE user_status=0 AND (meta_key='bb_capabilities' AND NOT (meta_value LIKE '%inactive%' OR meta_value LIKE '%blocked%')) ORDER BY user_registered DESC LIMIT

    I say its working ok because the posts are still sent to the forum, but I'd like to get rid of this error if possible. Any suggestions?

    Thanks!

    Posted: 1 year ago #
  5. Hi.

    I´m having the same problem as renzo51, adriandb and chiri...

    In other words, the most recent comment made (either in wp och bbpress) is shown on all comments on the wordpress side of the install.

    If I have 5 comments previously, and activate bbsync, comment #5 is shown as comment 1-5. When I disable bbpress comments 1-5 is shown as they should.
    If I disable _all_ plugins, and reactivate bbpress, comment ¤5 is shown as comment 1-5.

    This is really troublesome, case this plugin is exactly what I need :)

    Any thoughts or ideas?

    Posted: 1 year ago #
  6. Has fel64 given up on this project completely?

    Posted: 1 year ago #
  7. bbSync doesn't work with v .9 or 1.0 alpha.

    Posted: 1 year ago #
  8. are we going to get a update version of this?

    Posted: 1 year ago #
  9. Will an update of this plug in work with version 1.0? Or will 1.0 have this functionality built into it?

    I'm also using podpress as a plug-in for my podcast, how would that affect the entry when it appears in the forums?

    Posted: 1 year ago #
  10. Ah well i guess i should have read all the comments before installing the plugin, i have lost all ability to login and the only change i made today was to install this plugin!

    http://bbpress.org/forums/topic/lost-ability-to-login-in-bbpress?replies=2#post-23151

    Posted: 1 year ago #
  11. Hi there, just setting this up, would alo like to know what to enter in the "which forum should the topics go in" field as this isn't too clear, do you enter physical URL, forum name or something else? Thanks

    Posted: 1 year ago #
  12. For what it's worth... this is exactly something I would like to use. From reading the comments here, I am going to hold off as it seems to be a can of worms. But, if there are any developers or moderators listening... bbSync would be absolutely wonderful to have updated/integrated.

    Cheers.

    Posted: 1 year ago #
  13. crashingtothesea

    Member

    I'm very excited for this plug-in to be included in bbPress! It is such a smart thing, and with the integration of users, the optional integration of posts only seems natural. Keep up the good work -- I can't wait to see what bbPress becomes!

    Posted: 1 year ago #
  14. Hey,

    Is there any way to just remove the comment functionality from the php code? I dont want the comment/replies to sync - just the content, as I would like different sets of comments/replies on both my WP site and the forum... I have had a look at the php code, but I am a complete beginner to php and I am not 100% sure how to change it.

    Thanks!!
    Stace

    Posted: 12 months ago #
  15. I'm getting this:

    Fatal error: Cannot redeclare update_user_status() (previously declared in /home/content/d/a/d/****/html/wp-admin/includes/mu.php:409) in /home/content/d/a/d/****/html/bbpress/bb-includes/functions.php on line 1249

    a take it, maybe this does not work with wpmu 2.7.1?

    Posted: 11 months ago #
  16. excellent plugin! question: how do i make it so that user cannot post a new topic in the forum i'm syncing with? comments are fine, just topics...

    Posted: 11 months ago #
  17. Atkins

    Member

    I would be very interested in the plugin but also would like disable comments being displayed between wordpress and bbpress and just have the blog posts being posted to the forum.

    Posted: 11 months ago #
  18. bonds

    Member

    Figured out a solution for the problem with it displaying the same comment over and over. Replace this function in the bbsync.php file:

    function replace_comments( $comments, $post_ID ) {
    	if( felwptobb( $post_ID ) && isset( $comments ) ) {
    		foreach( $comments as $comment )
    			if( $comment->comment_type !== '')
    				$trackbacks[] = clone $comment;
    
    		unset( $comments );
    
    		foreach( felgetbbreplies() as $reply ) {
    			$com->comment_ID = $reply->post_id;
    			$com->comment_post_ID = $post_ID;
    			$com->user_id = $reply->poster_id;
    			$com->comment_content = $reply->post_text;
    			$com->comment_date = $reply->post_time;
    			$com->comment_author_IP = $reply->poster_ip;
    			$user = get_userdata( $com->user_id );
    			$com->comment_author =  $user->display_name;
    			$com->comment_author_email =  $user->user_email;
    			$com->comment_author_url =  $data->user_url;
    			$comments[] = clone $com;
    		}
    		$comments = array_merge( (array) $comments, (array) $trackbacks );
    	}
    	return $comments;
    }
    Posted: 11 months ago #
  19. any news for Fatal error: Call to a member function suppress_errors() on a non-object in (..)/bb-includes/functions.php on line 20

    ?

    Posted: 10 months ago #
  20. Hi,

    I just installed version 0.94 of the plugin bbSync and now I have this error when I try to publish a new post:
    Fatal error: out of dynamic memory in yy_create_buffer() in /homepages/45/d206037517/htdocs/forums/bb-settings.php on line 92

    This bb-settings line contains the following:
    require( BB_PATH . BB_INC . 'pluggable.php');

    Please not that my php.ini file already allocates plenty of memory, here it is:
    post_max_size = 150M
    upload_max_filesize = 64M
    max_execution_time = 300 ; Maximum execution time of each script, in seconds
    max_input_time = 120 ; Maximum amount of time each script may spend parsing request data
    memory_limit = 64M

    I also installed this plugin on a local copy of my production website and it works great there.

    Please can anyone help me with this issue?

    Posted: 10 months ago #

RSS feed for this topic

Add a Comment »

You must log in to post.

Code is Poetry.