i have the same error!!!! anyone please can help!???
have the feeling it has to do with the subdomain tatata.tatata.com??????
I’m getting the same thing, have either of you found a solution?
BP Groupblog requires multisite to be enabled:
http://codex.wordpress.org/Create_A_Network
Did you enable it?
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.
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!
This was an issue with subdomain installs. I believe this is resolved in 1.5. Please check and report your findings.
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()
* @since 3.0.0
* @param 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;
}
}`