Search Results for '+.+default+.+'
-
Search Results
-
Topic: Database error
When trying to post I get this message:
bbPress database error: [Unknown column ‘post_title’ in ‘field list’]
UPDATE bb_posts SET post_title=’Testy mctest test’ WHERE post_id=’11
I am using the wordpress database (different prefix for bb stuff) but there doesn’t seem to be a post_title column, here’s the output from mysql:
mysql> describe bb_posts;
+
+
+
+
+
+
+| Field | Type | Null | Key | Default | Extra |
+
+
+
+
+
+
+| post_id | bigint(20) | NO | PRI | NULL | auto_increment |
| forum_id | int(10) | NO | | 1 | |
| topic_id | bigint(20) | NO | MUL | 1 | |
| poster_id | int(10) | NO | MUL | 0 | |
| post_text | text | NO | MUL | | |
| post_time | datetime | NO | MUL | 0000-00-00 00:00:00 | |
| poster_ip | varchar(15) | NO | | | |
| post_status | tinyint(1) | NO | | 0 | |
| post_position | bigint(20) | NO | | 0 | |
+
+
+
+
+
+
+9 rows in set (0.00 sec)
I have looked around, but can’t seem to find anything about it on here. The forum/topic actually shows up when I go back to the page, but this is rather inconvenient. Thanks to anyone willing to help out with this.
WP version = 2.51
MySQL version = Server version: 5.0.45-Debian_1ubuntu3.3-log Debian etch distribution
bbPress version = latest (just got it 3 or 4 days ago) so 0.9.0.2
Thanks,
-Scott.
Topic: Modify Topic Title Tags
I looked on here, but wasn’t quite able to find how to do this. If I missed it I apologize. How would I modify topic titles to not have the name of the forum in the title? What would I change? What file would I modify? Such as:
This is the default title structure right now on my theme:
<title>Topic Title >> Forum Name</title>
I would like to change the title structure to this:
<title>Topic Title</title>
Any ideas? Thanks.
Best regards,
Matt
i just solved my login cookie issue after one night debugging…
i found these things:
– by default, wpmu generate auth_cookie as “wordpress”, but bbpress generate as “wordpress_xxxxx(hash)”
– wpmu not using “database secret” for cookie hashing, but it use the SECRET_SALT constant defined in the wp-config.php, bbpress using “database secret”. so the cookie result will never be the same.
you need to update your bb-config.php file to meet these situations.
assumed you’ve successfully install wpmu + bbpress, then edit your bb-config.php and add these line:
define(‘BB_SECRET_KEY’, ‘yourreallysecretkey’);
define(‘BB_SECRET_SALT’, ‘yourreallysecretsalt’);
$bb->authcookie = ‘wordpress’;
$bb->cookiedomain = ‘.yourdomain.com’;
$bb->cookiepath = ‘/’;
$bb->sitecookiepath = ”;
and try to login… voila.. you can switch to bbpress and wpmu without re-login…

good luck,
—
rh