Info
- 12 posts
- 5 voices
- Started 2 years ago by RWB
- Latest reply from bzmillerboy
- This topic is not resolved
Help with installation andintegration
-
- Posted 2 years ago #
I am trying to integrate WPMU 2.71, BuddyPress 1.0, and bbpress bbPress 1.0-rc-1.
WPMU and BuddyPress work fine.
BBPress is a nightmare.
It never finishes the installation although it says:
Your installation completed with some minor errors. See the error log below for more specific information.
Key master could not be created!
Forum could not be created!Referrer is OK, beginning installation…
>>> Setting up custom user table constantsStep 1 - Creating database tables
>>> Database is already installed!!!Step 2 - WordPress integration (optional)
>>> WordPress address (URL): http://lilienbrown.net/
>>> Blog address (URL): http://lilienbrown.net/
>>> WordPress cookie keys set.
>>> WordPress "auth" cookie salt set from input.
>>> WordPress "secure auth" cookie salt set from input.
>>> WordPress "logged in" cookie salt set from input.
>>> User database table prefix: wp_
>>> WordPress MU primary blog ID: 1Step 3 - Site settings
>>> Site name: Lilien Brown Forums
>>> Site address (URL): http://lilienbrown.net/forums/
>>> From email address: richard@lilinbrown.net
>>> Key master could not be created!
>>>>>> That login is already taken!
>>>>>> Existing key master entered!
>>>>>> Re-setting admin email address.
>>> Description: Just another bbPress community
>>> Forum could not be created!
>>> Key master email sentThere were some errors encountered during installation!
When I try log in it takes me back to the install page.
Can someone advise how to get out of this loop?
If not how to delete BBpress?
-
- Posted 2 years ago #
have you deleted the bb_* tables before installing?
-
- Posted 2 years ago #
No, but i will delete them.
These are theonesyou wantme to delete:
bb_forums
bb_meta
bb_posts
bb_terms
bb_term_relationships
bb_term_taxonomy
bb_topics -
- Posted 2 years ago #
Correct. Delete those out of there.
I've noticed that the trunk doesn't like existing users also. I'll probably post a ticket in the trac about it this morning.
-
- Posted 2 years ago #
Thanks. How do i remove the existing user information?
I am not sure what the trac means?
-
- Posted 2 years ago #
I dleted the tables. I deleted the user files for bbpress.
This is the error message I get now.
The database failed to install. You may need to replace bbPress with a fresh copy and start again.
SQL ERROR!
>>> Database: lilienbr_wpmu (localhost)
>>>>>> CREATE TABLE IF NOT EXISTSbb_forums(
forum_idint(10) NOT NULL auto_increment,
forum_namevarchar(150) NOT NULL default '',
forum_slugvarchar(255) NOT NULL default '',
forum_desctext NOT NULL,
forum_parentint(10) NOT NULL default 0,
forum_orderint(10) NOT NULL default 0,
topicsbigint(20) NOT NULL default 0,
postsbigint(20) NOT NULL default 0,
PRIMARY KEY (forum_id),
KEYforum_slug(forum_slug)
) DEFAULT CHARACTER SET 'utf8' COLLATE 'uft8_general_ci';
>>>>>> Unknown collation: 'uft8_general_ci'
SQL ERROR!
>>> Database: lilienbr_wpmu (localhost)
>>>>>> CREATE TABLE IF NOT EXISTSbb_meta(
meta_idbigint(20) NOT NULL auto_increment,
object_typevarchar(16) NOT NULL default 'bb_option',
object_idbigint(20) NOT NULL default 0,
meta_keyvarchar(255) default NULL,
meta_valuelongtext,
PRIMARY KEY (meta_id),
KEYobject_type__meta_key(object_type,meta_key),
KEYobject_type__object_id__meta_key(object_type,object_id,meta_key)
) DEFAULT CHARACTER SET 'utf8' COLLATE 'uft8_general_ci';
>>>>>> Unknown collation: 'uft8_general_ci'
SQL ERROR!
>>> Database: lilienbr_wpmu (localhost)
>>>>>> CREATE TABLE IF NOT EXISTSbb_posts(
post_idbigint(20) NOT NULL auto_increment,
forum_idint(10) NOT NULL default 1,
topic_idbigint(20) NOT NULL default 1,
poster_idint(10) NOT NULL default 0,
post_texttext NOT NULL,
post_timedatetime NOT NULL default '0000-00-00 00:00:00',
poster_ipvarchar(15) NOT NULL default '',
post_statustinyint(1) NOT NULL default 0,
post_positionbigint(20) NOT NULL default 0,
PRIMARY KEY (post_id),
KEYtopic_time(topic_id,post_time),
KEYposter_time(poster_id,post_time),
KEYpost_time(post_time),
FULLTEXT KEYpost_text(post_text)
) TYPE = MYISAM DEFAULT CHARACTER SET 'utf8' COLLATE 'uft8_general_ci';
>>>>>> Unknown collation: 'uft8_general_ci'
SQL ERROR!
>>> Database: lilienbr_wpmu (localhost)
>>>>>> CREATE TABLE IF NOT EXISTSbb_terms(
term_idbigint(20) NOT NULL auto_increment,
namevarchar(55) NOT NULL default '',
slugvarchar(200) NOT NULL default '',
term_groupbigint(10) NOT NULL default 0,
PRIMARY KEY (term_id),
UNIQUE KEYslug(slug),
KEYname(name)
) DEFAULT CHARACTER SET 'utf8' COLLATE 'uft8_general_ci';
>>>>>> Unknown collation: 'uft8_general_ci'
SQL ERROR!
>>> Database: lilienbr_wpmu (localhost)
>>>>>> CREATE TABLE IF NOT EXISTSbb_term_relationships(
object_idbigint(20) NOT NULL default 0,
term_taxonomy_idbigint(20) NOT NULL default 0,
user_idbigint(20) NOT NULL default 0,
term_orderint(11) NOT NULL default 0,
PRIMARY KEY (object_id,term_taxonomy_id),
KEYterm_taxonomy_id(term_taxonomy_id)
) DEFAULT CHARACTER SET 'utf8' COLLATE 'uft8_general_ci';
>>>>>> Unknown collation: 'uft8_general_ci'
SQL ERROR!
>>> Database: lilienbr_wpmu (localhost)
>>>>>> CREATE TABLE IF NOT EXISTSbb_term_taxonomy(
term_taxonomy_idbigint(20) NOT NULL auto_increment,
term_idbigint(20) NOT NULL default 0,
taxonomyvarchar(32) NOT NULL default '',
descriptionlongtext NOT NULL,
parentbigint(20) NOT NULL default 0,
countbigint(20) NOT NULL default 0,
PRIMARY KEY (term_taxonomy_id),
UNIQUE KEYterm_id_taxonomy(term_id,taxonomy),
KEYtaxonomy(taxonomy)
) DEFAULT CHARACTER SET 'utf8' COLLATE 'uft8_general_ci';
>>>>>> Unknown collation: 'uft8_general_ci'
SQL ERROR!
>>> Database: lilienbr_wpmu (localhost)
>>>>>> CREATE TABLE IF NOT EXISTSbb_topics(
topic_idbigint(20) NOT NULL auto_increment,
topic_titlevarchar(100) NOT NULL default '',
topic_slugvarchar(255) NOT NULL default '',
topic_posterbigint(20) NOT NULL default 0,
topic_poster_namevarchar(40) NOT NULL default 'Anonymous',
topic_last_posterbigint(20) NOT NULL default 0,
topic_last_poster_namevarchar(40) NOT NULL default '',
topic_start_timedatetime NOT NULL default '0000-00-00 00:00:00',
topic_timedatetime NOT NULL default '0000-00-00 00:00:00',
forum_idint(10) NOT NULL default 1,
topic_statustinyint(1) NOT NULL default 0,
topic_opentinyint(1) NOT NULL default 1,
topic_last_post_idbigint(20) NOT NULL default 1,
topic_stickytinyint(1) NOT NULL default 0,
topic_postsbigint(20) NOT NULL default 0,
tag_countbigint(20) NOT NULL default 0,
PRIMARY KEY (topic_id),
KEYtopic_slug(topic_slug),
KEYforum_time(forum_id,topic_time),
KEYuser_start_time(topic_poster,topic_start_time),
KEYstickies(topic_status,topic_sticky,topic_time)
) DEFAULT CHARACTER SET 'utf8' COLLATE 'uft8_general_ci';
>>>>>> Unknown collation: 'uft8_general_ci'
Database installation failed!!!Is bbpress compatible with wordpress or am I wasting my time?
-
- Posted 2 years ago #
Sounds like your database does not support
uft8_general_cicollation? Maybe you need to setdefine('BBDB_COLLATE', '');in your bb-config.php to something the server supports? Maybe you can look at the collation for the existing WPMU tables, and just use that in bb-config.php?Never seen this before, just guessing at a solution.
-
- Posted 2 years ago #
I checked with my webhost.
They do support utf8_general_ci on databases.
-
- Posted 2 years ago #
Does *your* database, the one you're using, support it though? Apparently, it does not, according to the error messages. Unless of course the error message is erroneous.
You can do this from a MySQL command line or phpMyAdmin once you connect to your database:
SHOW COLLATION LIKE 'utf8%';That will show you all collations that begin with utf8.
-
- Posted 2 years ago #
I'm also having this issue. My collation was set to something different so I thought I had found the issue, I changed the collation on the DB using phpMyAdmin>Operations however even after setting the DB to utf8_general_ci I still get the same error.
bbPress 1.0-rc-1
Wordpress MU 2.7.1
BuddyPress 1.0Can we leave the collation blank in the wp_config.php and while installing bbPress? What is this for?
-
- Posted 2 years ago #
I tried deleting uft8_general_ci from my wp_config.php file and left it blank during the install however now I'm getting the following error.
Referrer is OK, beginning installation…
>>> Setting up custom user table constantsStep 1 - Creating database tables
>>> Modifying database: bria5519_buddypresstest (localhost)
>>>>>> Table: bb_forums
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_meta
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_posts
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_terms
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_term_relationships
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_term_taxonomy
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_topics
>>>>>>>>> Creating table
>>>>>>>>>>>> DoneStep 2 - WordPress integration (optional)
>>> WordPress address (URL): http://brianandlindsaymiller.com/buddypresstest/
>>> Blog address (URL): http://brianandlindsaymiller.com/buddypresstest/
>>> WordPress cookie keys set.
>>> WordPress "auth" cookie salt set from input.
>>> WordPress "secure auth" cookie salt set from input.
>>> WordPress "logged in" cookie salt set from input.
>>> User database table prefix: wp_
>>> WordPress MU primary blog ID: 1Step 3 - Site settings
>>> Site name: BuddyPressTestForums
>>> Site address (URL): http://brianandlindsaymiller.com/buddypresstest/forums/
>>> From email address: bzmiller@fuse.net
>>> Key master created
>>>>>> Username: keymasteradmin
>>>>>> Email address: bzmiller@fuse.net
>>>>>> Password:
>>> Description: Just another bbPress community
>>> Forum could not be created!
>>> Making plugin directory at /home/bria5519/public_html/buddypresstest/forums/my-plugins/.
>>> Making theme directory at /home/bria5519/public_html/buddypresstest/forums/my-templates/.
>>> Key master email sentThere were some errors encountered during installation!
-
You must log in to post.