Plugin: BuddyPress Groupblog

Join this plugin group to follow comments, support topics and reviews.

Just installed and getting the following error … (8 posts)

Started 1 year, 8 months ago by: gus-f2c

  • Profile picture of gus-f2c gus-f2c said 1 year, 8 months ago:

    Fatal error: Call to undefined function get_site_allowed_themes() in /home/******/public_html/wp-content/plugins/bp-groupblog/bp-groupblog-admin.php on line 304

    Any help of how I can resolve this issue would be gratefully received

    Many thanks

  • Profile picture of corinna micori corinna micori said 1 year, 8 months ago:

    i have the same error!!!! anyone please can help!???
    have the feeling it has to do with the subdomain tatata.tatata.com??????

  • Profile picture of CarloAntonio Negulesco CarloAntonio Negulesco said 1 year, 7 months ago:

    I’m getting the same thing, have either of you found a solution?

  • Profile picture of r-a-y r-a-y said 1 year, 7 months ago:

    BP Groupblog requires multisite to be enabled:

    http://codex.wordpress.org/Create_A_Network

    Did you enable it?

  • Profile picture of CarloAntonio Negulesco CarloAntonio Negulesco said 1 year, 7 months ago:

    I did now, and I can setup group blogs in wordpress proper, without buddypress enabled, but still can’t setup groups or get the forums going in buddypress.

  • Profile picture of danielpk danielpk said 1 year, 7 months ago:

    i have an issue with this plugin…i can’t create group blogs…i get this error:
    “Catchable fatal error: Object of class WP_Error could not be converted to string in /home/********/public_html/wp-includes/ms-blogs.php on line 60″

    Any ideas?

    Thanx!

  • Profile picture of Mariusooms Mariusooms said 1 year, 6 months ago:

    This was an issue with subdomain installs. I believe this is resolved in 1.5. Please check and report your findings.

  • Profile picture of Mark Schafer Mark said 1 year, 5 months ago:

    I considered creating a new topic given the release of groupblog 1.5 but given the nature of the error it’s posted here. Please share your thoughts. WP-3.0.1, BP-1.2.6, Groupblog-1.5:

    I get the following when attempting to save in Groupblog Settings. No change can be saved:
    Catchable fatal error: Object of class WP_Error could not be converted to string in /public_html/wp-includes/wp-db.php on line 643

    Line 643 in wp-db.php is noted below:

    /**
    	 * Gets blog prefix.
    	 *
    	 * @uses is_multisite()
    	 * <a href='http://buddypress.org/community/members/since/&#039; rel='nofollow'><a href='http://buddypress.org/community/members/since/&#039; rel='nofollow'><a href='http://buddypress.org/community/members/since/&#039; rel='nofollow'><a href='http://buddypress.org/community/members/since/&#039; rel='nofollow'>@since</a></a></a></a> 3.0.0
    	 * <a href='http://buddypress.org/community/members/param/&#039; rel='nofollow'><a href='http://buddypress.org/community/members/param/&#039; rel='nofollow'><a href='http://buddypress.org/community/members/param/&#039; rel='nofollow'><a href='http://buddypress.org/community/members/param/&#039; rel='nofollow'>@param</a></a></a></a> int $blog_id Optional.
    	 * @return string Blog prefix.
    	 */
    	function get_blog_prefix( $blog_id = null ) {
    		if ( is_multisite() ) {
    			if ( null === $blog_id )
    				$blog_id = $this->blogid;
    			if ( defined( 'MULTISITE' ) && ( 0 == $blog_id || 1 == $blog_id ) )
    				return $this->base_prefix;
    			else
    				return $this->base_prefix . $blog_id . '_';    // LINE 643
    		} else {
    			return $this->base_prefix;
    		}
    	}